@medway-ui/core 1.16.17 → 1.18.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/index.d.mts +90 -20
- package/dist/index.d.ts +90 -20
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ComponentProps, ReactNode, HTMLAttributes, ButtonHTMLAttributes, ReactElement, ComponentPropsWithoutRef, ChangeEvent, TableHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Avatar as Avatar$1, Progress as Progress$1,
|
|
6
|
+
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Avatar as Avatar$1, Progress as Progress$1, Collapsible as Collapsible$1, Checkbox as Checkbox$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1, Switch as Switch$1, Toast as Toast$2 } from 'radix-ui';
|
|
7
7
|
|
|
8
8
|
interface AlertProps extends ComponentProps<"div"> {
|
|
9
9
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error";
|
|
@@ -308,15 +308,6 @@ declare function CardModuleFooter({ className, children, ...props }: ComponentPr
|
|
|
308
308
|
declare function CardModuleButton({ className, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
309
309
|
declare function CardModuleAction({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
|
-
declare const checkboxVariants: (props?: ({
|
|
312
|
-
variant?: "regular" | null | undefined;
|
|
313
|
-
size?: "sm" | "md" | "lg" | null | undefined;
|
|
314
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
315
|
-
interface CheckboxProps extends ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
|
316
|
-
uncheckIcon?: boolean;
|
|
317
|
-
}
|
|
318
|
-
declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
319
|
-
|
|
320
311
|
type AnimationType = "accordion" | "fade";
|
|
321
312
|
interface CollapsibleContentProps extends ComponentProps<typeof Collapsible$1.Content> {
|
|
322
313
|
className?: string;
|
|
@@ -328,6 +319,94 @@ declare function Collapsible({ animation, ...props }: CollapsibleProps): react_j
|
|
|
328
319
|
declare function CollapsibleTrigger({ ...props }: ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
329
320
|
declare function CollapsibleContent({ className, ...props }: CollapsibleContentProps): react_jsx_runtime.JSX.Element;
|
|
330
321
|
|
|
322
|
+
type CardTopicVariant = "default" | "blocked";
|
|
323
|
+
type CardTopicProps = (CollapsibleProps & {
|
|
324
|
+
variant?: "default";
|
|
325
|
+
availableDate?: never;
|
|
326
|
+
}) | (CollapsibleProps & {
|
|
327
|
+
variant: "blocked";
|
|
328
|
+
availableDate: string;
|
|
329
|
+
});
|
|
330
|
+
interface CardTopicProgressProps extends ComponentProps<"div"> {
|
|
331
|
+
progress?: number;
|
|
332
|
+
}
|
|
333
|
+
declare function CardTopic({ className, variant, availableDate, children, ...props }: CardTopicProps): react_jsx_runtime.JSX.Element;
|
|
334
|
+
declare function CardTopicTrigger({ className, children, ...props }: ComponentProps<typeof CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
335
|
+
declare function CardTopicColumn({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare function CardTopicNumber({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
337
|
+
declare function CardTopicTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
338
|
+
declare function CardTopicProgress({ className, progress, ...props }: CardTopicProgressProps): react_jsx_runtime.JSX.Element | null;
|
|
339
|
+
declare function CardTopicCount({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
340
|
+
declare function CardTopicContent({ className, ...props }: ComponentProps<typeof CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
341
|
+
|
|
342
|
+
interface CardContinueImageProps extends ComponentProps<"div"> {
|
|
343
|
+
src?: string;
|
|
344
|
+
alt?: string;
|
|
345
|
+
}
|
|
346
|
+
declare function CardContinue({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
347
|
+
declare function CardContinueImage({ className, src, alt, children, ...props }: CardContinueImageProps): react_jsx_runtime.JSX.Element;
|
|
348
|
+
declare function CardContinueContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
349
|
+
declare function CardContinueHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
350
|
+
interface CardContinueBreadcrumbProps {
|
|
351
|
+
items: string[];
|
|
352
|
+
className?: string;
|
|
353
|
+
}
|
|
354
|
+
declare function CardContinueBreadcrumb({ items, className, }: CardContinueBreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
355
|
+
declare function CardContinueTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
356
|
+
declare function CardContinueButton({ className, children, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
357
|
+
|
|
358
|
+
interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
|
|
359
|
+
asChild?: boolean;
|
|
360
|
+
icon?: ReactElement;
|
|
361
|
+
}
|
|
362
|
+
declare const tagVariants: (props?: ({
|
|
363
|
+
variant?: "regular" | "emphasis" | "success" | "warning" | "error" | "go" | "regular-soft" | "regular-basic" | "emphasis-soft" | "emphasis-basic" | "error-soft" | "error-basic" | "warning-soft" | "warning-basic" | "success-soft" | "success-basic" | "gray" | "gray-soft" | "gray-basic" | "cm" | "cm-soft" | "cm-basic" | "go-soft" | "go-basic" | "cir" | "cir-soft" | "cir-basic" | "ped" | "ped-soft" | "ped-basic" | "prev" | "prev-soft" | "prev-basic" | "ia" | "ia-soft" | "ia-basic" | null | undefined;
|
|
364
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
365
|
+
declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
|
|
366
|
+
|
|
367
|
+
type CardLessonVariant = "default" | "blocked";
|
|
368
|
+
type CardLessonOrientation = "vertical" | "horizontal";
|
|
369
|
+
type CardLessonStatusType = "completed" | "started";
|
|
370
|
+
type CardLessonProps = (ComponentProps<"div"> & {
|
|
371
|
+
variant?: "default";
|
|
372
|
+
availableDate?: never;
|
|
373
|
+
orientation?: CardLessonOrientation;
|
|
374
|
+
}) | (ComponentProps<"div"> & {
|
|
375
|
+
variant: "blocked";
|
|
376
|
+
availableDate: string;
|
|
377
|
+
orientation?: CardLessonOrientation;
|
|
378
|
+
});
|
|
379
|
+
interface CardLessonImageProps extends ComponentProps<"div"> {
|
|
380
|
+
src?: string;
|
|
381
|
+
alt?: string;
|
|
382
|
+
}
|
|
383
|
+
interface CardLessonStatusProps extends Omit<ComponentProps<typeof Tag>, "variant" | "icon"> {
|
|
384
|
+
status: CardLessonStatusType;
|
|
385
|
+
}
|
|
386
|
+
declare const cardLessonVariants: (props?: ({
|
|
387
|
+
variant?: "default" | "blocked" | null | undefined;
|
|
388
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
389
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
390
|
+
declare function CardLesson({ className, variant, availableDate, orientation, children, ...props }: CardLessonProps): react_jsx_runtime.JSX.Element;
|
|
391
|
+
declare function CardLessonImage({ className, src, alt, children, ...props }: CardLessonImageProps): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare function CardLessonContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
393
|
+
declare function CardLessonHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
394
|
+
declare function CardLessonLabel({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
395
|
+
declare function CardLessonTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
396
|
+
declare function CardLessonDuration({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
397
|
+
declare function CardLessonFooter({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
398
|
+
declare function CardLessonStatus({ className, status, ...props }: CardLessonStatusProps): react_jsx_runtime.JSX.Element;
|
|
399
|
+
declare function CardLessonButton({ className, children, containerClassName, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
400
|
+
|
|
401
|
+
declare const checkboxVariants: (props?: ({
|
|
402
|
+
variant?: "regular" | null | undefined;
|
|
403
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
404
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
405
|
+
interface CheckboxProps extends ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
|
406
|
+
uncheckIcon?: boolean;
|
|
407
|
+
}
|
|
408
|
+
declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
409
|
+
|
|
331
410
|
declare function DropdownMenu({ ...props }: ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
332
411
|
declare function DropdownMenuPortal({ ...props }: ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
333
412
|
declare function DropdownMenuTrigger({ ...props }: ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -869,15 +948,6 @@ declare function TabsList({ className, children, ...props }: TabsListProps): rea
|
|
|
869
948
|
declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
870
949
|
declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
871
950
|
|
|
872
|
-
interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
|
|
873
|
-
asChild?: boolean;
|
|
874
|
-
icon?: ReactElement;
|
|
875
|
-
}
|
|
876
|
-
declare const tagVariants: (props?: ({
|
|
877
|
-
variant?: "regular" | "emphasis" | "success" | "warning" | "error" | "go" | "regular-soft" | "regular-basic" | "emphasis-soft" | "emphasis-basic" | "error-soft" | "error-basic" | "warning-soft" | "warning-basic" | "success-soft" | "success-basic" | "gray" | "gray-soft" | "gray-basic" | "cm" | "cm-soft" | "cm-basic" | "go-soft" | "go-basic" | "cir" | "cir-soft" | "cir-basic" | "ped" | "ped-soft" | "ped-basic" | "prev" | "prev-soft" | "prev-basic" | "ia" | "ia-soft" | "ia-basic" | null | undefined;
|
|
878
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
879
|
-
declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
|
|
880
|
-
|
|
881
951
|
declare const tileVariants: (props?: ({
|
|
882
952
|
variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
|
|
883
953
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -937,4 +1007,4 @@ declare function useToast(): {
|
|
|
937
1007
|
|
|
938
1008
|
declare function useIsMobile(): boolean;
|
|
939
1009
|
|
|
940
|
-
export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Autocomplete, AutocompleteContent, AutocompleteContentFooter, type AutocompleteContentFooterProps, type AutocompleteContentProps, type AutocompleteContextValue, AutocompleteGroup, AutocompleteItem, type AutocompleteItemProps, type AutocompleteProps, AutocompleteText, AutocompleteTrigger, type AutocompleteTriggerProps, AutocompleteWrapper, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeAnimation, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardModule, CardModuleAction, CardModuleButton, CardModuleFooter, CardModuleHeader, CardModuleLabel, type CardModuleLabelProps, CardModuleProgress, type CardModuleProgressProps, type CardModuleProps, CardModuleTitle, type CardModuleVariant, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, DatePicker, DatePickerLabel, type DatePickerLabelProps, type DatePickerProps, DatePickerText, type DatePickerValue, DatePickerWrapper, DateRangePicker, type DateRangePickerProps, type DateRangeValue, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, InputAdornment, InputEndIcon, InputField, InputLabel, type InputLabelProps, InputNumeric, type InputNumericProps, InputPassword, type InputPasswordProps, type InputProps, InputStartIcon, InputText, type InputTextProps, type InputType, InputWrapper, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, type PerformanceData, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, type ProgressStatusKey, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingBody, RankingButton, type RankingButtonProps, RankingHeader, RankingHeaderCell, type RankingHeaderCellProps, type RankingHeaderProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPerformance, type RankingPerformanceProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingQuestions, type RankingQuestionsProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, Rating, RatingButtonVariants, RatingLabelVariants, type RatingProps, type RatingSize, type RatingStarState, RatingStarVariants, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Select, SelectContent, SelectGroup, SelectHeader, SelectItem, type SelectItemProps, SelectLabel, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectText, SelectTrigger, SelectValue, SelectWrapper, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, applyInputIconSize, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, cardModuleStatusVariants, cardModuleVariants, checkboxVariants, datePickerTriggerVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, toastVariants, useIsMobile, useSidebar, useTabsContext, useToast };
|
|
1010
|
+
export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Autocomplete, AutocompleteContent, AutocompleteContentFooter, type AutocompleteContentFooterProps, type AutocompleteContentProps, type AutocompleteContextValue, AutocompleteGroup, AutocompleteItem, type AutocompleteItemProps, type AutocompleteProps, AutocompleteText, AutocompleteTrigger, type AutocompleteTriggerProps, AutocompleteWrapper, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeAnimation, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardContinue, CardContinueBreadcrumb, type CardContinueBreadcrumbProps, CardContinueButton, CardContinueContent, CardContinueHeader, CardContinueImage, type CardContinueImageProps, CardContinueTitle, CardLesson, CardLessonButton, CardLessonContent, CardLessonDuration, CardLessonFooter, CardLessonHeader, CardLessonImage, type CardLessonImageProps, CardLessonLabel, type CardLessonOrientation, type CardLessonProps, CardLessonStatus, type CardLessonStatusProps, type CardLessonStatusType, CardLessonTitle, type CardLessonVariant, CardModule, CardModuleAction, CardModuleButton, CardModuleFooter, CardModuleHeader, CardModuleLabel, type CardModuleLabelProps, CardModuleProgress, type CardModuleProgressProps, type CardModuleProps, CardModuleTitle, type CardModuleVariant, CardTopic, CardTopicColumn, CardTopicContent, CardTopicCount, CardTopicNumber, CardTopicProgress, type CardTopicProgressProps, type CardTopicProps, CardTopicTitle, CardTopicTrigger, type CardTopicVariant, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, DatePicker, DatePickerLabel, type DatePickerLabelProps, type DatePickerProps, DatePickerText, type DatePickerValue, DatePickerWrapper, DateRangePicker, type DateRangePickerProps, type DateRangeValue, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, InputAdornment, InputEndIcon, InputField, InputLabel, type InputLabelProps, InputNumeric, type InputNumericProps, InputPassword, type InputPasswordProps, type InputProps, InputStartIcon, InputText, type InputTextProps, type InputType, InputWrapper, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, type PerformanceData, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, type ProgressStatusKey, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingBody, RankingButton, type RankingButtonProps, RankingHeader, RankingHeaderCell, type RankingHeaderCellProps, type RankingHeaderProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPerformance, type RankingPerformanceProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingQuestions, type RankingQuestionsProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, Rating, RatingButtonVariants, RatingLabelVariants, type RatingProps, type RatingSize, type RatingStarState, RatingStarVariants, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Select, SelectContent, SelectGroup, SelectHeader, SelectItem, type SelectItemProps, SelectLabel, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectText, SelectTrigger, SelectValue, SelectWrapper, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, applyInputIconSize, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, cardLessonVariants, cardModuleStatusVariants, cardModuleVariants, checkboxVariants, datePickerTriggerVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, toastVariants, useIsMobile, useSidebar, useTabsContext, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ComponentProps, ReactNode, HTMLAttributes, ButtonHTMLAttributes, ReactElement, ComponentPropsWithoutRef, ChangeEvent, TableHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Avatar as Avatar$1, Progress as Progress$1,
|
|
6
|
+
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Avatar as Avatar$1, Progress as Progress$1, Collapsible as Collapsible$1, Checkbox as Checkbox$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1, Switch as Switch$1, Toast as Toast$2 } from 'radix-ui';
|
|
7
7
|
|
|
8
8
|
interface AlertProps extends ComponentProps<"div"> {
|
|
9
9
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error";
|
|
@@ -308,15 +308,6 @@ declare function CardModuleFooter({ className, children, ...props }: ComponentPr
|
|
|
308
308
|
declare function CardModuleButton({ className, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
309
309
|
declare function CardModuleAction({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
|
-
declare const checkboxVariants: (props?: ({
|
|
312
|
-
variant?: "regular" | null | undefined;
|
|
313
|
-
size?: "sm" | "md" | "lg" | null | undefined;
|
|
314
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
315
|
-
interface CheckboxProps extends ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
|
316
|
-
uncheckIcon?: boolean;
|
|
317
|
-
}
|
|
318
|
-
declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
319
|
-
|
|
320
311
|
type AnimationType = "accordion" | "fade";
|
|
321
312
|
interface CollapsibleContentProps extends ComponentProps<typeof Collapsible$1.Content> {
|
|
322
313
|
className?: string;
|
|
@@ -328,6 +319,94 @@ declare function Collapsible({ animation, ...props }: CollapsibleProps): react_j
|
|
|
328
319
|
declare function CollapsibleTrigger({ ...props }: ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
329
320
|
declare function CollapsibleContent({ className, ...props }: CollapsibleContentProps): react_jsx_runtime.JSX.Element;
|
|
330
321
|
|
|
322
|
+
type CardTopicVariant = "default" | "blocked";
|
|
323
|
+
type CardTopicProps = (CollapsibleProps & {
|
|
324
|
+
variant?: "default";
|
|
325
|
+
availableDate?: never;
|
|
326
|
+
}) | (CollapsibleProps & {
|
|
327
|
+
variant: "blocked";
|
|
328
|
+
availableDate: string;
|
|
329
|
+
});
|
|
330
|
+
interface CardTopicProgressProps extends ComponentProps<"div"> {
|
|
331
|
+
progress?: number;
|
|
332
|
+
}
|
|
333
|
+
declare function CardTopic({ className, variant, availableDate, children, ...props }: CardTopicProps): react_jsx_runtime.JSX.Element;
|
|
334
|
+
declare function CardTopicTrigger({ className, children, ...props }: ComponentProps<typeof CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
335
|
+
declare function CardTopicColumn({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare function CardTopicNumber({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
337
|
+
declare function CardTopicTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
338
|
+
declare function CardTopicProgress({ className, progress, ...props }: CardTopicProgressProps): react_jsx_runtime.JSX.Element | null;
|
|
339
|
+
declare function CardTopicCount({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
340
|
+
declare function CardTopicContent({ className, ...props }: ComponentProps<typeof CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
341
|
+
|
|
342
|
+
interface CardContinueImageProps extends ComponentProps<"div"> {
|
|
343
|
+
src?: string;
|
|
344
|
+
alt?: string;
|
|
345
|
+
}
|
|
346
|
+
declare function CardContinue({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
347
|
+
declare function CardContinueImage({ className, src, alt, children, ...props }: CardContinueImageProps): react_jsx_runtime.JSX.Element;
|
|
348
|
+
declare function CardContinueContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
349
|
+
declare function CardContinueHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
350
|
+
interface CardContinueBreadcrumbProps {
|
|
351
|
+
items: string[];
|
|
352
|
+
className?: string;
|
|
353
|
+
}
|
|
354
|
+
declare function CardContinueBreadcrumb({ items, className, }: CardContinueBreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
355
|
+
declare function CardContinueTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
356
|
+
declare function CardContinueButton({ className, children, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
357
|
+
|
|
358
|
+
interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
|
|
359
|
+
asChild?: boolean;
|
|
360
|
+
icon?: ReactElement;
|
|
361
|
+
}
|
|
362
|
+
declare const tagVariants: (props?: ({
|
|
363
|
+
variant?: "regular" | "emphasis" | "success" | "warning" | "error" | "go" | "regular-soft" | "regular-basic" | "emphasis-soft" | "emphasis-basic" | "error-soft" | "error-basic" | "warning-soft" | "warning-basic" | "success-soft" | "success-basic" | "gray" | "gray-soft" | "gray-basic" | "cm" | "cm-soft" | "cm-basic" | "go-soft" | "go-basic" | "cir" | "cir-soft" | "cir-basic" | "ped" | "ped-soft" | "ped-basic" | "prev" | "prev-soft" | "prev-basic" | "ia" | "ia-soft" | "ia-basic" | null | undefined;
|
|
364
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
365
|
+
declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
|
|
366
|
+
|
|
367
|
+
type CardLessonVariant = "default" | "blocked";
|
|
368
|
+
type CardLessonOrientation = "vertical" | "horizontal";
|
|
369
|
+
type CardLessonStatusType = "completed" | "started";
|
|
370
|
+
type CardLessonProps = (ComponentProps<"div"> & {
|
|
371
|
+
variant?: "default";
|
|
372
|
+
availableDate?: never;
|
|
373
|
+
orientation?: CardLessonOrientation;
|
|
374
|
+
}) | (ComponentProps<"div"> & {
|
|
375
|
+
variant: "blocked";
|
|
376
|
+
availableDate: string;
|
|
377
|
+
orientation?: CardLessonOrientation;
|
|
378
|
+
});
|
|
379
|
+
interface CardLessonImageProps extends ComponentProps<"div"> {
|
|
380
|
+
src?: string;
|
|
381
|
+
alt?: string;
|
|
382
|
+
}
|
|
383
|
+
interface CardLessonStatusProps extends Omit<ComponentProps<typeof Tag>, "variant" | "icon"> {
|
|
384
|
+
status: CardLessonStatusType;
|
|
385
|
+
}
|
|
386
|
+
declare const cardLessonVariants: (props?: ({
|
|
387
|
+
variant?: "default" | "blocked" | null | undefined;
|
|
388
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
389
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
390
|
+
declare function CardLesson({ className, variant, availableDate, orientation, children, ...props }: CardLessonProps): react_jsx_runtime.JSX.Element;
|
|
391
|
+
declare function CardLessonImage({ className, src, alt, children, ...props }: CardLessonImageProps): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare function CardLessonContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
393
|
+
declare function CardLessonHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
394
|
+
declare function CardLessonLabel({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
395
|
+
declare function CardLessonTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
396
|
+
declare function CardLessonDuration({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
397
|
+
declare function CardLessonFooter({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
398
|
+
declare function CardLessonStatus({ className, status, ...props }: CardLessonStatusProps): react_jsx_runtime.JSX.Element;
|
|
399
|
+
declare function CardLessonButton({ className, children, containerClassName, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
400
|
+
|
|
401
|
+
declare const checkboxVariants: (props?: ({
|
|
402
|
+
variant?: "regular" | null | undefined;
|
|
403
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
404
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
405
|
+
interface CheckboxProps extends ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
|
406
|
+
uncheckIcon?: boolean;
|
|
407
|
+
}
|
|
408
|
+
declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
409
|
+
|
|
331
410
|
declare function DropdownMenu({ ...props }: ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
332
411
|
declare function DropdownMenuPortal({ ...props }: ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
333
412
|
declare function DropdownMenuTrigger({ ...props }: ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -869,15 +948,6 @@ declare function TabsList({ className, children, ...props }: TabsListProps): rea
|
|
|
869
948
|
declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
870
949
|
declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
871
950
|
|
|
872
|
-
interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
|
|
873
|
-
asChild?: boolean;
|
|
874
|
-
icon?: ReactElement;
|
|
875
|
-
}
|
|
876
|
-
declare const tagVariants: (props?: ({
|
|
877
|
-
variant?: "regular" | "emphasis" | "success" | "warning" | "error" | "go" | "regular-soft" | "regular-basic" | "emphasis-soft" | "emphasis-basic" | "error-soft" | "error-basic" | "warning-soft" | "warning-basic" | "success-soft" | "success-basic" | "gray" | "gray-soft" | "gray-basic" | "cm" | "cm-soft" | "cm-basic" | "go-soft" | "go-basic" | "cir" | "cir-soft" | "cir-basic" | "ped" | "ped-soft" | "ped-basic" | "prev" | "prev-soft" | "prev-basic" | "ia" | "ia-soft" | "ia-basic" | null | undefined;
|
|
878
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
879
|
-
declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
|
|
880
|
-
|
|
881
951
|
declare const tileVariants: (props?: ({
|
|
882
952
|
variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
|
|
883
953
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -937,4 +1007,4 @@ declare function useToast(): {
|
|
|
937
1007
|
|
|
938
1008
|
declare function useIsMobile(): boolean;
|
|
939
1009
|
|
|
940
|
-
export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Autocomplete, AutocompleteContent, AutocompleteContentFooter, type AutocompleteContentFooterProps, type AutocompleteContentProps, type AutocompleteContextValue, AutocompleteGroup, AutocompleteItem, type AutocompleteItemProps, type AutocompleteProps, AutocompleteText, AutocompleteTrigger, type AutocompleteTriggerProps, AutocompleteWrapper, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeAnimation, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardModule, CardModuleAction, CardModuleButton, CardModuleFooter, CardModuleHeader, CardModuleLabel, type CardModuleLabelProps, CardModuleProgress, type CardModuleProgressProps, type CardModuleProps, CardModuleTitle, type CardModuleVariant, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, DatePicker, DatePickerLabel, type DatePickerLabelProps, type DatePickerProps, DatePickerText, type DatePickerValue, DatePickerWrapper, DateRangePicker, type DateRangePickerProps, type DateRangeValue, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, InputAdornment, InputEndIcon, InputField, InputLabel, type InputLabelProps, InputNumeric, type InputNumericProps, InputPassword, type InputPasswordProps, type InputProps, InputStartIcon, InputText, type InputTextProps, type InputType, InputWrapper, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, type PerformanceData, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, type ProgressStatusKey, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingBody, RankingButton, type RankingButtonProps, RankingHeader, RankingHeaderCell, type RankingHeaderCellProps, type RankingHeaderProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPerformance, type RankingPerformanceProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingQuestions, type RankingQuestionsProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, Rating, RatingButtonVariants, RatingLabelVariants, type RatingProps, type RatingSize, type RatingStarState, RatingStarVariants, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Select, SelectContent, SelectGroup, SelectHeader, SelectItem, type SelectItemProps, SelectLabel, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectText, SelectTrigger, SelectValue, SelectWrapper, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, applyInputIconSize, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, cardModuleStatusVariants, cardModuleVariants, checkboxVariants, datePickerTriggerVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, toastVariants, useIsMobile, useSidebar, useTabsContext, useToast };
|
|
1010
|
+
export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Autocomplete, AutocompleteContent, AutocompleteContentFooter, type AutocompleteContentFooterProps, type AutocompleteContentProps, type AutocompleteContextValue, AutocompleteGroup, AutocompleteItem, type AutocompleteItemProps, type AutocompleteProps, AutocompleteText, AutocompleteTrigger, type AutocompleteTriggerProps, AutocompleteWrapper, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeAnimation, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardContinue, CardContinueBreadcrumb, type CardContinueBreadcrumbProps, CardContinueButton, CardContinueContent, CardContinueHeader, CardContinueImage, type CardContinueImageProps, CardContinueTitle, CardLesson, CardLessonButton, CardLessonContent, CardLessonDuration, CardLessonFooter, CardLessonHeader, CardLessonImage, type CardLessonImageProps, CardLessonLabel, type CardLessonOrientation, type CardLessonProps, CardLessonStatus, type CardLessonStatusProps, type CardLessonStatusType, CardLessonTitle, type CardLessonVariant, CardModule, CardModuleAction, CardModuleButton, CardModuleFooter, CardModuleHeader, CardModuleLabel, type CardModuleLabelProps, CardModuleProgress, type CardModuleProgressProps, type CardModuleProps, CardModuleTitle, type CardModuleVariant, CardTopic, CardTopicColumn, CardTopicContent, CardTopicCount, CardTopicNumber, CardTopicProgress, type CardTopicProgressProps, type CardTopicProps, CardTopicTitle, CardTopicTrigger, type CardTopicVariant, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, DatePicker, DatePickerLabel, type DatePickerLabelProps, type DatePickerProps, DatePickerText, type DatePickerValue, DatePickerWrapper, DateRangePicker, type DateRangePickerProps, type DateRangeValue, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, InputAdornment, InputEndIcon, InputField, InputLabel, type InputLabelProps, InputNumeric, type InputNumericProps, InputPassword, type InputPasswordProps, type InputProps, InputStartIcon, InputText, type InputTextProps, type InputType, InputWrapper, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, type PerformanceData, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, type ProgressStatusKey, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingBody, RankingButton, type RankingButtonProps, RankingHeader, RankingHeaderCell, type RankingHeaderCellProps, type RankingHeaderProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPerformance, type RankingPerformanceProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingQuestions, type RankingQuestionsProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, Rating, RatingButtonVariants, RatingLabelVariants, type RatingProps, type RatingSize, type RatingStarState, RatingStarVariants, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Select, SelectContent, SelectGroup, SelectHeader, SelectItem, type SelectItemProps, SelectLabel, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectText, SelectTrigger, SelectValue, SelectWrapper, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, applyInputIconSize, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, cardLessonVariants, cardModuleStatusVariants, cardModuleVariants, checkboxVariants, datePickerTriggerVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, toastVariants, useIsMobile, useSidebar, useTabsContext, useToast };
|