@medway-ui/core 1.16.16 → 1.17.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 CHANGED
@@ -281,6 +281,87 @@ declare function CardWeekText({ className, children, isTime, ...props }: CardWee
281
281
  declare function CardWeekStatus({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
282
282
  declare function CardWeekActions({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
283
283
 
284
+ type CardModuleVariant = "default" | "blocked";
285
+ interface CardModuleLabelProps extends ComponentProps<"div"> {
286
+ count?: number | string;
287
+ }
288
+ type CardModuleProps = (ComponentProps<"div"> & {
289
+ variant?: "default";
290
+ availableDate?: never;
291
+ }) | (ComponentProps<"div"> & {
292
+ variant: "blocked";
293
+ availableDate: string;
294
+ });
295
+ declare const cardModuleVariants: (props?: ({
296
+ variant?: "default" | "blocked" | null | undefined;
297
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
298
+ declare const cardModuleStatusVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
299
+ declare function CardModule({ className, variant, availableDate, ...props }: CardModuleProps): react_jsx_runtime.JSX.Element;
300
+ declare function CardModuleHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
301
+ declare function CardModuleLabel({ className, children, count, ...props }: CardModuleLabelProps): react_jsx_runtime.JSX.Element;
302
+ declare function CardModuleTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
303
+ interface CardModuleProgressProps extends ComponentProps<"div"> {
304
+ progress?: number;
305
+ }
306
+ declare function CardModuleProgress({ className, progress, ...props }: CardModuleProgressProps): react_jsx_runtime.JSX.Element;
307
+ declare function CardModuleFooter({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
308
+ declare function CardModuleButton({ className, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
309
+ declare function CardModuleAction({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
310
+
311
+ interface CardContinueImageProps extends ComponentProps<"div"> {
312
+ src?: string;
313
+ alt?: string;
314
+ }
315
+ declare function CardContinue({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
316
+ declare function CardContinueImage({ className, src, alt, children, ...props }: CardContinueImageProps): react_jsx_runtime.JSX.Element;
317
+ declare function CardContinueContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
318
+ declare function CardContinueHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
319
+ interface CardContinueBreadcrumbProps {
320
+ items: string[];
321
+ className?: string;
322
+ }
323
+ declare function CardContinueBreadcrumb({ items, className, }: CardContinueBreadcrumbProps): react_jsx_runtime.JSX.Element;
324
+ declare function CardContinueTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
325
+ declare function CardContinueButton({ className, children, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
326
+
327
+ interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
328
+ asChild?: boolean;
329
+ icon?: ReactElement;
330
+ }
331
+ declare const tagVariants: (props?: ({
332
+ 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;
333
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
334
+ declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
335
+
336
+ type CardLessonVariant = "default" | "blocked";
337
+ type CardLessonStatusType = "completed" | "started";
338
+ type CardLessonProps = (ComponentProps<"div"> & {
339
+ variant?: "default";
340
+ availableDate?: never;
341
+ }) | (ComponentProps<"div"> & {
342
+ variant: "blocked";
343
+ availableDate: string;
344
+ });
345
+ interface CardLessonImageProps extends ComponentProps<"div"> {
346
+ src?: string;
347
+ alt?: string;
348
+ }
349
+ interface CardLessonStatusProps extends Omit<ComponentProps<typeof Tag>, "variant" | "icon"> {
350
+ status: CardLessonStatusType;
351
+ }
352
+ declare const cardLessonVariants: (props?: ({
353
+ variant?: "default" | "blocked" | null | undefined;
354
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
355
+ declare function CardLesson({ className, variant, availableDate, children, ...props }: CardLessonProps): react_jsx_runtime.JSX.Element;
356
+ declare function CardLessonImage({ className, src, alt, children, ...props }: CardLessonImageProps): react_jsx_runtime.JSX.Element;
357
+ declare function CardLessonContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
358
+ declare function CardLessonHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
359
+ declare function CardLessonLabel({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
360
+ declare function CardLessonTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
361
+ declare function CardLessonFooter({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
362
+ declare function CardLessonStatus({ className, status, ...props }: CardLessonStatusProps): react_jsx_runtime.JSX.Element;
363
+ declare function CardLessonButton({ className, children, containerClassName, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
364
+
284
365
  declare const checkboxVariants: (props?: ({
285
366
  variant?: "regular" | null | undefined;
286
367
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -842,15 +923,6 @@ declare function TabsList({ className, children, ...props }: TabsListProps): rea
842
923
  declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
843
924
  declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
844
925
 
845
- interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
846
- asChild?: boolean;
847
- icon?: ReactElement;
848
- }
849
- declare const tagVariants: (props?: ({
850
- 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;
851
- } & class_variance_authority_types.ClassProp) | undefined) => string;
852
- declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
853
-
854
926
  declare const tileVariants: (props?: ({
855
927
  variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
856
928
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -910,4 +982,4 @@ declare function useToast(): {
910
982
 
911
983
  declare function useIsMobile(): boolean;
912
984
 
913
- 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, 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, checkboxVariants, datePickerTriggerVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, toastVariants, useIsMobile, useSidebar, useTabsContext, useToast };
985
+ 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, CardLessonFooter, CardLessonHeader, CardLessonImage, type CardLessonImageProps, CardLessonLabel, 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, 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
@@ -281,6 +281,87 @@ declare function CardWeekText({ className, children, isTime, ...props }: CardWee
281
281
  declare function CardWeekStatus({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
282
282
  declare function CardWeekActions({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
283
283
 
284
+ type CardModuleVariant = "default" | "blocked";
285
+ interface CardModuleLabelProps extends ComponentProps<"div"> {
286
+ count?: number | string;
287
+ }
288
+ type CardModuleProps = (ComponentProps<"div"> & {
289
+ variant?: "default";
290
+ availableDate?: never;
291
+ }) | (ComponentProps<"div"> & {
292
+ variant: "blocked";
293
+ availableDate: string;
294
+ });
295
+ declare const cardModuleVariants: (props?: ({
296
+ variant?: "default" | "blocked" | null | undefined;
297
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
298
+ declare const cardModuleStatusVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
299
+ declare function CardModule({ className, variant, availableDate, ...props }: CardModuleProps): react_jsx_runtime.JSX.Element;
300
+ declare function CardModuleHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
301
+ declare function CardModuleLabel({ className, children, count, ...props }: CardModuleLabelProps): react_jsx_runtime.JSX.Element;
302
+ declare function CardModuleTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
303
+ interface CardModuleProgressProps extends ComponentProps<"div"> {
304
+ progress?: number;
305
+ }
306
+ declare function CardModuleProgress({ className, progress, ...props }: CardModuleProgressProps): react_jsx_runtime.JSX.Element;
307
+ declare function CardModuleFooter({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
308
+ declare function CardModuleButton({ className, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
309
+ declare function CardModuleAction({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
310
+
311
+ interface CardContinueImageProps extends ComponentProps<"div"> {
312
+ src?: string;
313
+ alt?: string;
314
+ }
315
+ declare function CardContinue({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
316
+ declare function CardContinueImage({ className, src, alt, children, ...props }: CardContinueImageProps): react_jsx_runtime.JSX.Element;
317
+ declare function CardContinueContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
318
+ declare function CardContinueHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
319
+ interface CardContinueBreadcrumbProps {
320
+ items: string[];
321
+ className?: string;
322
+ }
323
+ declare function CardContinueBreadcrumb({ items, className, }: CardContinueBreadcrumbProps): react_jsx_runtime.JSX.Element;
324
+ declare function CardContinueTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
325
+ declare function CardContinueButton({ className, children, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
326
+
327
+ interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
328
+ asChild?: boolean;
329
+ icon?: ReactElement;
330
+ }
331
+ declare const tagVariants: (props?: ({
332
+ 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;
333
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
334
+ declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
335
+
336
+ type CardLessonVariant = "default" | "blocked";
337
+ type CardLessonStatusType = "completed" | "started";
338
+ type CardLessonProps = (ComponentProps<"div"> & {
339
+ variant?: "default";
340
+ availableDate?: never;
341
+ }) | (ComponentProps<"div"> & {
342
+ variant: "blocked";
343
+ availableDate: string;
344
+ });
345
+ interface CardLessonImageProps extends ComponentProps<"div"> {
346
+ src?: string;
347
+ alt?: string;
348
+ }
349
+ interface CardLessonStatusProps extends Omit<ComponentProps<typeof Tag>, "variant" | "icon"> {
350
+ status: CardLessonStatusType;
351
+ }
352
+ declare const cardLessonVariants: (props?: ({
353
+ variant?: "default" | "blocked" | null | undefined;
354
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
355
+ declare function CardLesson({ className, variant, availableDate, children, ...props }: CardLessonProps): react_jsx_runtime.JSX.Element;
356
+ declare function CardLessonImage({ className, src, alt, children, ...props }: CardLessonImageProps): react_jsx_runtime.JSX.Element;
357
+ declare function CardLessonContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
358
+ declare function CardLessonHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
359
+ declare function CardLessonLabel({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
360
+ declare function CardLessonTitle({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
361
+ declare function CardLessonFooter({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
362
+ declare function CardLessonStatus({ className, status, ...props }: CardLessonStatusProps): react_jsx_runtime.JSX.Element;
363
+ declare function CardLessonButton({ className, children, containerClassName, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
364
+
284
365
  declare const checkboxVariants: (props?: ({
285
366
  variant?: "regular" | null | undefined;
286
367
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -842,15 +923,6 @@ declare function TabsList({ className, children, ...props }: TabsListProps): rea
842
923
  declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
843
924
  declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
844
925
 
845
- interface TagProps extends ComponentProps<"span">, VariantProps<typeof tagVariants> {
846
- asChild?: boolean;
847
- icon?: ReactElement;
848
- }
849
- declare const tagVariants: (props?: ({
850
- 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;
851
- } & class_variance_authority_types.ClassProp) | undefined) => string;
852
- declare function Tag({ className, variant, asChild, icon, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
853
-
854
926
  declare const tileVariants: (props?: ({
855
927
  variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
856
928
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -910,4 +982,4 @@ declare function useToast(): {
910
982
 
911
983
  declare function useIsMobile(): boolean;
912
984
 
913
- 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, 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, checkboxVariants, datePickerTriggerVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, toastVariants, useIsMobile, useSidebar, useTabsContext, useToast };
985
+ 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, CardLessonFooter, CardLessonHeader, CardLessonImage, type CardLessonImageProps, CardLessonLabel, 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, 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 };