@acronis-platform/ui-react 0.22.3 → 0.24.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.
- package/dist/components/ui/resizable/resizable.js +52 -0
- package/dist/components/ui/resizable/resizable.js.map +1 -0
- package/dist/components/ui/search-global/search-global.js +60 -0
- package/dist/components/ui/search-global/search-global.js.map +1 -0
- package/dist/index.js +66 -60
- package/dist/index.js.map +1 -1
- package/dist/node_modules/.pnpm/react-resizable-panels@4.11.2_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/react-resizable-panels/dist/react-resizable-panels.js +2093 -0
- package/dist/node_modules/.pnpm/react-resizable-panels@4.11.2_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/react-resizable-panels/dist/react-resizable-panels.js.map +1 -0
- package/dist/react.js +66 -60
- package/dist/react.js.map +1 -1
- package/dist/src/components/ui/resizable/index.d.ts +1 -0
- package/dist/src/components/ui/resizable/resizable.d.ts +9 -0
- package/dist/src/components/ui/search-global/index.d.ts +1 -0
- package/dist/src/components/ui/search-global/search-global.d.ts +7 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/ui-react.css +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import { Separator as o, Panel as n, Group as l } from "../../../node_modules/.pnpm/react-resizable-panels@4.11.2_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/react-resizable-panels/dist/react-resizable-panels.js";
|
|
3
|
+
import { cn as e } from "../../../lib/utils.js";
|
|
4
|
+
function b({ className: r, ...i }) {
|
|
5
|
+
return /* @__PURE__ */ a(
|
|
6
|
+
l,
|
|
7
|
+
{
|
|
8
|
+
className: e("flex h-full w-full aria-[orientation=vertical]:flex-col", r),
|
|
9
|
+
...i
|
|
10
|
+
}
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
function z(r) {
|
|
14
|
+
return /* @__PURE__ */ a(n, { ...r });
|
|
15
|
+
}
|
|
16
|
+
function h({ withHandle: r, className: i, ...t }) {
|
|
17
|
+
return /* @__PURE__ */ a(
|
|
18
|
+
o,
|
|
19
|
+
{
|
|
20
|
+
className: e(
|
|
21
|
+
"relative flex w-[var(--ui-resizable-bar-width)] items-center justify-center",
|
|
22
|
+
"cursor-[var(--ui-resizable-cursor)] outline-none",
|
|
23
|
+
// Centered 1px divider line (idle/hover → hover token, drag → active token).
|
|
24
|
+
"after:absolute after:inset-y-0 after:left-1/2 after:-translate-x-1/2",
|
|
25
|
+
"after:w-[var(--ui-resizable-border-width)] after:bg-[var(--ui-resizable-border-color-hover)]",
|
|
26
|
+
"active:after:bg-[var(--ui-resizable-border-color-active)]",
|
|
27
|
+
"focus-visible:ring-[3px] focus-visible:ring-[var(--ui-focus-primary)]",
|
|
28
|
+
// orientation=horizontal = panels stacked → horizontal divider line.
|
|
29
|
+
"aria-[orientation=horizontal]:h-[var(--ui-resizable-bar-width)] aria-[orientation=horizontal]:w-full aria-[orientation=horizontal]:cursor-[ns-resize]",
|
|
30
|
+
"aria-[orientation=horizontal]:after:inset-x-0 aria-[orientation=horizontal]:after:inset-y-auto aria-[orientation=horizontal]:after:left-auto aria-[orientation=horizontal]:after:top-1/2 aria-[orientation=horizontal]:after:h-[var(--ui-resizable-border-width)] aria-[orientation=horizontal]:after:w-full aria-[orientation=horizontal]:after:-translate-y-1/2 aria-[orientation=horizontal]:after:translate-x-0",
|
|
31
|
+
"[&[aria-orientation=horizontal]>div]:rotate-90",
|
|
32
|
+
i
|
|
33
|
+
),
|
|
34
|
+
...t,
|
|
35
|
+
children: r && /* @__PURE__ */ a(
|
|
36
|
+
"div",
|
|
37
|
+
{
|
|
38
|
+
className: e(
|
|
39
|
+
"z-10 h-[var(--ui-resizable-bar-height)] w-[var(--ui-resizable-bar-width)]",
|
|
40
|
+
"rounded-[var(--ui-resizable-bar-border-radius)] bg-[var(--ui-resizable-bar-color)]"
|
|
41
|
+
)
|
|
42
|
+
}
|
|
43
|
+
)
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
export {
|
|
48
|
+
h as ResizableHandle,
|
|
49
|
+
z as ResizablePanel,
|
|
50
|
+
b as ResizablePanelGroup
|
|
51
|
+
};
|
|
52
|
+
//# sourceMappingURL=resizable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resizable.js","sources":["../../../../src/components/ui/resizable/resizable.tsx"],"sourcesContent":["import * as ResizablePrimitive from 'react-resizable-panels';\n\nimport { cn } from '@/lib/utils';\n\n// Resizable panels: a thin wrapper over `react-resizable-panels` (v4: `Group` /\n// `Panel` / `Separator`) themed with the next-gen `--ui-resizable-*` token tier,\n// following the shadcn composition (`ResizablePanelGroup` / `ResizablePanel` /\n// `ResizableHandle`). Base UI has no resizable primitive, so this is the one\n// component that wraps a third-party panel library instead.\n//\n// The handle is the 7px-wide draggable `Separator`. It paints a centered 1px\n// divider line (`--ui-resizable-border-width`/`-style`) — `--ui-resizable-border-color-hover`\n// at rest, `--ui-resizable-border-color-active` while dragging (`:active`) — and,\n// when `withHandle` is set, an always-visible grab-bar pill\n// (`--ui-resizable-bar-*`: 7×32, 4px radius) centered over the line. Keyboard\n// focus paints a 3px `--ui-focus-primary` ring; the resting cursor is\n// `--ui-resizable-cursor` (`ew-resize`). The acronis brand draws hover/active/idle\n// in the same blue and deep-sky in the same gray, but each interaction state is\n// wired to its own token so a future brand can diverge.\n//\n// `orientation=\"vertical\"` (panels stacked) flips the layout: the Group goes\n// `flex-col`, the Separator becomes a horizontal line (`aria-orientation=horizontal`),\n// the cursor becomes `ns-resize`, and the grip pill rotates 90°.\n\nfunction ResizablePanelGroup({ className, ...props }: ResizablePrimitive.GroupProps) {\n return (\n <ResizablePrimitive.Group\n className={cn('flex h-full w-full aria-[orientation=vertical]:flex-col', className)}\n {...props}\n />\n );\n}\n\nfunction ResizablePanel(props: ResizablePrimitive.PanelProps) {\n return <ResizablePrimitive.Panel {...props} />;\n}\n\nexport interface ResizableHandleProps extends ResizablePrimitive.SeparatorProps {\n /** Render the grab-bar pill centered on the handle. */\n withHandle?: boolean;\n}\n\nfunction ResizableHandle({ withHandle, className, ...props }: ResizableHandleProps) {\n return (\n <ResizablePrimitive.Separator\n className={cn(\n 'relative flex w-[var(--ui-resizable-bar-width)] items-center justify-center',\n 'cursor-[var(--ui-resizable-cursor)] outline-none',\n // Centered 1px divider line (idle/hover → hover token, drag → active token).\n 'after:absolute after:inset-y-0 after:left-1/2 after:-translate-x-1/2',\n 'after:w-[var(--ui-resizable-border-width)] after:bg-[var(--ui-resizable-border-color-hover)]',\n 'active:after:bg-[var(--ui-resizable-border-color-active)]',\n 'focus-visible:ring-[3px] focus-visible:ring-[var(--ui-focus-primary)]',\n // orientation=horizontal = panels stacked → horizontal divider line.\n 'aria-[orientation=horizontal]:h-[var(--ui-resizable-bar-width)] aria-[orientation=horizontal]:w-full aria-[orientation=horizontal]:cursor-[ns-resize]',\n 'aria-[orientation=horizontal]:after:inset-x-0 aria-[orientation=horizontal]:after:inset-y-auto aria-[orientation=horizontal]:after:left-auto aria-[orientation=horizontal]:after:top-1/2 aria-[orientation=horizontal]:after:h-[var(--ui-resizable-border-width)] aria-[orientation=horizontal]:after:w-full aria-[orientation=horizontal]:after:-translate-y-1/2 aria-[orientation=horizontal]:after:translate-x-0',\n '[&[aria-orientation=horizontal]>div]:rotate-90',\n className\n )}\n {...props}\n >\n {withHandle && (\n <div\n className={cn(\n 'z-10 h-[var(--ui-resizable-bar-height)] w-[var(--ui-resizable-bar-width)]',\n 'rounded-[var(--ui-resizable-bar-border-radius)] bg-[var(--ui-resizable-bar-color)]'\n )}\n />\n )}\n </ResizablePrimitive.Separator>\n );\n}\n\nexport { ResizablePanelGroup, ResizablePanel, ResizableHandle };\n"],"names":["ResizablePanelGroup","className","props","jsx","ResizablePrimitive.Group","cn","ResizablePanel","ResizablePrimitive.Panel","ResizableHandle","withHandle","ResizablePrimitive.Separator"],"mappings":";;;AAwBA,SAASA,EAAoB,EAAE,WAAAC,GAAW,GAAGC,KAAwC;AACnF,SACE,gBAAAC;AAAA,IAACC;AAAAA,IAAA;AAAA,MACC,WAAWC,EAAG,2DAA2DJ,CAAS;AAAA,MACjF,GAAGC;AAAA,IAAA;AAAA,EAAA;AAGV;AAEA,SAASI,EAAeJ,GAAsC;AAC5D,SAAO,gBAAAC,EAACI,GAAA,EAA0B,GAAGL,EAAA,CAAO;AAC9C;AAOA,SAASM,EAAgB,EAAE,YAAAC,GAAY,WAAAR,GAAW,GAAGC,KAA+B;AAClF,SACE,gBAAAC;AAAA,IAACO;AAAAA,IAAA;AAAA,MACC,WAAWL;AAAA,QACT;AAAA,QACA;AAAA;AAAA,QAEA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA;AAAA,QAEA;AAAA,QACA;AAAA,QACA;AAAA,QACAJ;AAAA,MAAA;AAAA,MAED,GAAGC;AAAA,MAEH,UAAAO,KACC,gBAAAN;AAAA,QAAC;AAAA,QAAA;AAAA,UACC,WAAWE;AAAA,YACT;AAAA,YACA;AAAA,UAAA;AAAA,QACF;AAAA,MAAA;AAAA,IACF;AAAA,EAAA;AAIR;"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { jsxs as b, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import * as t from "react";
|
|
3
|
+
import { MagnifierIcon as n } from "@acronis-platform/icons-react/stroke-mono";
|
|
4
|
+
import { cn as h } from "../../../lib/utils.js";
|
|
5
|
+
const d = t.forwardRef(
|
|
6
|
+
({
|
|
7
|
+
className: o,
|
|
8
|
+
type: e = "search",
|
|
9
|
+
placeholder: l = "Search anything",
|
|
10
|
+
shortcut: a = "⌘K",
|
|
11
|
+
"aria-label": i = "Search",
|
|
12
|
+
...c
|
|
13
|
+
}, s) => /* @__PURE__ */ b(
|
|
14
|
+
"div",
|
|
15
|
+
{
|
|
16
|
+
className: h(
|
|
17
|
+
"inline-flex h-[var(--ui-search-global-box-height)] w-[var(--ui-search-global-box-width)] min-w-[var(--ui-search-global-box-width-min)] max-w-[var(--ui-search-global-box-width-max)] items-center gap-[var(--ui-search-global-box-gap)]",
|
|
18
|
+
"rounded-[var(--ui-search-global-box-border-radius)] border-[length:var(--ui-search-global-box-border-width)] border-solid border-transparent px-[var(--ui-search-global-box-padding-x)]",
|
|
19
|
+
// Gradient border via padding-box (box fill) + border-box (the `--sg-border` gradient).
|
|
20
|
+
"[--sg-border:var(--ui-search-global-border-color-idle)] hover:[--sg-border:var(--ui-search-global-border-color-hover)] active:[--sg-border:var(--ui-search-global-border-color-active)]",
|
|
21
|
+
"[background:linear-gradient(var(--ui-search-global-box-color),var(--ui-search-global-box-color))_padding-box,var(--sg-border)_border-box]",
|
|
22
|
+
"transition-[background] focus-within:ring-[3px] focus-within:ring-[var(--ui-focus-primary)]",
|
|
23
|
+
o
|
|
24
|
+
),
|
|
25
|
+
children: [
|
|
26
|
+
/* @__PURE__ */ r(
|
|
27
|
+
n,
|
|
28
|
+
{
|
|
29
|
+
size: 16,
|
|
30
|
+
className: "shrink-0 text-[var(--ui-search-global-icon-color)]"
|
|
31
|
+
}
|
|
32
|
+
),
|
|
33
|
+
/* @__PURE__ */ r(
|
|
34
|
+
"input",
|
|
35
|
+
{
|
|
36
|
+
ref: s,
|
|
37
|
+
type: e,
|
|
38
|
+
placeholder: l,
|
|
39
|
+
"aria-label": i,
|
|
40
|
+
className: "ui-search-global-placeholoder-text-style h-full min-w-0 flex-1 border-0 bg-transparent p-0 text-foreground outline-none placeholder:text-[var(--ui-search-global-placeholoder-color)] [&::-webkit-search-cancel-button]:appearance-none",
|
|
41
|
+
...c
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
a != null && /* @__PURE__ */ r(
|
|
45
|
+
"span",
|
|
46
|
+
{
|
|
47
|
+
"aria-hidden": !0,
|
|
48
|
+
className: "ui-search-global-shortcut-text-style shrink-0 whitespace-nowrap text-[var(--ui-search-global-shortcut-color)]",
|
|
49
|
+
children: a
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
);
|
|
56
|
+
d.displayName = "SearchGlobal";
|
|
57
|
+
export {
|
|
58
|
+
d as SearchGlobal
|
|
59
|
+
};
|
|
60
|
+
//# sourceMappingURL=search-global.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-global.js","sources":["../../../../src/components/ui/search-global/search-global.tsx"],"sourcesContent":["import * as React from 'react';\nimport { MagnifierIcon } from '@acronis-platform/icons-react/stroke-mono';\n\nimport { cn } from '@/lib/utils';\n\n// A global (\"search anything\") field: a 48px pill with a gradient border (the\n// dedicated `--ui-search-global-*` token tier), a leading magnifier, a borderless\n// native input, and a trailing keyboard-shortcut hint (⌘K by default).\n//\n// The border is a brand gradient, not a flat color, so it can't go through\n// `border-color`. Instead a private `--sg-border` custom property holds the\n// active gradient and the box paints it with the standard padding-box/border-box\n// double-background trick (box fill in padding-box, gradient in border-box over a\n// transparent border). State swaps only the gradient: idle\n// (`--ui-search-global-border-color-idle`) / hover / active (`:active`, the\n// darkest). Focus reuses the idle gradient plus a 3px `--ui-focus-primary` ring\n// via `focus-within`, mirroring the Figma focused state. The magnifier +\n// placeholder take the AI-purple `--ui-search-global-icon-color` /\n// `-placeholoder-color` (the token tier keeps Figma's \"placeholoder\" spelling);\n// the shortcut is `--ui-search-global-shortcut-color`.\n\nexport interface SearchGlobalProps extends React.ComponentPropsWithoutRef<'input'> {\n /** Keyboard-shortcut hint shown at the trailing edge (decorative). Pass `null` to hide. */\n shortcut?: React.ReactNode;\n}\n\nconst SearchGlobal = React.forwardRef<HTMLInputElement, SearchGlobalProps>(\n (\n {\n className,\n type = 'search',\n placeholder = 'Search anything',\n shortcut = '⌘K',\n 'aria-label': ariaLabel = 'Search',\n ...props\n },\n ref\n ) => (\n <div\n className={cn(\n 'inline-flex h-[var(--ui-search-global-box-height)] w-[var(--ui-search-global-box-width)] min-w-[var(--ui-search-global-box-width-min)] max-w-[var(--ui-search-global-box-width-max)] items-center gap-[var(--ui-search-global-box-gap)]',\n 'rounded-[var(--ui-search-global-box-border-radius)] border-[length:var(--ui-search-global-box-border-width)] border-solid border-transparent px-[var(--ui-search-global-box-padding-x)]',\n // Gradient border via padding-box (box fill) + border-box (the `--sg-border` gradient).\n '[--sg-border:var(--ui-search-global-border-color-idle)] hover:[--sg-border:var(--ui-search-global-border-color-hover)] active:[--sg-border:var(--ui-search-global-border-color-active)]',\n '[background:linear-gradient(var(--ui-search-global-box-color),var(--ui-search-global-box-color))_padding-box,var(--sg-border)_border-box]',\n 'transition-[background] focus-within:ring-[3px] focus-within:ring-[var(--ui-focus-primary)]',\n className\n )}\n >\n <MagnifierIcon\n size={16}\n className=\"shrink-0 text-[var(--ui-search-global-icon-color)]\"\n />\n <input\n ref={ref}\n type={type}\n placeholder={placeholder}\n aria-label={ariaLabel}\n className=\"ui-search-global-placeholoder-text-style h-full min-w-0 flex-1 border-0 bg-transparent p-0 text-foreground outline-none placeholder:text-[var(--ui-search-global-placeholoder-color)] [&::-webkit-search-cancel-button]:appearance-none\"\n {...props}\n />\n {shortcut != null && (\n <span\n aria-hidden\n className=\"ui-search-global-shortcut-text-style shrink-0 whitespace-nowrap text-[var(--ui-search-global-shortcut-color)]\"\n >\n {shortcut}\n </span>\n )}\n </div>\n )\n);\nSearchGlobal.displayName = 'SearchGlobal';\n\nexport { SearchGlobal };\n"],"names":["SearchGlobal","React","className","type","placeholder","shortcut","ariaLabel","props","ref","jsxs","cn","jsx","MagnifierIcon"],"mappings":";;;;AA0BA,MAAMA,IAAeC,EAAM;AAAA,EACzB,CACE;AAAA,IACE,WAAAC;AAAA,IACA,MAAAC,IAAO;AAAA,IACP,aAAAC,IAAc;AAAA,IACd,UAAAC,IAAW;AAAA,IACX,cAAcC,IAAY;AAAA,IAC1B,GAAGC;AAAA,EAAA,GAELC,MAEA,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAWC;AAAA,QACT;AAAA,QACA;AAAA;AAAA,QAEA;AAAA,QACA;AAAA,QACA;AAAA,QACAR;AAAA,MAAA;AAAA,MAGF,UAAA;AAAA,QAAA,gBAAAS;AAAA,UAACC;AAAA,UAAA;AAAA,YACC,MAAM;AAAA,YACN,WAAU;AAAA,UAAA;AAAA,QAAA;AAAA,QAEZ,gBAAAD;AAAA,UAAC;AAAA,UAAA;AAAA,YACC,KAAAH;AAAA,YACA,MAAAL;AAAA,YACA,aAAAC;AAAA,YACA,cAAYE;AAAA,YACZ,WAAU;AAAA,YACT,GAAGC;AAAA,UAAA;AAAA,QAAA;AAAA,QAELF,KAAY,QACX,gBAAAM;AAAA,UAAC;AAAA,UAAA;AAAA,YACC,eAAW;AAAA,YACX,WAAU;AAAA,YAET,UAAAN;AAAA,UAAA;AAAA,QAAA;AAAA,MACH;AAAA,IAAA;AAAA,EAAA;AAIR;AACAL,EAAa,cAAc;"}
|
package/dist/index.js
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
import { cn as a } from "./lib/utils.js";
|
|
2
2
|
import { Avatar as t, AvatarFallback as i, AvatarGroup as n, AvatarImage as d, avatarVariants as S } from "./components/ui/avatar/avatar.js";
|
|
3
|
-
import { Breadcrumb as m, BreadcrumbEllipsis as c, BreadcrumbItem as u, BreadcrumbLink as p, BreadcrumbList as
|
|
4
|
-
import { Button as
|
|
5
|
-
import { ButtonDropdown as
|
|
3
|
+
import { Breadcrumb as m, BreadcrumbEllipsis as c, BreadcrumbItem as u, BreadcrumbLink as p, BreadcrumbList as l, BreadcrumbPage as y, BreadcrumbSeparator as x } from "./components/ui/breadcrumb/breadcrumb.js";
|
|
4
|
+
import { Button as f, buttonVariants as g } from "./components/ui/button/button.js";
|
|
5
|
+
import { ButtonDropdown as P, buttonDropdownVariants as M } from "./components/ui/button-dropdown/button-dropdown.js";
|
|
6
6
|
import { Checkbox as T } from "./components/ui/checkbox/checkbox.js";
|
|
7
7
|
import { Radio as V, RadioGroup as v } from "./components/ui/radio/radio.js";
|
|
8
|
-
import { Input as
|
|
8
|
+
import { Input as A } from "./components/ui/input/input.js";
|
|
9
9
|
import { InputTextArea as h } from "./components/ui/input-text-area/input-text-area.js";
|
|
10
|
-
import { Search as
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
10
|
+
import { Search as k } from "./components/ui/search/search.js";
|
|
11
|
+
import { SearchGlobal as z } from "./components/ui/search-global/search-global.js";
|
|
12
|
+
import { Select as F, SelectContent as H, SelectGroup as D, SelectGroupLabel as j, SelectItem as q, SelectTrigger as J, SelectValue as K } from "./components/ui/select/select.js";
|
|
13
|
+
import { ResizableHandle as O, ResizablePanel as Q, ResizablePanelGroup as U } from "./components/ui/resizable/resizable.js";
|
|
14
|
+
import { SidebarPrimary as X, SidebarPrimaryCollapseTrigger as Y, SidebarPrimaryContent as Z, SidebarPrimaryFooter as _, SidebarPrimaryHeader as $, SidebarPrimaryMenu as rr, SidebarPrimaryMenuItem as er, SidebarPrimaryMenuItemExtras as ar, SidebarPrimarySection as or, sidebarPrimaryMenuItemVariants as tr } from "./components/ui/sidebar-primary/sidebar-primary.js";
|
|
15
|
+
import { SidebarSecondary as nr, SidebarSecondaryCollapseTrigger as dr, SidebarSecondaryCollapsedBreadcrumb as Sr, SidebarSecondaryContent as br, SidebarSecondaryFooter as mr, SidebarSecondaryHeader as cr, SidebarSecondaryMenu as ur, SidebarSecondaryMenuItem as pr, SidebarSecondaryMenuItemExtras as lr, SidebarSecondaryMenuSub as yr, SidebarSecondaryMenuSubContent as xr, SidebarSecondaryMenuSubItem as sr, SidebarSecondaryMenuSubTrigger as fr, SidebarSecondarySection as gr, SidebarSecondarySectionLabel as Ir, sidebarSecondaryMenuItemVariants as Pr } from "./components/ui/sidebar-secondary/sidebar-secondary.js";
|
|
16
|
+
import { ButtonIcon as Br, buttonIconVariants as Tr } from "./components/ui/button-icon/button-icon.js";
|
|
17
|
+
import { Switch as Vr } from "./components/ui/switch/switch.js";
|
|
18
|
+
import { Tooltip as Gr, TooltipContent as Ar, TooltipProvider as Rr, TooltipTrigger as hr } from "./components/ui/tooltip/tooltip.js";
|
|
19
|
+
import { Tag as kr, tagVariants as wr } from "./components/ui/tag/tag.js";
|
|
18
20
|
export {
|
|
19
21
|
t as Avatar,
|
|
20
22
|
i as AvatarFallback,
|
|
@@ -24,62 +26,66 @@ export {
|
|
|
24
26
|
c as BreadcrumbEllipsis,
|
|
25
27
|
u as BreadcrumbItem,
|
|
26
28
|
p as BreadcrumbLink,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
l as BreadcrumbList,
|
|
30
|
+
y as BreadcrumbPage,
|
|
29
31
|
x as BreadcrumbSeparator,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
f as Button,
|
|
33
|
+
P as ButtonDropdown,
|
|
34
|
+
Br as ButtonIcon,
|
|
33
35
|
T as Checkbox,
|
|
34
|
-
|
|
36
|
+
A as Input,
|
|
35
37
|
h as InputTextArea,
|
|
36
38
|
V as Radio,
|
|
37
39
|
v as RadioGroup,
|
|
38
|
-
|
|
40
|
+
O as ResizableHandle,
|
|
41
|
+
Q as ResizablePanel,
|
|
42
|
+
U as ResizablePanelGroup,
|
|
43
|
+
k as Search,
|
|
44
|
+
z as SearchGlobal,
|
|
39
45
|
F as Select,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
46
|
+
H as SelectContent,
|
|
47
|
+
D as SelectGroup,
|
|
48
|
+
j as SelectGroupLabel,
|
|
49
|
+
q as SelectItem,
|
|
50
|
+
J as SelectTrigger,
|
|
51
|
+
K as SelectValue,
|
|
52
|
+
X as SidebarPrimary,
|
|
53
|
+
Y as SidebarPrimaryCollapseTrigger,
|
|
54
|
+
Z as SidebarPrimaryContent,
|
|
55
|
+
_ as SidebarPrimaryFooter,
|
|
56
|
+
$ as SidebarPrimaryHeader,
|
|
57
|
+
rr as SidebarPrimaryMenu,
|
|
58
|
+
er as SidebarPrimaryMenuItem,
|
|
59
|
+
ar as SidebarPrimaryMenuItemExtras,
|
|
60
|
+
or as SidebarPrimarySection,
|
|
61
|
+
nr as SidebarSecondary,
|
|
62
|
+
dr as SidebarSecondaryCollapseTrigger,
|
|
63
|
+
Sr as SidebarSecondaryCollapsedBreadcrumb,
|
|
64
|
+
br as SidebarSecondaryContent,
|
|
65
|
+
mr as SidebarSecondaryFooter,
|
|
66
|
+
cr as SidebarSecondaryHeader,
|
|
67
|
+
ur as SidebarSecondaryMenu,
|
|
68
|
+
pr as SidebarSecondaryMenuItem,
|
|
69
|
+
lr as SidebarSecondaryMenuItemExtras,
|
|
70
|
+
yr as SidebarSecondaryMenuSub,
|
|
71
|
+
xr as SidebarSecondaryMenuSubContent,
|
|
72
|
+
sr as SidebarSecondaryMenuSubItem,
|
|
73
|
+
fr as SidebarSecondaryMenuSubTrigger,
|
|
74
|
+
gr as SidebarSecondarySection,
|
|
75
|
+
Ir as SidebarSecondarySectionLabel,
|
|
76
|
+
Vr as Switch,
|
|
77
|
+
kr as Tag,
|
|
78
|
+
Gr as Tooltip,
|
|
79
|
+
Ar as TooltipContent,
|
|
80
|
+
Rr as TooltipProvider,
|
|
81
|
+
hr as TooltipTrigger,
|
|
76
82
|
S as avatarVariants,
|
|
77
|
-
|
|
78
|
-
|
|
83
|
+
M as buttonDropdownVariants,
|
|
84
|
+
Tr as buttonIconVariants,
|
|
79
85
|
g as buttonVariants,
|
|
80
86
|
a as cn,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
87
|
+
tr as sidebarPrimaryMenuItemVariants,
|
|
88
|
+
Pr as sidebarSecondaryMenuItemVariants,
|
|
89
|
+
wr as tagVariants
|
|
84
90
|
};
|
|
85
91
|
//# sourceMappingURL=index.js.map
|
package/dist/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":";;;;;;;;;;;;;;;;;;;"}
|