@medway-ui/core 1.16.17 → 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 +55 -10
- package/dist/index.d.ts +55 -10
- 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
|
@@ -308,6 +308,60 @@ 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
|
+
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
|
+
|
|
311
365
|
declare const checkboxVariants: (props?: ({
|
|
312
366
|
variant?: "regular" | null | undefined;
|
|
313
367
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
@@ -869,15 +923,6 @@ declare function TabsList({ className, children, ...props }: TabsListProps): rea
|
|
|
869
923
|
declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
870
924
|
declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
871
925
|
|
|
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
926
|
declare const tileVariants: (props?: ({
|
|
882
927
|
variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
|
|
883
928
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -937,4 +982,4 @@ declare function useToast(): {
|
|
|
937
982
|
|
|
938
983
|
declare function useIsMobile(): boolean;
|
|
939
984
|
|
|
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 };
|
|
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
|
@@ -308,6 +308,60 @@ 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
|
+
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
|
+
|
|
311
365
|
declare const checkboxVariants: (props?: ({
|
|
312
366
|
variant?: "regular" | null | undefined;
|
|
313
367
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
@@ -869,15 +923,6 @@ declare function TabsList({ className, children, ...props }: TabsListProps): rea
|
|
|
869
923
|
declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
870
924
|
declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
871
925
|
|
|
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
926
|
declare const tileVariants: (props?: ({
|
|
882
927
|
variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
|
|
883
928
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -937,4 +982,4 @@ declare function useToast(): {
|
|
|
937
982
|
|
|
938
983
|
declare function useIsMobile(): boolean;
|
|
939
984
|
|
|
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 };
|
|
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 };
|