@rufous/ui 0.3.53 → 0.3.55
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/main.cjs +301 -169
- package/dist/main.css +132 -0
- package/dist/main.d.cts +39 -1
- package/dist/main.d.ts +39 -1
- package/dist/main.js +1009 -885
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -6998,6 +6998,138 @@ pre {
|
|
|
6998
6998
|
border-color: #d32f2f;
|
|
6999
6999
|
}
|
|
7000
7000
|
|
|
7001
|
+
/* lib/styles/timeline.css */
|
|
7002
|
+
.rf-timeline {
|
|
7003
|
+
list-style: none;
|
|
7004
|
+
margin: 0;
|
|
7005
|
+
padding: 6px 16px;
|
|
7006
|
+
display: flex;
|
|
7007
|
+
flex-direction: column;
|
|
7008
|
+
}
|
|
7009
|
+
.rf-timeline-item {
|
|
7010
|
+
display: flex;
|
|
7011
|
+
position: relative;
|
|
7012
|
+
list-style: none;
|
|
7013
|
+
min-height: 70px;
|
|
7014
|
+
}
|
|
7015
|
+
.rf-timeline-item--right {
|
|
7016
|
+
flex-direction: row;
|
|
7017
|
+
}
|
|
7018
|
+
.rf-timeline-item--left {
|
|
7019
|
+
flex-direction: row-reverse;
|
|
7020
|
+
}
|
|
7021
|
+
.rf-timeline-item--no-opposite::before {
|
|
7022
|
+
content: "";
|
|
7023
|
+
flex: 1;
|
|
7024
|
+
padding: 6px 16px;
|
|
7025
|
+
}
|
|
7026
|
+
.rf-timeline-separator {
|
|
7027
|
+
display: flex;
|
|
7028
|
+
flex-direction: column;
|
|
7029
|
+
flex: 0;
|
|
7030
|
+
align-items: center;
|
|
7031
|
+
}
|
|
7032
|
+
.rf-timeline-dot {
|
|
7033
|
+
display: flex;
|
|
7034
|
+
align-items: center;
|
|
7035
|
+
justify-content: center;
|
|
7036
|
+
align-self: baseline;
|
|
7037
|
+
width: 12px;
|
|
7038
|
+
height: 12px;
|
|
7039
|
+
margin: 11.5px 0;
|
|
7040
|
+
border-radius: 50%;
|
|
7041
|
+
box-shadow:
|
|
7042
|
+
0 1px 1px -1px rgba(0, 0, 0, 0.2),
|
|
7043
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
|
7044
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
7045
|
+
box-sizing: border-box;
|
|
7046
|
+
flex-shrink: 0;
|
|
7047
|
+
}
|
|
7048
|
+
.rf-timeline-dot--has-content {
|
|
7049
|
+
width: 28px;
|
|
7050
|
+
height: 28px;
|
|
7051
|
+
padding: 4px;
|
|
7052
|
+
color: #fff;
|
|
7053
|
+
}
|
|
7054
|
+
.rf-timeline-dot--outlined {
|
|
7055
|
+
background-color: transparent;
|
|
7056
|
+
border-style: solid;
|
|
7057
|
+
border-width: 2px;
|
|
7058
|
+
box-shadow: none;
|
|
7059
|
+
}
|
|
7060
|
+
.rf-timeline-dot--filled.rf-timeline-dot--grey {
|
|
7061
|
+
background-color: #bdbdbd;
|
|
7062
|
+
}
|
|
7063
|
+
.rf-timeline-dot--filled.rf-timeline-dot--inherit {
|
|
7064
|
+
background-color: currentColor;
|
|
7065
|
+
}
|
|
7066
|
+
.rf-timeline-dot--filled.rf-timeline-dot--primary {
|
|
7067
|
+
background-color: var(--primary-color, #a81c08);
|
|
7068
|
+
}
|
|
7069
|
+
.rf-timeline-dot--filled.rf-timeline-dot--secondary {
|
|
7070
|
+
background-color: var(--secondary-color, #9c27b0);
|
|
7071
|
+
}
|
|
7072
|
+
.rf-timeline-dot--filled.rf-timeline-dot--success {
|
|
7073
|
+
background-color: #2e7d32;
|
|
7074
|
+
}
|
|
7075
|
+
.rf-timeline-dot--filled.rf-timeline-dot--error {
|
|
7076
|
+
background-color: #d32f2f;
|
|
7077
|
+
}
|
|
7078
|
+
.rf-timeline-dot--filled.rf-timeline-dot--info {
|
|
7079
|
+
background-color: #0288d1;
|
|
7080
|
+
}
|
|
7081
|
+
.rf-timeline-dot--filled.rf-timeline-dot--warning {
|
|
7082
|
+
background-color: #ed6c02;
|
|
7083
|
+
}
|
|
7084
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--grey {
|
|
7085
|
+
border-color: #bdbdbd;
|
|
7086
|
+
color: #bdbdbd;
|
|
7087
|
+
}
|
|
7088
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--inherit {
|
|
7089
|
+
border-color: currentColor;
|
|
7090
|
+
}
|
|
7091
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--primary {
|
|
7092
|
+
border-color: var(--primary-color, #a81c08);
|
|
7093
|
+
color: var(--primary-color, #a81c08);
|
|
7094
|
+
}
|
|
7095
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--secondary {
|
|
7096
|
+
border-color: var(--secondary-color, #9c27b0);
|
|
7097
|
+
color: var(--secondary-color, #9c27b0);
|
|
7098
|
+
}
|
|
7099
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--success {
|
|
7100
|
+
border-color: #2e7d32;
|
|
7101
|
+
color: #2e7d32;
|
|
7102
|
+
}
|
|
7103
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--error {
|
|
7104
|
+
border-color: #d32f2f;
|
|
7105
|
+
color: #d32f2f;
|
|
7106
|
+
}
|
|
7107
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--info {
|
|
7108
|
+
border-color: #0288d1;
|
|
7109
|
+
color: #0288d1;
|
|
7110
|
+
}
|
|
7111
|
+
.rf-timeline-dot--outlined.rf-timeline-dot--warning {
|
|
7112
|
+
border-color: #ed6c02;
|
|
7113
|
+
color: #ed6c02;
|
|
7114
|
+
}
|
|
7115
|
+
.rf-timeline-connector {
|
|
7116
|
+
width: 2px;
|
|
7117
|
+
flex-grow: 1;
|
|
7118
|
+
background-color: #bdbdbd;
|
|
7119
|
+
}
|
|
7120
|
+
.rf-timeline-content,
|
|
7121
|
+
.rf-timeline-opposite-content {
|
|
7122
|
+
flex: 1;
|
|
7123
|
+
padding: 6px 16px;
|
|
7124
|
+
text-align: left;
|
|
7125
|
+
}
|
|
7126
|
+
.rf-timeline-item--right .rf-timeline-opposite-content {
|
|
7127
|
+
text-align: right;
|
|
7128
|
+
}
|
|
7129
|
+
.rf-timeline-item--left .rf-timeline-content {
|
|
7130
|
+
text-align: right;
|
|
7131
|
+
}
|
|
7132
|
+
|
|
7001
7133
|
/* lib/styles/button.css */
|
|
7002
7134
|
.btn {
|
|
7003
7135
|
padding: 10px 20px;
|
package/dist/main.d.cts
CHANGED
|
@@ -765,6 +765,8 @@ declare const PlaceIcon: React.FC<MaterialIconProps>;
|
|
|
765
765
|
|
|
766
766
|
declare const PersonSearchIcon: React.FC<MaterialIconProps>;
|
|
767
767
|
|
|
768
|
+
declare const CheckBoxIcon: React.FC<MaterialIconProps>;
|
|
769
|
+
|
|
768
770
|
declare const AddIcon: React.FC<PlusIconProps>;
|
|
769
771
|
declare const RemoveIcon: React.FC<MinusIconProps>;
|
|
770
772
|
|
|
@@ -2415,6 +2417,42 @@ interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">
|
|
|
2415
2417
|
}
|
|
2416
2418
|
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
2417
2419
|
|
|
2420
|
+
type TimelinePosition = "right" | "left" | "alternate" | "alternate-reverse";
|
|
2421
|
+
type TimelineDotColor = "inherit" | "grey" | "primary" | "secondary" | "success" | "error" | "info" | "warning";
|
|
2422
|
+
type TimelineDotVariant = "filled" | "outlined";
|
|
2423
|
+
interface TimelineProps extends Omit<React.HTMLAttributes<HTMLUListElement>, "color"> {
|
|
2424
|
+
position?: TimelinePosition;
|
|
2425
|
+
sx?: SxProp;
|
|
2426
|
+
}
|
|
2427
|
+
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
|
|
2428
|
+
interface TimelineItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
|
|
2429
|
+
position?: "right" | "left";
|
|
2430
|
+
sx?: SxProp;
|
|
2431
|
+
}
|
|
2432
|
+
declare const TimelineItem: React.ForwardRefExoticComponent<TimelineItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
2433
|
+
interface TimelineSeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2434
|
+
sx?: SxProp;
|
|
2435
|
+
}
|
|
2436
|
+
declare const TimelineSeparator: React.ForwardRefExoticComponent<TimelineSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
2437
|
+
interface TimelineDotProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color"> {
|
|
2438
|
+
color?: TimelineDotColor;
|
|
2439
|
+
variant?: TimelineDotVariant;
|
|
2440
|
+
sx?: SxProp;
|
|
2441
|
+
}
|
|
2442
|
+
declare const TimelineDot: React.ForwardRefExoticComponent<TimelineDotProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2443
|
+
interface TimelineConnectorProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
2444
|
+
sx?: SxProp;
|
|
2445
|
+
}
|
|
2446
|
+
declare const TimelineConnector: React.ForwardRefExoticComponent<TimelineConnectorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2447
|
+
interface TimelineContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2448
|
+
sx?: SxProp;
|
|
2449
|
+
}
|
|
2450
|
+
declare const TimelineContent: React.ForwardRefExoticComponent<TimelineContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2451
|
+
interface TimelineOppositeContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2452
|
+
sx?: SxProp;
|
|
2453
|
+
}
|
|
2454
|
+
declare const TimelineOppositeContent: React.ForwardRefExoticComponent<TimelineOppositeContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2455
|
+
|
|
2418
2456
|
type ClickAwayMouseEventHandler = "onClick" | "onMouseDown" | "onMouseUp" | "onPointerDown" | "onPointerUp";
|
|
2419
2457
|
type ClickAwayTouchEventHandler = "onTouchStart" | "onTouchEnd";
|
|
2420
2458
|
interface ClickAwayListenerProps {
|
|
@@ -3066,4 +3104,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
3066
3104
|
*/
|
|
3067
3105
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
3068
3106
|
|
|
3069
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
|
3107
|
+
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckBoxIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDot, type TimelineDotColor, type TimelineDotProps, type TimelineDotVariant, TimelineItem, type TimelineItemProps, TimelineOppositeContent, type TimelineOppositeContentProps, type TimelinePosition, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
package/dist/main.d.ts
CHANGED
|
@@ -765,6 +765,8 @@ declare const PlaceIcon: React.FC<MaterialIconProps>;
|
|
|
765
765
|
|
|
766
766
|
declare const PersonSearchIcon: React.FC<MaterialIconProps>;
|
|
767
767
|
|
|
768
|
+
declare const CheckBoxIcon: React.FC<MaterialIconProps>;
|
|
769
|
+
|
|
768
770
|
declare const AddIcon: React.FC<PlusIconProps>;
|
|
769
771
|
declare const RemoveIcon: React.FC<MinusIconProps>;
|
|
770
772
|
|
|
@@ -2415,6 +2417,42 @@ interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">
|
|
|
2415
2417
|
}
|
|
2416
2418
|
declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
|
|
2417
2419
|
|
|
2420
|
+
type TimelinePosition = "right" | "left" | "alternate" | "alternate-reverse";
|
|
2421
|
+
type TimelineDotColor = "inherit" | "grey" | "primary" | "secondary" | "success" | "error" | "info" | "warning";
|
|
2422
|
+
type TimelineDotVariant = "filled" | "outlined";
|
|
2423
|
+
interface TimelineProps extends Omit<React.HTMLAttributes<HTMLUListElement>, "color"> {
|
|
2424
|
+
position?: TimelinePosition;
|
|
2425
|
+
sx?: SxProp;
|
|
2426
|
+
}
|
|
2427
|
+
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
|
|
2428
|
+
interface TimelineItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
|
|
2429
|
+
position?: "right" | "left";
|
|
2430
|
+
sx?: SxProp;
|
|
2431
|
+
}
|
|
2432
|
+
declare const TimelineItem: React.ForwardRefExoticComponent<TimelineItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
2433
|
+
interface TimelineSeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2434
|
+
sx?: SxProp;
|
|
2435
|
+
}
|
|
2436
|
+
declare const TimelineSeparator: React.ForwardRefExoticComponent<TimelineSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
2437
|
+
interface TimelineDotProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color"> {
|
|
2438
|
+
color?: TimelineDotColor;
|
|
2439
|
+
variant?: TimelineDotVariant;
|
|
2440
|
+
sx?: SxProp;
|
|
2441
|
+
}
|
|
2442
|
+
declare const TimelineDot: React.ForwardRefExoticComponent<TimelineDotProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2443
|
+
interface TimelineConnectorProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
2444
|
+
sx?: SxProp;
|
|
2445
|
+
}
|
|
2446
|
+
declare const TimelineConnector: React.ForwardRefExoticComponent<TimelineConnectorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
2447
|
+
interface TimelineContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2448
|
+
sx?: SxProp;
|
|
2449
|
+
}
|
|
2450
|
+
declare const TimelineContent: React.ForwardRefExoticComponent<TimelineContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2451
|
+
interface TimelineOppositeContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2452
|
+
sx?: SxProp;
|
|
2453
|
+
}
|
|
2454
|
+
declare const TimelineOppositeContent: React.ForwardRefExoticComponent<TimelineOppositeContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
2455
|
+
|
|
2418
2456
|
type ClickAwayMouseEventHandler = "onClick" | "onMouseDown" | "onMouseUp" | "onPointerDown" | "onPointerUp";
|
|
2419
2457
|
type ClickAwayTouchEventHandler = "onTouchStart" | "onTouchEnd";
|
|
2420
2458
|
interface ClickAwayListenerProps {
|
|
@@ -3066,4 +3104,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
3066
3104
|
*/
|
|
3067
3105
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
3068
3106
|
|
|
3069
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
|
3107
|
+
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddIcon, AddressLookup, Alert, type AlertProps, type AlertSeverity, AlertTriangleIcon, type AlertVariant, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, AttachFileIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, BusinessIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CalendarIcon, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, ChatBubbleIcon, CheckBoxIcon, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClickAwayListener, type ClickAwayListenerProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, ContactsIcon, Container, type ContainerMaxWidth, type ContainerProps, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, DragIndicatorIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, FactoryIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FormGroup, type FormGroupProps, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, LinearProgress, type LinearProgressProps, type LinearProgressVariant, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationCityIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, type MaterialIconProps, type MaterialIconVariant, MemoryIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotesIcon, NotificationIcon, type NumberVariant, OpenInFullIcon, Pagination, type PaginationItemType, type PaginationProps, Paper, type PaperProps, PaperclipIcon, PersonSearchIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PinIcon, PlaceIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, RemoveIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarBorderIcon, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TextFieldsIcon, TickIcon, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDot, type TimelineDotColor, type TimelineDotProps, type TimelineDotVariant, TimelineItem, type TimelineItemProps, TimelineOppositeContent, type TimelineOppositeContentProps, type TimelinePosition, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, TrendingFlatIcon, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|