nave-ui-library 1.0.0-beta.61 → 1.0.0-beta.63
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/react/index.d.ts +26 -13
- package/dist/react/index.js +692 -503
- package/dist/styles.css +1 -1
- package/dist/wc/index.d.ts +3 -2
- package/dist/wc/index.js +94 -64
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { ReactNode, HTMLAttributes, CSSProperties } from 'react';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
6
6
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
@@ -1327,12 +1327,32 @@ type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
1327
1327
|
};
|
|
1328
1328
|
declare function Card({ className, title, action, tokens, variant, width, children, style, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
1329
1329
|
|
|
1330
|
-
type
|
|
1331
|
-
children:
|
|
1330
|
+
type CarouselProps = {
|
|
1331
|
+
children: ReactNode;
|
|
1332
|
+
className?: string;
|
|
1333
|
+
tokens?: Partial<ThemeTokensBase>;
|
|
1334
|
+
};
|
|
1335
|
+
declare function Carousel$1({ children, className, tokens: customTokens, }: CarouselProps): react_jsx_runtime.JSX.Element;
|
|
1336
|
+
|
|
1337
|
+
type CarouselCardProps = HTMLAttributes<HTMLDivElement> & {
|
|
1338
|
+
imgSrc: string;
|
|
1339
|
+
title: string;
|
|
1340
|
+
imgAlt: string;
|
|
1332
1341
|
className?: string;
|
|
1333
1342
|
tokens?: Partial<ThemeTokensBase>;
|
|
1334
1343
|
};
|
|
1335
|
-
declare
|
|
1344
|
+
declare const CarouselCard: ({ imgSrc, imgAlt, title, tokens, style, className, }: CarouselCardProps) => react_jsx_runtime.JSX.Element;
|
|
1345
|
+
|
|
1346
|
+
declare const Carousel: typeof Carousel$1 & {
|
|
1347
|
+
Card: typeof CarouselCard;
|
|
1348
|
+
};
|
|
1349
|
+
|
|
1350
|
+
interface ColorExampleProps {
|
|
1351
|
+
className?: string;
|
|
1352
|
+
colorToken: string;
|
|
1353
|
+
colorName: string;
|
|
1354
|
+
}
|
|
1355
|
+
declare function ColorExample({ className, colorToken, colorName }: ColorExampleProps): react_jsx_runtime.JSX.Element;
|
|
1336
1356
|
|
|
1337
1357
|
declare const integrationCardVariants: (props?: ({
|
|
1338
1358
|
variant?: "default" | "none" | "subtle" | null | undefined;
|
|
@@ -1360,13 +1380,6 @@ type IntegrationCardProps = React$1.ComponentProps<'div'> & VariantProps<typeof
|
|
|
1360
1380
|
};
|
|
1361
1381
|
declare function IntegrationCard({ className, variant, logoSize, asChild, tokens, badgeText, logoSlot, logoSrc, logoAlt, initials, bannerClassName, title, description, linkLabel, linkHref, onLinkClick, logoClassName, badgeClassName, contentClassName, linkClassName, style, ...props }: IntegrationCardProps): react_jsx_runtime.JSX.Element;
|
|
1362
1382
|
|
|
1363
|
-
interface ColorExampleProps {
|
|
1364
|
-
className?: string;
|
|
1365
|
-
colorToken: string;
|
|
1366
|
-
colorName: string;
|
|
1367
|
-
}
|
|
1368
|
-
declare function ColorExample({ className, colorToken, colorName }: ColorExampleProps): react_jsx_runtime.JSX.Element;
|
|
1369
|
-
|
|
1370
1383
|
type AccordionProps = (Omit<AccordionPrimitive.AccordionMultipleProps, 'type'> & {
|
|
1371
1384
|
type?: 'multiple';
|
|
1372
1385
|
size?: 'sm' | 'md';
|
|
@@ -1873,7 +1886,7 @@ declare enum COMPONENT_NAMES {
|
|
|
1873
1886
|
FILE_UPLOAD = "fileUpload",
|
|
1874
1887
|
DROPDOWN = "dropdown",
|
|
1875
1888
|
TOOLTIP = "tooltip",
|
|
1876
|
-
|
|
1889
|
+
CAROUSEL = "carousel",
|
|
1877
1890
|
MODULE_BOX = "moduleBox",
|
|
1878
1891
|
CHARTS = "charts",
|
|
1879
1892
|
PAGINATION = "pagination",
|
|
@@ -1963,4 +1976,4 @@ declare function useTokenStyles<T extends ResolvedTokenMap = ResolvedTokenMap>(c
|
|
|
1963
1976
|
tokens: T;
|
|
1964
1977
|
};
|
|
1965
1978
|
|
|
1966
|
-
export { AIProvider, type AIProviderProps, type AIRequest, type AIRequestFn, type AIResponse, type AITask, Accordion, AccordionContent, AccordionItem, type AccordionTokens, AccordionTrigger, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, type AlertTokens, Avatar, AvatarFallback, AvatarImage, type AvatarSize, type AvatarTokens, Badge, type BadgeShape, type BadgeSize, type BadgeTokens, type BadgeTone, Banner, type BannerProps, type BannerTokens, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type BreadcrumbSize, type BreadcrumbTokens, Button, type ButtonProps, type ButtonTokens, COMPONENT_NAMES, type CSSPropertiesWithVars, Calendar, type CalendarTokens, Card, type CardProps, type CardTokens, type ChartDatum, type ChartType, Charts, type ChartsProps, type ChartsTokens, Checkbox, type CheckboxTokens, type ColorBundle, type ColorBundleWithShadow, ColorExample, Combobox, DatePickerInput,
|
|
1979
|
+
export { AIProvider, type AIProviderProps, type AIRequest, type AIRequestFn, type AIResponse, type AITask, Accordion, AccordionContent, AccordionItem, type AccordionTokens, AccordionTrigger, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, type AlertTokens, Avatar, AvatarFallback, AvatarImage, type AvatarSize, type AvatarTokens, Badge, type BadgeShape, type BadgeSize, type BadgeTokens, type BadgeTone, Banner, type BannerProps, type BannerTokens, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type BreadcrumbSize, type BreadcrumbTokens, Button, type ButtonProps, type ButtonTokens, COMPONENT_NAMES, type CSSPropertiesWithVars, Calendar, type CalendarTokens, Card, type CardProps, type CardTokens, Carousel, type ChartDatum, type ChartType, Charts, type ChartsProps, type ChartsTokens, Checkbox, type CheckboxTokens, type ColorBundle, type ColorBundleWithShadow, ColorExample, Combobox, DatePickerInput, type DragSliderTokens, Drawer, DrawerBody, DrawerClose, DrawerCloseButton, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, type DrawerSlotTokens, DrawerTitle, type DrawerTokens, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownTokens, EmptyState, type EmptyStateProps, type EmptyStateTokens, ExpansionPanel, type ExpansionPanelProps, type ExpansionPanelSize, type ExpansionPanelStatus, Feedback, type FeedbackProps, type FeedbackSize, FileUpload, type FileUploadProps, type FileUploadState, type FileUploadTokens, type FontSizeTokens, Header, type HeaderProps, type HeaderSize, type HeaderTokens, INPUT_TOKEN_MAP, Icon, IconLabel, type IconLabelProps, type IconProps, type IconSize, type IconTokens, type IconVariant, Input, type InputSizeDimensions, type InputTokens, IntegrationCard, type IntegrationCardProps, type IntegrationCardTokens, Label, type LabelTokens, type LabeledFontTokens, ListItem, type ListItemProps, type ListItemStatus, Loader, LoaderInit, type LoaderProps, type LoaderSize, type LoaderTokens, type LoaderVariant, type Merchant, type ModalDialogTokens, ModuleBox, type ModuleBoxTokens, Navbar, NavbarLogo, NavbarMerchant, type NavbarTokens, type NavbarUser, NavbarUserMenu, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationTokens, PasswordInput, Popover, PopoverAnchor, PopoverContent, type PopoverTokens, PopoverTrigger, Progress, type ProgressTokens, type PromoBannerTokens, RadioGroup, RadioItem, type RadioTokens, type ResolvedTokenMap, SearchBar, Select, type SelectTokens, Separator, type SeparatorTokens, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, type SidebarTokens, Switch, type SwitchTokens, Table, TableBody, TableCaption, TableCell, TableCellDescription, TableFooter, TableHead, TableHeader, TableRow, type TableTokens, Tabs, TabsContent, TabsList, type TabsSize, type TabsTokens, TabsTrigger, Textarea, ThemeProvider, type ThemeTokensBase, Tile, type TileProps, type TileSize, type TokenStyleMap, Tooltip, TooltipContent, TooltipProvider, type TooltipTokens, TooltipTrigger, Tour, type TourProps, type TourTokens, type TypographyTokens, accordionContentVariants, accordionTriggerVariants, bannerVariants, buttonBaseClasses, cn, inputSizeExtras, mapTokenStyles, resolveTokens, tokenAt, useAI, useTheme, useTokenStyles };
|