nave-ui-library 1.0.0-beta.48 → 1.0.0-beta.49
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/lit/index.d.ts +447 -1
- package/dist/lit/index.js +256 -46
- package/dist/wc/index.d.ts +229 -1
- package/dist/wc/index.js +256 -46
- package/package.json +1 -1
package/dist/lit/index.d.ts
CHANGED
|
@@ -2,13 +2,23 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
4
4
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
5
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
5
6
|
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
6
7
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
8
|
import { VariantProps } from 'class-variance-authority';
|
|
8
9
|
import { Loader2Icon } from 'lucide-react';
|
|
9
10
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
10
11
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
12
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
13
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
14
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
15
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
16
|
+
import { DayPicker } from 'react-day-picker';
|
|
11
17
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
18
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
19
|
+
import * as _radix_ui_react_dialog from '@radix-ui/react-dialog';
|
|
20
|
+
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
21
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
12
22
|
|
|
13
23
|
interface ThemeTokensBase {
|
|
14
24
|
[key: string]: unknown;
|
|
@@ -171,6 +181,18 @@ interface CheckboxProps extends React.ComponentProps<typeof CheckboxPrimitive.Ro
|
|
|
171
181
|
}
|
|
172
182
|
declare function Checkbox({ className, tokens, size, tone, label, description, disabled, style, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
173
183
|
|
|
184
|
+
interface RadioGroupProps extends React.ComponentProps<typeof RadioGroupPrimitive.Root> {
|
|
185
|
+
}
|
|
186
|
+
interface RadioItemProps extends React.ComponentProps<typeof RadioGroupPrimitive.Item> {
|
|
187
|
+
size?: 'regular' | 'small' | 'extraSmall';
|
|
188
|
+
label?: string;
|
|
189
|
+
description?: string;
|
|
190
|
+
disabled?: boolean;
|
|
191
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
192
|
+
}
|
|
193
|
+
declare function RadioGroup({ className, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
194
|
+
declare function RadioItem({ className, size, label, description, disabled, tokens, value, ...props }: RadioItemProps): react_jsx_runtime.JSX.Element;
|
|
195
|
+
|
|
174
196
|
interface SwitchProps extends React.ComponentProps<typeof SwitchPrimitive.Root> {
|
|
175
197
|
tokens?: Partial<ThemeTokensBase>;
|
|
176
198
|
size?: 'regular' | 'small' | 'extraSmall';
|
|
@@ -442,11 +464,217 @@ type TourProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
442
464
|
};
|
|
443
465
|
declare function Tour({ className, currentStep, totalSteps, title, description, onBack, onNext, backLabel, nextLabel, disableBack, disableNext, showPointer, tokens, style, ...props }: TourProps): react_jsx_runtime.JSX.Element;
|
|
444
466
|
|
|
467
|
+
type DragSliderProps = {
|
|
468
|
+
children: React.ReactNode;
|
|
469
|
+
className?: string;
|
|
470
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
471
|
+
};
|
|
472
|
+
declare function DragSlider({ children, className, tokens: customTokens, }: DragSliderProps): react_jsx_runtime.JSX.Element;
|
|
473
|
+
|
|
474
|
+
type ChartType = 'bar' | 'line' | 'donut' | 'pie';
|
|
475
|
+
type ChartDatum = {
|
|
476
|
+
label: string;
|
|
477
|
+
value: number;
|
|
478
|
+
color?: string;
|
|
479
|
+
[key: string]: string | number | undefined;
|
|
480
|
+
};
|
|
481
|
+
type ChartsProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
482
|
+
type?: ChartType;
|
|
483
|
+
data: ChartDatum[];
|
|
484
|
+
title?: React.ReactNode;
|
|
485
|
+
subtitle?: React.ReactNode;
|
|
486
|
+
showLegend?: boolean;
|
|
487
|
+
showGrid?: boolean;
|
|
488
|
+
showBaseline?: boolean;
|
|
489
|
+
showXAxis?: boolean;
|
|
490
|
+
showYAxis?: boolean;
|
|
491
|
+
showTooltip?: boolean;
|
|
492
|
+
height?: number;
|
|
493
|
+
donutCenterValue?: React.ReactNode;
|
|
494
|
+
donutCenterLabel?: React.ReactNode;
|
|
495
|
+
legendTitle?: React.ReactNode;
|
|
496
|
+
valueFormatter?: (value: number) => string;
|
|
497
|
+
xDataKey?: string;
|
|
498
|
+
yDataKey?: string;
|
|
499
|
+
nameKey?: string;
|
|
500
|
+
showLineArea?: boolean;
|
|
501
|
+
emptyStateLabel?: React.ReactNode;
|
|
502
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
503
|
+
};
|
|
504
|
+
declare function Charts({ className, type, data, title, subtitle, showLegend, showGrid, showBaseline, showXAxis, showYAxis, showTooltip, height, donutCenterValue, donutCenterLabel, legendTitle, valueFormatter, xDataKey, yDataKey, nameKey, showLineArea, emptyStateLabel, tokens, style, ...props }: ChartsProps): react_jsx_runtime.JSX.Element;
|
|
505
|
+
|
|
506
|
+
declare function Accordion({ size, tokens, ...props }: React.ComponentProps<typeof AccordionPrimitive.Root> & {
|
|
507
|
+
size?: 'sm' | 'md';
|
|
508
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
509
|
+
}): react_jsx_runtime.JSX.Element;
|
|
510
|
+
declare function AccordionItem({ className, ...props }: React.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
511
|
+
declare function AccordionTrigger({ className, children, ...props }: React.ComponentProps<typeof AccordionPrimitive.Trigger> & {
|
|
512
|
+
size?: 'sm' | 'md';
|
|
513
|
+
}): react_jsx_runtime.JSX.Element;
|
|
514
|
+
declare function AccordionContent({ className, children, ...props }: React.ComponentProps<typeof AccordionPrimitive.Content> & {
|
|
515
|
+
size?: 'sm' | 'md';
|
|
516
|
+
}): react_jsx_runtime.JSX.Element;
|
|
517
|
+
|
|
518
|
+
declare function Table({ className, tokens, ...props }: React.ComponentProps<'table'> & {
|
|
519
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
520
|
+
}): react_jsx_runtime.JSX.Element;
|
|
521
|
+
declare function TableHeader(props: React.ComponentProps<'thead'>): react_jsx_runtime.JSX.Element;
|
|
522
|
+
declare function TableBody(props: React.ComponentProps<'tbody'>): react_jsx_runtime.JSX.Element;
|
|
523
|
+
declare function TableRow(props: React.ComponentProps<'tr'>): react_jsx_runtime.JSX.Element;
|
|
524
|
+
declare function TableHead(props: React.ComponentProps<'th'>): react_jsx_runtime.JSX.Element;
|
|
525
|
+
declare function TableCell(props: React.ComponentProps<'td'>): react_jsx_runtime.JSX.Element;
|
|
526
|
+
declare function TableCellDescription({ className, ...props }: React.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
527
|
+
declare function TableFooter({ children, className, ...props }: React.ComponentProps<'tfoot'>): react_jsx_runtime.JSX.Element;
|
|
528
|
+
declare function TableCaption(props: React.ComponentProps<'caption'>): react_jsx_runtime.JSX.Element;
|
|
529
|
+
|
|
530
|
+
type ModuleBoxProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
531
|
+
title?: React.ReactNode;
|
|
532
|
+
headerActions?: React.ReactNode;
|
|
533
|
+
footerActions?: React.ReactNode;
|
|
534
|
+
slotPlaceholder?: React.ReactNode;
|
|
535
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
536
|
+
headerClassName?: string;
|
|
537
|
+
slotClassName?: string;
|
|
538
|
+
footerClassName?: string;
|
|
539
|
+
};
|
|
540
|
+
declare function ModuleBox({ className, title, headerActions, footerActions, slotPlaceholder, tokens, headerClassName, slotClassName, footerClassName, children, style, ...props }: ModuleBoxProps): react_jsx_runtime.JSX.Element;
|
|
541
|
+
|
|
542
|
+
interface DropdownItemProps {
|
|
543
|
+
iconLeft?: React.ReactNode;
|
|
544
|
+
iconRight?: React.ReactNode;
|
|
545
|
+
selected?: boolean;
|
|
546
|
+
disabled?: boolean;
|
|
547
|
+
destructive?: boolean;
|
|
548
|
+
}
|
|
549
|
+
type ThemedProps = {
|
|
550
|
+
variant?: string;
|
|
551
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
552
|
+
};
|
|
553
|
+
declare function DropdownMenu(props: React.ComponentProps<typeof DropdownMenuPrimitive.Root> & {
|
|
554
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
555
|
+
}): react_jsx_runtime.JSX.Element;
|
|
556
|
+
declare function DropdownMenuTrigger(props: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
557
|
+
declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Content> & ThemedProps): react_jsx_runtime.JSX.Element | null;
|
|
558
|
+
declare function DropdownMenuItem({ className, iconLeft, iconRight, selected, destructive, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & DropdownItemProps): react_jsx_runtime.JSX.Element;
|
|
559
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
560
|
+
inset?: boolean;
|
|
561
|
+
}): react_jsx_runtime.JSX.Element;
|
|
562
|
+
declare function DropdownMenuSeparator(props: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
563
|
+
|
|
564
|
+
declare function Popover({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
565
|
+
declare function PopoverTrigger({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
566
|
+
declare function PopoverContent({ className, align, sideOffset, tokens, style, ...props }: React.ComponentProps<typeof PopoverPrimitive.Content> & {
|
|
567
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
568
|
+
}): react_jsx_runtime.JSX.Element;
|
|
569
|
+
|
|
570
|
+
declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
571
|
+
declare function Tooltip({ tokens, ...props }: React.ComponentProps<typeof TooltipPrimitive.Root> & {
|
|
572
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
573
|
+
}): react_jsx_runtime.JSX.Element;
|
|
574
|
+
declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
575
|
+
declare function TooltipContent({ className, sideOffset, tokens, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content> & {
|
|
576
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
577
|
+
}): react_jsx_runtime.JSX.Element;
|
|
578
|
+
|
|
579
|
+
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, tokens, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & {
|
|
580
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
581
|
+
}): react_jsx_runtime.JSX.Element;
|
|
582
|
+
|
|
583
|
+
type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
584
|
+
type IconVariant = 'default' | 'primary' | 'muted' | 'danger' | 'success';
|
|
585
|
+
type IconProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
586
|
+
children?: React.ReactNode;
|
|
587
|
+
size?: IconSize;
|
|
588
|
+
color?: IconVariant;
|
|
589
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
590
|
+
asChild?: boolean;
|
|
591
|
+
};
|
|
592
|
+
declare function Icon({ className, size, color, tokens: customTokens, asChild, style, children, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
593
|
+
|
|
445
594
|
type SeparatorProps = React.ComponentProps<typeof SeparatorPrimitive.Root> & {
|
|
446
595
|
tokens?: Partial<ThemeTokensBase>;
|
|
447
596
|
};
|
|
448
597
|
declare function Separator({ className, orientation, decorative, tokens, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
449
598
|
|
|
599
|
+
type BreadcrumbSize = 'small' | 'medium';
|
|
600
|
+
interface BreadcrumbProps extends React.ComponentProps<'nav'> {
|
|
601
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
602
|
+
size?: BreadcrumbSize;
|
|
603
|
+
}
|
|
604
|
+
declare function Breadcrumb({ className, tokens, style, size, children, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
605
|
+
declare function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
|
|
606
|
+
declare function BreadcrumbItem({ className, ...props }: React.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
607
|
+
declare function BreadcrumbLink({ asChild, className, ...props }: React.ComponentProps<'a'> & {
|
|
608
|
+
asChild?: boolean;
|
|
609
|
+
}): react_jsx_runtime.JSX.Element;
|
|
610
|
+
declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
611
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
612
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
613
|
+
|
|
614
|
+
type DrawerSlotTokens = {
|
|
615
|
+
overlay?: Partial<ThemeTokensBase>;
|
|
616
|
+
container?: Partial<ThemeTokensBase>;
|
|
617
|
+
close?: Partial<ThemeTokensBase>;
|
|
618
|
+
title?: Partial<ThemeTokensBase>;
|
|
619
|
+
description?: Partial<ThemeTokensBase>;
|
|
620
|
+
};
|
|
621
|
+
type DrawerProps = React.ComponentProps<typeof Drawer$1.Root> & {
|
|
622
|
+
tokens?: Partial<DrawerSlotTokens>;
|
|
623
|
+
};
|
|
624
|
+
declare function Drawer({ tokens, ...props }: DrawerProps): react_jsx_runtime.JSX.Element;
|
|
625
|
+
declare const DrawerTrigger: React.ForwardRefExoticComponent<_radix_ui_react_dialog.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
626
|
+
declare const DrawerClose: React.ForwardRefExoticComponent<_radix_ui_react_dialog.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
627
|
+
declare function DrawerContent({ className, children, ...props }: React.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element | null;
|
|
628
|
+
declare const DrawerHeader: ({ className, ...props }: React.ComponentProps<"div">) => react_jsx_runtime.JSX.Element;
|
|
629
|
+
declare const DrawerBody: ({ className, ...props }: React.ComponentProps<"div">) => react_jsx_runtime.JSX.Element;
|
|
630
|
+
declare const DrawerFooter: ({ className, ...props }: React.ComponentProps<"div">) => react_jsx_runtime.JSX.Element;
|
|
631
|
+
declare function DrawerCloseButton({ className, ...props }: React.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
|
|
632
|
+
declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element | null;
|
|
633
|
+
declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element | null;
|
|
634
|
+
|
|
635
|
+
type AlertDialogAlignment = 'left' | 'center';
|
|
636
|
+
interface AlertDialogProps extends React.ComponentProps<typeof AlertDialogPrimitive.Root> {
|
|
637
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
638
|
+
alignment?: AlertDialogAlignment;
|
|
639
|
+
size?: 'regular';
|
|
640
|
+
}
|
|
641
|
+
declare function AlertDialog({ tokens, alignment, size, ...props }: AlertDialogProps): react_jsx_runtime.JSX.Element;
|
|
642
|
+
declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
643
|
+
declare function AlertDialogContent({ className, alignment, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Content> & {
|
|
644
|
+
alignment?: AlertDialogAlignment;
|
|
645
|
+
}): react_jsx_runtime.JSX.Element;
|
|
646
|
+
declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
647
|
+
declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
648
|
+
declare function AlertDialogTitle(props: React.ComponentProps<typeof AlertDialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
649
|
+
declare function AlertDialogDescription(props: React.ComponentProps<typeof AlertDialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
650
|
+
declare function AlertDialogAction({ className, children, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Action>): react_jsx_runtime.JSX.Element;
|
|
651
|
+
declare function AlertDialogCancel({ className, children, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel>): react_jsx_runtime.JSX.Element;
|
|
652
|
+
|
|
653
|
+
declare function Pagination({ className, tokens: customTokens, style, ...props }: React.ComponentProps<'nav'> & {
|
|
654
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
655
|
+
}): react_jsx_runtime.JSX.Element;
|
|
656
|
+
type PaginationLinkProps = {
|
|
657
|
+
isActive?: boolean;
|
|
658
|
+
disabled?: boolean;
|
|
659
|
+
} & React.ComponentProps<'a'>;
|
|
660
|
+
declare function PaginationLink({ className, isActive, disabled, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
661
|
+
declare function PaginationContent({ className, ...props }: React.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
662
|
+
declare function PaginationItem(props: React.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
663
|
+
declare function PaginationPrevious({ className, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
664
|
+
declare function PaginationNext({ className, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
665
|
+
declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
666
|
+
|
|
667
|
+
declare function Tabs({ className, size, tokens, ...props }: React.ComponentProps<typeof TabsPrimitive.Root> & {
|
|
668
|
+
size: TabsSize;
|
|
669
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
670
|
+
}): react_jsx_runtime.JSX.Element;
|
|
671
|
+
type TabsSize = 'medium' | 'small';
|
|
672
|
+
declare function TabsList({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.List> & {
|
|
673
|
+
size?: TabsSize;
|
|
674
|
+
}): react_jsx_runtime.JSX.Element;
|
|
675
|
+
declare function TabsTrigger({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
676
|
+
declare function TabsContent({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
677
|
+
|
|
450
678
|
declare global {
|
|
451
679
|
interface NaveButtonAttributes {
|
|
452
680
|
variant?: 'primary' | 'secondary' | 'tertiary' | 'neutral';
|
|
@@ -607,6 +835,154 @@ declare global {
|
|
|
607
835
|
src?: string;
|
|
608
836
|
alt?: string;
|
|
609
837
|
}
|
|
838
|
+
interface NaveRadioGroupAttributes {
|
|
839
|
+
value?: string;
|
|
840
|
+
disabled?: boolean;
|
|
841
|
+
name?: string;
|
|
842
|
+
orientation?: 'horizontal' | 'vertical';
|
|
843
|
+
onValueChange?: (v: string) => void;
|
|
844
|
+
}
|
|
845
|
+
interface NaveRadioItemAttributes {
|
|
846
|
+
value?: string;
|
|
847
|
+
disabled?: boolean;
|
|
848
|
+
label?: string;
|
|
849
|
+
}
|
|
850
|
+
interface NaveAccordionAttributes {
|
|
851
|
+
}
|
|
852
|
+
interface NaveAccordionItemAttributes {
|
|
853
|
+
}
|
|
854
|
+
interface NaveAccordionTriggerAttributes {
|
|
855
|
+
}
|
|
856
|
+
interface NaveAccordionContentAttributes {
|
|
857
|
+
}
|
|
858
|
+
interface NaveTabsAttributes {
|
|
859
|
+
}
|
|
860
|
+
interface NaveTabsListAttributes {
|
|
861
|
+
}
|
|
862
|
+
interface NaveTabsTriggerAttributes {
|
|
863
|
+
}
|
|
864
|
+
interface NaveTabsContentAttributes {
|
|
865
|
+
}
|
|
866
|
+
interface NaveTooltipAttributes {
|
|
867
|
+
}
|
|
868
|
+
interface NaveTooltipProviderAttributes {
|
|
869
|
+
}
|
|
870
|
+
interface NaveTooltipTriggerAttributes {
|
|
871
|
+
}
|
|
872
|
+
interface NaveTooltipContentAttributes {
|
|
873
|
+
}
|
|
874
|
+
interface NavePopoverAttributes {
|
|
875
|
+
}
|
|
876
|
+
interface NavePopoverTriggerAttributes {
|
|
877
|
+
}
|
|
878
|
+
interface NavePopoverContentAttributes {
|
|
879
|
+
}
|
|
880
|
+
interface NaveDropdownMenuAttributes {
|
|
881
|
+
}
|
|
882
|
+
interface NaveDropdownMenuTriggerAttributes {
|
|
883
|
+
}
|
|
884
|
+
interface NaveDropdownMenuContentAttributes {
|
|
885
|
+
}
|
|
886
|
+
interface NaveDropdownMenuItemAttributes {
|
|
887
|
+
}
|
|
888
|
+
interface NaveDropdownMenuLabelAttributes {
|
|
889
|
+
}
|
|
890
|
+
interface NaveDropdownMenuSeparatorAttributes {
|
|
891
|
+
}
|
|
892
|
+
interface NaveDrawerAttributes {
|
|
893
|
+
}
|
|
894
|
+
interface NaveDrawerTriggerAttributes {
|
|
895
|
+
}
|
|
896
|
+
interface NaveDrawerContentAttributes {
|
|
897
|
+
}
|
|
898
|
+
interface NaveDrawerHeaderAttributes {
|
|
899
|
+
}
|
|
900
|
+
interface NaveDrawerBodyAttributes {
|
|
901
|
+
}
|
|
902
|
+
interface NaveDrawerFooterAttributes {
|
|
903
|
+
}
|
|
904
|
+
interface NaveDrawerTitleAttributes {
|
|
905
|
+
}
|
|
906
|
+
interface NaveDrawerDescriptionAttributes {
|
|
907
|
+
}
|
|
908
|
+
interface NaveDrawerCloseAttributes {
|
|
909
|
+
}
|
|
910
|
+
interface NaveDrawerCloseButtonAttributes {
|
|
911
|
+
}
|
|
912
|
+
interface NaveAlertDialogAttributes {
|
|
913
|
+
}
|
|
914
|
+
interface NaveAlertDialogTriggerAttributes {
|
|
915
|
+
}
|
|
916
|
+
interface NaveAlertDialogContentAttributes {
|
|
917
|
+
}
|
|
918
|
+
interface NaveAlertDialogHeaderAttributes {
|
|
919
|
+
}
|
|
920
|
+
interface NaveAlertDialogFooterAttributes {
|
|
921
|
+
}
|
|
922
|
+
interface NaveAlertDialogTitleAttributes {
|
|
923
|
+
}
|
|
924
|
+
interface NaveAlertDialogDescriptionAttributes {
|
|
925
|
+
}
|
|
926
|
+
interface NaveAlertDialogActionAttributes {
|
|
927
|
+
}
|
|
928
|
+
interface NaveAlertDialogCancelAttributes {
|
|
929
|
+
}
|
|
930
|
+
interface NaveBreadcrumbAttributes {
|
|
931
|
+
}
|
|
932
|
+
interface NaveBreadcrumbListAttributes {
|
|
933
|
+
}
|
|
934
|
+
interface NaveBreadcrumbItemAttributes {
|
|
935
|
+
}
|
|
936
|
+
interface NaveBreadcrumbLinkAttributes {
|
|
937
|
+
}
|
|
938
|
+
interface NaveBreadcrumbPageAttributes {
|
|
939
|
+
}
|
|
940
|
+
interface NaveBreadcrumbSeparatorAttributes {
|
|
941
|
+
}
|
|
942
|
+
interface NaveBreadcrumbEllipsisAttributes {
|
|
943
|
+
}
|
|
944
|
+
interface NavePaginationAttributes {
|
|
945
|
+
}
|
|
946
|
+
interface NavePaginationContentAttributes {
|
|
947
|
+
}
|
|
948
|
+
interface NavePaginationItemAttributes {
|
|
949
|
+
}
|
|
950
|
+
interface NavePaginationLinkAttributes {
|
|
951
|
+
}
|
|
952
|
+
interface NavePaginationPreviousAttributes {
|
|
953
|
+
}
|
|
954
|
+
interface NavePaginationNextAttributes {
|
|
955
|
+
}
|
|
956
|
+
interface NavePaginationEllipsisAttributes {
|
|
957
|
+
}
|
|
958
|
+
interface NaveTableAttributes {
|
|
959
|
+
}
|
|
960
|
+
interface NaveTableHeaderAttributes {
|
|
961
|
+
}
|
|
962
|
+
interface NaveTableBodyAttributes {
|
|
963
|
+
}
|
|
964
|
+
interface NaveTableFooterAttributes {
|
|
965
|
+
}
|
|
966
|
+
interface NaveTableRowAttributes {
|
|
967
|
+
}
|
|
968
|
+
interface NaveTableHeadAttributes {
|
|
969
|
+
}
|
|
970
|
+
interface NaveTableCellAttributes {
|
|
971
|
+
}
|
|
972
|
+
interface NaveTableCaptionAttributes {
|
|
973
|
+
}
|
|
974
|
+
interface NaveTableCellDescriptionAttributes {
|
|
975
|
+
}
|
|
976
|
+
interface NaveModuleBoxAttributes {
|
|
977
|
+
}
|
|
978
|
+
interface NaveChartsAttributes {
|
|
979
|
+
}
|
|
980
|
+
interface NaveCalendarAttributes {
|
|
981
|
+
}
|
|
982
|
+
interface NaveDragSliderAttributes {
|
|
983
|
+
}
|
|
984
|
+
interface NaveIconAttributes {
|
|
985
|
+
}
|
|
610
986
|
interface HTMLElementTagNameMap {
|
|
611
987
|
'nave-button': HTMLElement & NaveButtonAttributes;
|
|
612
988
|
'nave-input': HTMLElement & NaveInputAttributes;
|
|
@@ -638,6 +1014,76 @@ declare global {
|
|
|
638
1014
|
'nave-tour': HTMLElement & NaveTourAttributes;
|
|
639
1015
|
'nave-sidebar': HTMLElement & NaveSidebarAttributes;
|
|
640
1016
|
'nave-separator': HTMLElement & NaveSeparatorAttributes;
|
|
1017
|
+
'nave-radio-group': HTMLElement & NaveRadioGroupAttributes;
|
|
1018
|
+
'nave-radio-item': HTMLElement & NaveRadioItemAttributes;
|
|
1019
|
+
'nave-accordion': HTMLElement & NaveAccordionAttributes;
|
|
1020
|
+
'nave-accordion-item': HTMLElement & NaveAccordionItemAttributes;
|
|
1021
|
+
'nave-accordion-trigger': HTMLElement & NaveAccordionTriggerAttributes;
|
|
1022
|
+
'nave-accordion-content': HTMLElement & NaveAccordionContentAttributes;
|
|
1023
|
+
'nave-tabs': HTMLElement & NaveTabsAttributes;
|
|
1024
|
+
'nave-tabs-list': HTMLElement & NaveTabsListAttributes;
|
|
1025
|
+
'nave-tabs-trigger': HTMLElement & NaveTabsTriggerAttributes;
|
|
1026
|
+
'nave-tabs-content': HTMLElement & NaveTabsContentAttributes;
|
|
1027
|
+
'nave-tooltip': HTMLElement & NaveTooltipAttributes;
|
|
1028
|
+
'nave-tooltip-provider': HTMLElement & NaveTooltipProviderAttributes;
|
|
1029
|
+
'nave-tooltip-trigger': HTMLElement & NaveTooltipTriggerAttributes;
|
|
1030
|
+
'nave-tooltip-content': HTMLElement & NaveTooltipContentAttributes;
|
|
1031
|
+
'nave-popover': HTMLElement & NavePopoverAttributes;
|
|
1032
|
+
'nave-popover-trigger': HTMLElement & NavePopoverTriggerAttributes;
|
|
1033
|
+
'nave-popover-content': HTMLElement & NavePopoverContentAttributes;
|
|
1034
|
+
'nave-dropdown-menu': HTMLElement & NaveDropdownMenuAttributes;
|
|
1035
|
+
'nave-dropdown-menu-trigger': HTMLElement & NaveDropdownMenuTriggerAttributes;
|
|
1036
|
+
'nave-dropdown-menu-content': HTMLElement & NaveDropdownMenuContentAttributes;
|
|
1037
|
+
'nave-dropdown-menu-item': HTMLElement & NaveDropdownMenuItemAttributes;
|
|
1038
|
+
'nave-dropdown-menu-label': HTMLElement & NaveDropdownMenuLabelAttributes;
|
|
1039
|
+
'nave-dropdown-menu-separator': HTMLElement & NaveDropdownMenuSeparatorAttributes;
|
|
1040
|
+
'nave-drawer': HTMLElement & NaveDrawerAttributes;
|
|
1041
|
+
'nave-drawer-trigger': HTMLElement & NaveDrawerTriggerAttributes;
|
|
1042
|
+
'nave-drawer-content': HTMLElement & NaveDrawerContentAttributes;
|
|
1043
|
+
'nave-drawer-header': HTMLElement & NaveDrawerHeaderAttributes;
|
|
1044
|
+
'nave-drawer-body': HTMLElement & NaveDrawerBodyAttributes;
|
|
1045
|
+
'nave-drawer-footer': HTMLElement & NaveDrawerFooterAttributes;
|
|
1046
|
+
'nave-drawer-title': HTMLElement & NaveDrawerTitleAttributes;
|
|
1047
|
+
'nave-drawer-description': HTMLElement & NaveDrawerDescriptionAttributes;
|
|
1048
|
+
'nave-drawer-close': HTMLElement & NaveDrawerCloseAttributes;
|
|
1049
|
+
'nave-drawer-close-button': HTMLElement & NaveDrawerCloseButtonAttributes;
|
|
1050
|
+
'nave-alert-dialog': HTMLElement & NaveAlertDialogAttributes;
|
|
1051
|
+
'nave-alert-dialog-trigger': HTMLElement & NaveAlertDialogTriggerAttributes;
|
|
1052
|
+
'nave-alert-dialog-content': HTMLElement & NaveAlertDialogContentAttributes;
|
|
1053
|
+
'nave-alert-dialog-header': HTMLElement & NaveAlertDialogHeaderAttributes;
|
|
1054
|
+
'nave-alert-dialog-footer': HTMLElement & NaveAlertDialogFooterAttributes;
|
|
1055
|
+
'nave-alert-dialog-title': HTMLElement & NaveAlertDialogTitleAttributes;
|
|
1056
|
+
'nave-alert-dialog-description': HTMLElement & NaveAlertDialogDescriptionAttributes;
|
|
1057
|
+
'nave-alert-dialog-action': HTMLElement & NaveAlertDialogActionAttributes;
|
|
1058
|
+
'nave-alert-dialog-cancel': HTMLElement & NaveAlertDialogCancelAttributes;
|
|
1059
|
+
'nave-breadcrumb': HTMLElement & NaveBreadcrumbAttributes;
|
|
1060
|
+
'nave-breadcrumb-list': HTMLElement & NaveBreadcrumbListAttributes;
|
|
1061
|
+
'nave-breadcrumb-item': HTMLElement & NaveBreadcrumbItemAttributes;
|
|
1062
|
+
'nave-breadcrumb-link': HTMLElement & NaveBreadcrumbLinkAttributes;
|
|
1063
|
+
'nave-breadcrumb-page': HTMLElement & NaveBreadcrumbPageAttributes;
|
|
1064
|
+
'nave-breadcrumb-separator': HTMLElement & NaveBreadcrumbSeparatorAttributes;
|
|
1065
|
+
'nave-breadcrumb-ellipsis': HTMLElement & NaveBreadcrumbEllipsisAttributes;
|
|
1066
|
+
'nave-pagination': HTMLElement & NavePaginationAttributes;
|
|
1067
|
+
'nave-pagination-content': HTMLElement & NavePaginationContentAttributes;
|
|
1068
|
+
'nave-pagination-item': HTMLElement & NavePaginationItemAttributes;
|
|
1069
|
+
'nave-pagination-link': HTMLElement & NavePaginationLinkAttributes;
|
|
1070
|
+
'nave-pagination-previous': HTMLElement & NavePaginationPreviousAttributes;
|
|
1071
|
+
'nave-pagination-next': HTMLElement & NavePaginationNextAttributes;
|
|
1072
|
+
'nave-pagination-ellipsis': HTMLElement & NavePaginationEllipsisAttributes;
|
|
1073
|
+
'nave-table': HTMLElement & NaveTableAttributes;
|
|
1074
|
+
'nave-table-header': HTMLElement & NaveTableHeaderAttributes;
|
|
1075
|
+
'nave-table-body': HTMLElement & NaveTableBodyAttributes;
|
|
1076
|
+
'nave-table-footer': HTMLElement & NaveTableFooterAttributes;
|
|
1077
|
+
'nave-table-row': HTMLElement & NaveTableRowAttributes;
|
|
1078
|
+
'nave-table-head': HTMLElement & NaveTableHeadAttributes;
|
|
1079
|
+
'nave-table-cell': HTMLElement & NaveTableCellAttributes;
|
|
1080
|
+
'nave-table-caption': HTMLElement & NaveTableCaptionAttributes;
|
|
1081
|
+
'nave-table-cell-description': HTMLElement & NaveTableCellDescriptionAttributes;
|
|
1082
|
+
'nave-module-box': HTMLElement & NaveModuleBoxAttributes;
|
|
1083
|
+
'nave-charts': HTMLElement & NaveChartsAttributes;
|
|
1084
|
+
'nave-calendar': HTMLElement & NaveCalendarAttributes;
|
|
1085
|
+
'nave-drag-slider': HTMLElement & NaveDragSliderAttributes;
|
|
1086
|
+
'nave-icon': HTMLElement & NaveIconAttributes;
|
|
641
1087
|
'nave-theme-provider': NaveThemeProviderElement;
|
|
642
1088
|
}
|
|
643
1089
|
interface NaveThemeProviderElement extends HTMLElement {
|
|
@@ -648,4 +1094,4 @@ declare global {
|
|
|
648
1094
|
}
|
|
649
1095
|
}
|
|
650
1096
|
|
|
651
|
-
export { Alert, Avatar, AvatarFallback, AvatarImage, Badge, Banner, Button, Card, Checkbox, ColorExample, Combobox, DatePickerInput, EmptyState, FileUpload, Header, Input, IntegrationCard, Label, ListItem, Loader, LoaderInit, NaveThemeProviderElement, PasswordInput, Progress, SearchBar, Select, Separator, Sidebar, Switch, Textarea, Tour, getGlobalTheme, setGlobalTheme };
|
|
1097
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Banner, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, Charts, Checkbox, ColorExample, Combobox, DatePickerInput, DragSlider, Drawer, DrawerBody, DrawerClose, DrawerCloseButton, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EmptyState, FileUpload, Header, Icon, Input, IntegrationCard, Label, ListItem, Loader, LoaderInit, ModuleBox, NaveThemeProviderElement, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioItem, SearchBar, Select, Separator, Sidebar, Switch, Table, TableBody, TableCaption, TableCell, TableCellDescription, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Tour, getGlobalTheme, setGlobalTheme };
|