@refraction-ui/react 0.3.7 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +376 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +366 -11
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11566,8 +11566,283 @@ var Pagination = React42.forwardRef(
|
|
|
11566
11566
|
}
|
|
11567
11567
|
);
|
|
11568
11568
|
Pagination.displayName = "Pagination";
|
|
11569
|
-
|
|
11570
|
-
|
|
11569
|
+
|
|
11570
|
+
// ../callout/dist/index.js
|
|
11571
|
+
function createCallout(props = {}) {
|
|
11572
|
+
const ariaProps = {};
|
|
11573
|
+
if (props.role) {
|
|
11574
|
+
ariaProps.role = props.role;
|
|
11575
|
+
} else {
|
|
11576
|
+
ariaProps.role = "region";
|
|
11577
|
+
}
|
|
11578
|
+
return {
|
|
11579
|
+
ariaProps,
|
|
11580
|
+
dataAttributes: { "data-slot": "callout" }
|
|
11581
|
+
};
|
|
11582
|
+
}
|
|
11583
|
+
function createCalloutIcon() {
|
|
11584
|
+
return { dataAttributes: { "data-slot": "callout-icon" } };
|
|
11585
|
+
}
|
|
11586
|
+
function createCalloutContent() {
|
|
11587
|
+
return { dataAttributes: { "data-slot": "callout-content" } };
|
|
11588
|
+
}
|
|
11589
|
+
function createCalloutTitle() {
|
|
11590
|
+
return { dataAttributes: { "data-slot": "callout-title" } };
|
|
11591
|
+
}
|
|
11592
|
+
function createCalloutDescription() {
|
|
11593
|
+
return { dataAttributes: { "data-slot": "callout-description" } };
|
|
11594
|
+
}
|
|
11595
|
+
var calloutVariants = cva({
|
|
11596
|
+
base: "relative w-full rounded-lg border p-4 text-sm flex gap-3",
|
|
11597
|
+
variants: {
|
|
11598
|
+
variant: {
|
|
11599
|
+
default: "bg-muted/50 border-border text-foreground",
|
|
11600
|
+
destructive: "bg-destructive/10 border-destructive/20 text-destructive",
|
|
11601
|
+
success: "bg-green-500/10 border-green-500/20 text-green-700 dark:text-green-400",
|
|
11602
|
+
warning: "bg-yellow-500/10 border-yellow-500/20 text-yellow-700 dark:text-yellow-400",
|
|
11603
|
+
info: "bg-blue-500/10 border-blue-500/20 text-blue-700 dark:text-blue-400"
|
|
11604
|
+
}
|
|
11605
|
+
},
|
|
11606
|
+
defaultVariants: {
|
|
11607
|
+
variant: "default"
|
|
11608
|
+
}
|
|
11609
|
+
});
|
|
11610
|
+
var calloutTitleVariants = cva({
|
|
11611
|
+
base: "font-semibold leading-none tracking-tight mb-1"
|
|
11612
|
+
});
|
|
11613
|
+
var calloutDescriptionVariants = cva({
|
|
11614
|
+
base: "text-sm opacity-90 leading-relaxed"
|
|
11615
|
+
});
|
|
11616
|
+
var Callout = React42.forwardRef(
|
|
11617
|
+
({ className, variant, ...props }, ref) => {
|
|
11618
|
+
const api = createCallout({ role: variant === "destructive" ? "alert" : "region" });
|
|
11619
|
+
return /* @__PURE__ */ jsx(
|
|
11620
|
+
"div",
|
|
11621
|
+
{
|
|
11622
|
+
ref,
|
|
11623
|
+
className: cn(calloutVariants({ variant }), className),
|
|
11624
|
+
...api.ariaProps,
|
|
11625
|
+
...api.dataAttributes,
|
|
11626
|
+
...props
|
|
11627
|
+
}
|
|
11628
|
+
);
|
|
11629
|
+
}
|
|
11630
|
+
);
|
|
11631
|
+
Callout.displayName = "Callout";
|
|
11632
|
+
var CalloutIcon = React42.forwardRef(
|
|
11633
|
+
({ className, ...props }, ref) => {
|
|
11634
|
+
const api = createCalloutIcon();
|
|
11635
|
+
return /* @__PURE__ */ jsx(
|
|
11636
|
+
"div",
|
|
11637
|
+
{
|
|
11638
|
+
ref,
|
|
11639
|
+
className: cn("flex-shrink-0 mt-0.5", className),
|
|
11640
|
+
...api.dataAttributes,
|
|
11641
|
+
...props
|
|
11642
|
+
}
|
|
11643
|
+
);
|
|
11644
|
+
}
|
|
11645
|
+
);
|
|
11646
|
+
CalloutIcon.displayName = "CalloutIcon";
|
|
11647
|
+
var CalloutContent = React42.forwardRef(
|
|
11648
|
+
({ className, ...props }, ref) => {
|
|
11649
|
+
const api = createCalloutContent();
|
|
11650
|
+
return /* @__PURE__ */ jsx(
|
|
11651
|
+
"div",
|
|
11652
|
+
{
|
|
11653
|
+
ref,
|
|
11654
|
+
className: cn("flex-1", className),
|
|
11655
|
+
...api.dataAttributes,
|
|
11656
|
+
...props
|
|
11657
|
+
}
|
|
11658
|
+
);
|
|
11659
|
+
}
|
|
11660
|
+
);
|
|
11661
|
+
CalloutContent.displayName = "CalloutContent";
|
|
11662
|
+
var CalloutTitle = React42.forwardRef(
|
|
11663
|
+
({ className, ...props }, ref) => {
|
|
11664
|
+
const api = createCalloutTitle();
|
|
11665
|
+
return /* @__PURE__ */ jsx(
|
|
11666
|
+
"h5",
|
|
11667
|
+
{
|
|
11668
|
+
ref,
|
|
11669
|
+
className: cn(calloutTitleVariants(), className),
|
|
11670
|
+
...api.dataAttributes,
|
|
11671
|
+
...props
|
|
11672
|
+
}
|
|
11673
|
+
);
|
|
11674
|
+
}
|
|
11675
|
+
);
|
|
11676
|
+
CalloutTitle.displayName = "CalloutTitle";
|
|
11677
|
+
var CalloutDescription = React42.forwardRef(
|
|
11678
|
+
({ className, ...props }, ref) => {
|
|
11679
|
+
const api = createCalloutDescription();
|
|
11680
|
+
return /* @__PURE__ */ jsx(
|
|
11681
|
+
"div",
|
|
11682
|
+
{
|
|
11683
|
+
ref,
|
|
11684
|
+
className: cn(calloutDescriptionVariants(), className),
|
|
11685
|
+
...api.dataAttributes,
|
|
11686
|
+
...props
|
|
11687
|
+
}
|
|
11688
|
+
);
|
|
11689
|
+
}
|
|
11690
|
+
);
|
|
11691
|
+
CalloutDescription.displayName = "CalloutDescription";
|
|
11692
|
+
|
|
11693
|
+
// ../steps/dist/index.js
|
|
11694
|
+
function createSteps() {
|
|
11695
|
+
return { dataAttributes: { "data-slot": "steps" } };
|
|
11696
|
+
}
|
|
11697
|
+
function createStep() {
|
|
11698
|
+
return { dataAttributes: { "data-slot": "step" } };
|
|
11699
|
+
}
|
|
11700
|
+
function createStepIndicator() {
|
|
11701
|
+
return { dataAttributes: { "data-slot": "step-indicator" } };
|
|
11702
|
+
}
|
|
11703
|
+
function createStepContent() {
|
|
11704
|
+
return { dataAttributes: { "data-slot": "step-content" } };
|
|
11705
|
+
}
|
|
11706
|
+
function createStepTitle() {
|
|
11707
|
+
return { dataAttributes: { "data-slot": "step-title" } };
|
|
11708
|
+
}
|
|
11709
|
+
function createStepDescription() {
|
|
11710
|
+
return { dataAttributes: { "data-slot": "step-description" } };
|
|
11711
|
+
}
|
|
11712
|
+
var stepsVariants = cva({
|
|
11713
|
+
base: "flex flex-col gap-0",
|
|
11714
|
+
variants: {
|
|
11715
|
+
orientation: {
|
|
11716
|
+
vertical: "flex-col",
|
|
11717
|
+
horizontal: "flex-row"
|
|
11718
|
+
}
|
|
11719
|
+
},
|
|
11720
|
+
defaultVariants: {
|
|
11721
|
+
orientation: "vertical"
|
|
11722
|
+
}
|
|
11723
|
+
});
|
|
11724
|
+
var stepVariants = cva({
|
|
11725
|
+
base: "flex gap-3",
|
|
11726
|
+
variants: {
|
|
11727
|
+
status: {
|
|
11728
|
+
completed: "text-foreground",
|
|
11729
|
+
active: "text-foreground",
|
|
11730
|
+
upcoming: "text-muted-foreground"
|
|
11731
|
+
}
|
|
11732
|
+
},
|
|
11733
|
+
defaultVariants: {
|
|
11734
|
+
status: "upcoming"
|
|
11735
|
+
}
|
|
11736
|
+
});
|
|
11737
|
+
var stepIndicatorVariants = cva({
|
|
11738
|
+
base: "flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full border-2 text-sm font-semibold",
|
|
11739
|
+
variants: {
|
|
11740
|
+
status: {
|
|
11741
|
+
completed: "border-primary bg-primary text-primary-foreground",
|
|
11742
|
+
active: "border-primary bg-background text-primary",
|
|
11743
|
+
upcoming: "border-muted bg-background text-muted-foreground"
|
|
11744
|
+
}
|
|
11745
|
+
},
|
|
11746
|
+
defaultVariants: {
|
|
11747
|
+
status: "upcoming"
|
|
11748
|
+
}
|
|
11749
|
+
});
|
|
11750
|
+
var stepTitleVariants = cva({
|
|
11751
|
+
base: "font-semibold leading-none tracking-tight"
|
|
11752
|
+
});
|
|
11753
|
+
var stepDescriptionVariants = cva({
|
|
11754
|
+
base: "text-sm text-muted-foreground mt-1"
|
|
11755
|
+
});
|
|
11756
|
+
var Steps = React42.forwardRef(
|
|
11757
|
+
({ className, orientation, ...props }, ref) => {
|
|
11758
|
+
const api = createSteps();
|
|
11759
|
+
return /* @__PURE__ */ jsx(
|
|
11760
|
+
"div",
|
|
11761
|
+
{
|
|
11762
|
+
ref,
|
|
11763
|
+
className: cn(stepsVariants({ orientation }), className),
|
|
11764
|
+
...api.dataAttributes,
|
|
11765
|
+
...props
|
|
11766
|
+
}
|
|
11767
|
+
);
|
|
11768
|
+
}
|
|
11769
|
+
);
|
|
11770
|
+
Steps.displayName = "Steps";
|
|
11771
|
+
var Step = React42.forwardRef(
|
|
11772
|
+
({ className, status, ...props }, ref) => {
|
|
11773
|
+
const api = createStep();
|
|
11774
|
+
return /* @__PURE__ */ jsx(
|
|
11775
|
+
"div",
|
|
11776
|
+
{
|
|
11777
|
+
ref,
|
|
11778
|
+
className: cn(stepVariants({ status }), className),
|
|
11779
|
+
...api.dataAttributes,
|
|
11780
|
+
...props
|
|
11781
|
+
}
|
|
11782
|
+
);
|
|
11783
|
+
}
|
|
11784
|
+
);
|
|
11785
|
+
Step.displayName = "Step";
|
|
11786
|
+
var StepIndicator = React42.forwardRef(
|
|
11787
|
+
({ className, status, ...props }, ref) => {
|
|
11788
|
+
const api = createStepIndicator();
|
|
11789
|
+
return /* @__PURE__ */ jsx(
|
|
11790
|
+
"div",
|
|
11791
|
+
{
|
|
11792
|
+
ref,
|
|
11793
|
+
className: cn(stepIndicatorVariants({ status }), className),
|
|
11794
|
+
...api.dataAttributes,
|
|
11795
|
+
...props
|
|
11796
|
+
}
|
|
11797
|
+
);
|
|
11798
|
+
}
|
|
11799
|
+
);
|
|
11800
|
+
StepIndicator.displayName = "StepIndicator";
|
|
11801
|
+
var StepContent = React42.forwardRef(
|
|
11802
|
+
({ className, ...props }, ref) => {
|
|
11803
|
+
const api = createStepContent();
|
|
11804
|
+
return /* @__PURE__ */ jsx(
|
|
11805
|
+
"div",
|
|
11806
|
+
{
|
|
11807
|
+
ref,
|
|
11808
|
+
className: cn("flex-1 pb-8", className),
|
|
11809
|
+
...api.dataAttributes,
|
|
11810
|
+
...props
|
|
11811
|
+
}
|
|
11812
|
+
);
|
|
11813
|
+
}
|
|
11814
|
+
);
|
|
11815
|
+
StepContent.displayName = "StepContent";
|
|
11816
|
+
var StepTitle = React42.forwardRef(
|
|
11817
|
+
({ className, ...props }, ref) => {
|
|
11818
|
+
const api = createStepTitle();
|
|
11819
|
+
return /* @__PURE__ */ jsx(
|
|
11820
|
+
"h4",
|
|
11821
|
+
{
|
|
11822
|
+
ref,
|
|
11823
|
+
className: cn(stepTitleVariants(), className),
|
|
11824
|
+
...api.dataAttributes,
|
|
11825
|
+
...props
|
|
11826
|
+
}
|
|
11827
|
+
);
|
|
11828
|
+
}
|
|
11829
|
+
);
|
|
11830
|
+
StepTitle.displayName = "StepTitle";
|
|
11831
|
+
var StepDescription = React42.forwardRef(
|
|
11832
|
+
({ className, ...props }, ref) => {
|
|
11833
|
+
const api = createStepDescription();
|
|
11834
|
+
return /* @__PURE__ */ jsx(
|
|
11835
|
+
"p",
|
|
11836
|
+
{
|
|
11837
|
+
ref,
|
|
11838
|
+
className: cn(stepDescriptionVariants(), className),
|
|
11839
|
+
...api.dataAttributes,
|
|
11840
|
+
...props
|
|
11841
|
+
}
|
|
11842
|
+
);
|
|
11843
|
+
}
|
|
11844
|
+
);
|
|
11845
|
+
StepDescription.displayName = "StepDescription";
|
|
11571
11846
|
var FileTree = () => {
|
|
11572
11847
|
return /* @__PURE__ */ jsx("div", {});
|
|
11573
11848
|
};
|
|
@@ -11575,15 +11850,95 @@ var IconSystem = () => {
|
|
|
11575
11850
|
return /* @__PURE__ */ jsx("div", {});
|
|
11576
11851
|
};
|
|
11577
11852
|
|
|
11578
|
-
// ../
|
|
11579
|
-
|
|
11580
|
-
return
|
|
11581
|
-
}
|
|
11853
|
+
// ../skip-to-content/dist/index.js
|
|
11854
|
+
function createSkipToContent() {
|
|
11855
|
+
return { dataAttributes: { "data-slot": "skip-to-content" } };
|
|
11856
|
+
}
|
|
11857
|
+
var skipToContentVariants = cva({
|
|
11858
|
+
base: "fixed left-4 top-4 z-[100] -translate-y-16 rounded-md border bg-background px-4 py-2 text-sm font-medium shadow-md transition-transform focus:translate-y-0 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
|
|
11859
|
+
});
|
|
11860
|
+
var SkipToContent = React42.forwardRef(
|
|
11861
|
+
({ className, targetId = "main-content", children = "Skip to content", ...props }, ref) => {
|
|
11862
|
+
const api = createSkipToContent();
|
|
11863
|
+
return /* @__PURE__ */ jsx(
|
|
11864
|
+
"a",
|
|
11865
|
+
{
|
|
11866
|
+
ref,
|
|
11867
|
+
href: `#${targetId}`,
|
|
11868
|
+
className: cn(skipToContentVariants(), className),
|
|
11869
|
+
...api.dataAttributes,
|
|
11870
|
+
...props,
|
|
11871
|
+
children
|
|
11872
|
+
}
|
|
11873
|
+
);
|
|
11874
|
+
}
|
|
11875
|
+
);
|
|
11876
|
+
SkipToContent.displayName = "SkipToContent";
|
|
11582
11877
|
|
|
11583
|
-
// ../
|
|
11584
|
-
|
|
11585
|
-
return
|
|
11586
|
-
}
|
|
11878
|
+
// ../code-block/dist/index.js
|
|
11879
|
+
function createCodeBlock() {
|
|
11880
|
+
return { dataAttributes: { "data-slot": "code-block" } };
|
|
11881
|
+
}
|
|
11882
|
+
function createCodeBlockHeader() {
|
|
11883
|
+
return { dataAttributes: { "data-slot": "code-block-header" } };
|
|
11884
|
+
}
|
|
11885
|
+
function createCodeBlockContent() {
|
|
11886
|
+
return { dataAttributes: { "data-slot": "code-block-content" } };
|
|
11887
|
+
}
|
|
11888
|
+
var codeBlockVariants = cva({
|
|
11889
|
+
base: "relative overflow-hidden rounded-lg border bg-zinc-950 text-zinc-50 dark:bg-zinc-900"
|
|
11890
|
+
});
|
|
11891
|
+
var codeBlockHeaderVariants = cva({
|
|
11892
|
+
base: "flex items-center justify-between border-b border-zinc-800 bg-zinc-900/50 px-4 py-2 text-xs text-zinc-400"
|
|
11893
|
+
});
|
|
11894
|
+
var codeBlockContentVariants = cva({
|
|
11895
|
+
base: "overflow-x-auto p-4 text-sm font-mono leading-relaxed"
|
|
11896
|
+
});
|
|
11897
|
+
var CodeBlock = React42.forwardRef(
|
|
11898
|
+
({ className, ...props }, ref) => {
|
|
11899
|
+
const api = createCodeBlock();
|
|
11900
|
+
return /* @__PURE__ */ jsx(
|
|
11901
|
+
"div",
|
|
11902
|
+
{
|
|
11903
|
+
ref,
|
|
11904
|
+
className: cn(codeBlockVariants(), className),
|
|
11905
|
+
...api.dataAttributes,
|
|
11906
|
+
...props
|
|
11907
|
+
}
|
|
11908
|
+
);
|
|
11909
|
+
}
|
|
11910
|
+
);
|
|
11911
|
+
CodeBlock.displayName = "CodeBlock";
|
|
11912
|
+
var CodeBlockHeader = React42.forwardRef(
|
|
11913
|
+
({ className, ...props }, ref) => {
|
|
11914
|
+
const api = createCodeBlockHeader();
|
|
11915
|
+
return /* @__PURE__ */ jsx(
|
|
11916
|
+
"div",
|
|
11917
|
+
{
|
|
11918
|
+
ref,
|
|
11919
|
+
className: cn(codeBlockHeaderVariants(), className),
|
|
11920
|
+
...api.dataAttributes,
|
|
11921
|
+
...props
|
|
11922
|
+
}
|
|
11923
|
+
);
|
|
11924
|
+
}
|
|
11925
|
+
);
|
|
11926
|
+
CodeBlockHeader.displayName = "CodeBlockHeader";
|
|
11927
|
+
var CodeBlockContent = React42.forwardRef(
|
|
11928
|
+
({ className, ...props }, ref) => {
|
|
11929
|
+
const api = createCodeBlockContent();
|
|
11930
|
+
return /* @__PURE__ */ jsx(
|
|
11931
|
+
"pre",
|
|
11932
|
+
{
|
|
11933
|
+
ref,
|
|
11934
|
+
className: cn(codeBlockContentVariants(), className),
|
|
11935
|
+
...api.dataAttributes,
|
|
11936
|
+
...props
|
|
11937
|
+
}
|
|
11938
|
+
);
|
|
11939
|
+
}
|
|
11940
|
+
);
|
|
11941
|
+
CodeBlockContent.displayName = "CodeBlockContent";
|
|
11587
11942
|
|
|
11588
11943
|
// ../link-card/dist/index.js
|
|
11589
11944
|
function createLinkCard(_props = {}) {
|
|
@@ -11692,6 +12047,6 @@ var PaymentButton = React42.forwardRef(
|
|
|
11692
12047
|
);
|
|
11693
12048
|
PaymentButton.displayName = "PaymentButton";
|
|
11694
12049
|
|
|
11695
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AltHintState, AnimatedText, AppShell, AuthGuard, AuthProvider, Avatar, AvatarFallback, AvatarGroup, AvatarImage, Badge, BadgeDisplay, BottomNav, Breadcrumbs, Button, CATEGORY_LABELS, Calendar, CalendarHeader, Callout, Card2 as Card, CardContent, CardDescription, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselTrigger, Checkbox, CodeBlock, CodeEditor, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, ContentProtection, DataTable, DatePicker, DeviceFrame, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EMOJI_CATEGORIES, EMOJI_DATA, EmojiPicker, FeedbackButton, FeedbackDialog, FileTree, FileUpload, Footer, IconSystem, InlineEditor, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InstallPrompt, KeyboardShortcut, LanguageSelector, LinkCard, MarkdownRenderer, MobileNav, MobileNavContent, MobileNavLink, MobileNavTrigger, Navbar, OtpInput, STATUS_COLORS as PRESENCE_STATUS_COLORS, STATUS_LABELS as PRESENCE_STATUS_LABELS, Pagination, Payment, Popover, PopoverClose, PopoverContent, PopoverTrigger, PresenceIndicator, ProgressBar, RadioGroup, RadioItem, ReactionBar, ResizableDivider, ResizableLayout, ResizablePane, SANE_DEFAULTS, STATUS_COLORS2 as STATUS_COLORS, STATUS_LABELS2 as STATUS_LABELS, SearchBar, SearchResultItem, SearchResults, Select, SelectContent, SelectItem, SelectTrigger, ShortcutBadge, ShortcutContext, ShortcutHint, ShortcutProvider, ShortcutRegistry, Sidebar, Skeleton, SkeletonText, SkipToContent, SlideViewer, StatsGrid, StatusIndicator, Steps, Switch, TableOfContents, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeScript, ThemeToggle, ThreadView, Toast, ToastProvider, Toaster, Tooltip, TooltipContent, TooltipTrigger, TypewriterText, VersionSelector, VideoPlayer, altHintState, animatedTextVariants, avatarFallbackVariants, avatarImageVariants, avatarTokens, avatarVariants, badgeGridVariants, badgeItemVariants, badgeVariants, bottomNavTabVariants, bottomNavVariants, breadcrumbItemVariants, breadcrumbSeparatorStyles, breadcrumbsVariants, buttonTokens, buttonVariants, calendarVariants, canAccessAdmin, canAccessReviewer, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardTitleVariants, cardTokens, cardVariants, cellVariants, checkIconPath, checkboxTokens, checkboxVariants, codeEditorTokens, codeEditorVariants, collapsibleContentVariants, commandGroupVariants, commandInputVariants, commandItemVariants, commandVariants, contentProtectionVariants, controlsVariants, dayVariants, deviceFrameVariants, dialogContentVariants, editorVariants, emojiPickerContainerStyles, emojiPickerEmojiButtonStyles, emojiPickerGridStyles, feedbackDialogVariants, fileUploadDropZoneVariants, fileUploadFileItemStyles, fileUploadFileListStyles, footerVariants, formatFileSize, formatRelativeTime, formatShortcut, formatTimestamp, getAssignableRoles, getDefaultPortal, getInitials, globalShortcutRegistry, hasAllRoles, hasAnyRole, hasRole, headerVariants, indeterminateIconPath, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupTokens, inputGroupVariants, inputVariants, installPromptVariants, latestBadgeVariants, markdownRendererTokens, menuContentVariants, menuItemVariants, mobileNavContentVariants, mobileNavLinkVariants, mobileNavTokens, mobileNavTriggerVariants, mobileNavVariants, navLinkVariants, navbarVariants, optionVariants, otpInputContainerVariants, otpInputSlotVariants, otpInputTokens, overlayStyles, overlayVariants, playerVariants, popoverContentVariants, previewVariants, progressBarVariants, proseVariants, radioCircleVariants, radioGroupVariants, radioItemVariants, reactionAddButtonStyles, reactionBarStyles, reactionCountStyles, reactionEmojiStyles, reactionPillVariants, resizableDividerVariants, resizableLayoutTokens, resizableLayoutVariants, resizablePaneVariants, rowVariants, searchBarVariants, searchResultVariants, selectContentVariants, selectItemVariants, selectTokens, selectTriggerVariants, selectorVariants, shortcutBadgeStyles, shortcutKeyStyles, shortcutSeparatorStyles, sidebarItemVariants, sidebarVariants, skeletonVariants, slideTypeBadgeVariants, progressBarVariants2 as slideViewerProgressBarVariants, slideViewerTokens, slideViewerVariants, statCardVariants, statsGridVariants, statusContainerStyles, statusDotVariants, statusLabelStyles, statusPulseVariants, switchThumbVariants, switchTokens, switchVariants, tableVariants, tabsListVariants, tabsTriggerVariants, textareaVariants, threadAuthorStyles, threadAvatarStyles, threadBodyStyles, threadContainerStyles, threadContentStyles, threadMessageStyles, threadReactionsStyles, threadTimestampStyles, toastVariants, toolbarVariants, tooltipContentVariants, typewriterVariants, useAuth, useShortcut, useTheme, useToast, optionVariants2 as versionSelectorOptionVariants, versionSelectorVariants, watermarkVariants };
|
|
12050
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AltHintState, AnimatedText, AppShell, AuthGuard, AuthProvider, Avatar, AvatarFallback, AvatarGroup, AvatarImage, Badge, BadgeDisplay, BottomNav, Breadcrumbs, Button, CATEGORY_LABELS, Calendar, CalendarHeader, Callout, CalloutContent, CalloutDescription, CalloutIcon, CalloutTitle, Card2 as Card, CardContent, CardDescription, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselTrigger, Checkbox, CodeBlock, CodeBlockContent, CodeBlockHeader, CodeEditor, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, ContentProtection, DataTable, DatePicker, DeviceFrame, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EMOJI_CATEGORIES, EMOJI_DATA, EmojiPicker, FeedbackButton, FeedbackDialog, FileTree, FileUpload, Footer, IconSystem, InlineEditor, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InstallPrompt, KeyboardShortcut, LanguageSelector, LinkCard, MarkdownRenderer, MobileNav, MobileNavContent, MobileNavLink, MobileNavTrigger, Navbar, OtpInput, STATUS_COLORS as PRESENCE_STATUS_COLORS, STATUS_LABELS as PRESENCE_STATUS_LABELS, Pagination, Payment, Popover, PopoverClose, PopoverContent, PopoverTrigger, PresenceIndicator, ProgressBar, RadioGroup, RadioItem, ReactionBar, ResizableDivider, ResizableLayout, ResizablePane, SANE_DEFAULTS, STATUS_COLORS2 as STATUS_COLORS, STATUS_LABELS2 as STATUS_LABELS, SearchBar, SearchResultItem, SearchResults, Select, SelectContent, SelectItem, SelectTrigger, ShortcutBadge, ShortcutContext, ShortcutHint, ShortcutProvider, ShortcutRegistry, Sidebar, Skeleton, SkeletonText, SkipToContent, SlideViewer, StatsGrid, StatusIndicator, Step, StepContent, StepDescription, StepIndicator, StepTitle, Steps, Switch, TableOfContents, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeScript, ThemeToggle, ThreadView, Toast, ToastProvider, Toaster, Tooltip, TooltipContent, TooltipTrigger, TypewriterText, VersionSelector, VideoPlayer, altHintState, animatedTextVariants, avatarFallbackVariants, avatarImageVariants, avatarTokens, avatarVariants, badgeGridVariants, badgeItemVariants, badgeVariants, bottomNavTabVariants, bottomNavVariants, breadcrumbItemVariants, breadcrumbSeparatorStyles, breadcrumbsVariants, buttonTokens, buttonVariants, calendarVariants, canAccessAdmin, canAccessReviewer, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardTitleVariants, cardTokens, cardVariants, cellVariants, checkIconPath, checkboxTokens, checkboxVariants, codeEditorTokens, codeEditorVariants, collapsibleContentVariants, commandGroupVariants, commandInputVariants, commandItemVariants, commandVariants, contentProtectionVariants, controlsVariants, dayVariants, deviceFrameVariants, dialogContentVariants, editorVariants, emojiPickerContainerStyles, emojiPickerEmojiButtonStyles, emojiPickerGridStyles, feedbackDialogVariants, fileUploadDropZoneVariants, fileUploadFileItemStyles, fileUploadFileListStyles, footerVariants, formatFileSize, formatRelativeTime, formatShortcut, formatTimestamp, getAssignableRoles, getDefaultPortal, getInitials, globalShortcutRegistry, hasAllRoles, hasAnyRole, hasRole, headerVariants, indeterminateIconPath, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupTokens, inputGroupVariants, inputVariants, installPromptVariants, latestBadgeVariants, markdownRendererTokens, menuContentVariants, menuItemVariants, mobileNavContentVariants, mobileNavLinkVariants, mobileNavTokens, mobileNavTriggerVariants, mobileNavVariants, navLinkVariants, navbarVariants, optionVariants, otpInputContainerVariants, otpInputSlotVariants, otpInputTokens, overlayStyles, overlayVariants, playerVariants, popoverContentVariants, previewVariants, progressBarVariants, proseVariants, radioCircleVariants, radioGroupVariants, radioItemVariants, reactionAddButtonStyles, reactionBarStyles, reactionCountStyles, reactionEmojiStyles, reactionPillVariants, resizableDividerVariants, resizableLayoutTokens, resizableLayoutVariants, resizablePaneVariants, rowVariants, searchBarVariants, searchResultVariants, selectContentVariants, selectItemVariants, selectTokens, selectTriggerVariants, selectorVariants, shortcutBadgeStyles, shortcutKeyStyles, shortcutSeparatorStyles, sidebarItemVariants, sidebarVariants, skeletonVariants, slideTypeBadgeVariants, progressBarVariants2 as slideViewerProgressBarVariants, slideViewerTokens, slideViewerVariants, statCardVariants, statsGridVariants, statusContainerStyles, statusDotVariants, statusLabelStyles, statusPulseVariants, switchThumbVariants, switchTokens, switchVariants, tableVariants, tabsListVariants, tabsTriggerVariants, textareaVariants, threadAuthorStyles, threadAvatarStyles, threadBodyStyles, threadContainerStyles, threadContentStyles, threadMessageStyles, threadReactionsStyles, threadTimestampStyles, toastVariants, toolbarVariants, tooltipContentVariants, typewriterVariants, useAuth, useShortcut, useTheme, useToast, optionVariants2 as versionSelectorOptionVariants, versionSelectorVariants, watermarkVariants };
|
|
11696
12051
|
//# sourceMappingURL=index.js.map
|
|
11697
12052
|
//# sourceMappingURL=index.js.map
|