@rufous/ui 0.3.34 → 0.3.36

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 CHANGED
@@ -59,6 +59,10 @@ __export(main_exports, {
59
59
  CloseIcon: () => closeIcon_default,
60
60
  Collapse: () => Collapse,
61
61
  CopyIcon: () => copyIcon_default,
62
+ CustomImage: () => CustomImage,
63
+ CustomTaskItem: () => CustomTaskItem,
64
+ CustomVideo: () => CustomVideo,
65
+ CustomYoutube: () => CustomYoutube,
62
66
  DataGrid: () => DataGrid,
63
67
  DateField: () => DateField,
64
68
  DateRangeField: () => DateRangeField,
@@ -75,25 +79,32 @@ __export(main_exports, {
75
79
  EditIcon: () => editIcon_default,
76
80
  EngagementIcon: () => engagementIcon_default,
77
81
  Fade: () => Fade,
82
+ FontFamily: () => FontFamily,
83
+ FontSize: () => FontSize,
78
84
  FunctionIcon: () => functionIcon_default,
79
85
  Grid: () => Grid,
80
86
  Grow: () => Grow,
81
87
  HelpOutlinedIcon: () => helpOutlinedIcon_default,
82
88
  HierarchyIcon: () => hierarchyIcon_default,
89
+ INDENT_STEP: () => INDENT_STEP,
83
90
  IconButton: () => IconButton,
84
91
  ImageField: () => ImageField,
85
92
  InactiveGroupIcon: () => inactiveGroupIcon_default,
93
+ Indent: () => Indent,
86
94
  IndustryIcon: () => industryIcon_default,
87
95
  InvoiceIcon: () => invoiceIcon_default,
96
+ LineHeight: () => LineHeight,
88
97
  Link: () => Link,
89
98
  List: () => List,
90
99
  ListItem: () => ListItem,
91
100
  ListItemButton: () => ListItemButton,
92
101
  ListItemIcon: () => ListItemIcon,
93
102
  ListItemText: () => ListItemText,
103
+ ListStyle: () => ListStyle,
94
104
  ListSubheader: () => ListSubheader,
95
105
  LocationPinIcon: () => locationPinIcon_default,
96
106
  LogsIcon: () => logsIcon_default,
107
+ MAX_INDENT: () => MAX_INDENT,
97
108
  Menu: () => Menu,
98
109
  MenuDivider: () => MenuDivider,
99
110
  MenuItem: () => MenuItem,
@@ -128,6 +139,9 @@ __export(main_exports, {
128
139
  RufousTextContent: () => RufousTextContent,
129
140
  RufousTextEditor: () => RufousTextEditor,
130
141
  RufousThemeProvider: () => RufousThemeProvider,
142
+ STATUS_COLORS: () => STATUS_COLORS,
143
+ STATUS_IMAGES: () => STATUS_IMAGES,
144
+ STATUS_LABELS: () => STATUS_LABELS,
131
145
  Select: () => Select,
132
146
  SidebarIcon: () => sidebarIcon_default,
133
147
  Skeleton: () => Skeleton,
@@ -14246,6 +14260,10 @@ function useCitiesSearch(debounceMs = 300) {
14246
14260
  CloseIcon,
14247
14261
  Collapse,
14248
14262
  CopyIcon,
14263
+ CustomImage,
14264
+ CustomTaskItem,
14265
+ CustomVideo,
14266
+ CustomYoutube,
14249
14267
  DataGrid,
14250
14268
  DateField,
14251
14269
  DateRangeField,
@@ -14262,25 +14280,32 @@ function useCitiesSearch(debounceMs = 300) {
14262
14280
  EditIcon,
14263
14281
  EngagementIcon,
14264
14282
  Fade,
14283
+ FontFamily,
14284
+ FontSize,
14265
14285
  FunctionIcon,
14266
14286
  Grid,
14267
14287
  Grow,
14268
14288
  HelpOutlinedIcon,
14269
14289
  HierarchyIcon,
14290
+ INDENT_STEP,
14270
14291
  IconButton,
14271
14292
  ImageField,
14272
14293
  InactiveGroupIcon,
14294
+ Indent,
14273
14295
  IndustryIcon,
14274
14296
  InvoiceIcon,
14297
+ LineHeight,
14275
14298
  Link,
14276
14299
  List,
14277
14300
  ListItem,
14278
14301
  ListItemButton,
14279
14302
  ListItemIcon,
14280
14303
  ListItemText,
14304
+ ListStyle,
14281
14305
  ListSubheader,
14282
14306
  LocationPinIcon,
14283
14307
  LogsIcon,
14308
+ MAX_INDENT,
14284
14309
  Menu,
14285
14310
  MenuDivider,
14286
14311
  MenuItem,
@@ -14315,6 +14340,9 @@ function useCitiesSearch(debounceMs = 300) {
14315
14340
  RufousTextContent,
14316
14341
  RufousTextEditor,
14317
14342
  RufousThemeProvider,
14343
+ STATUS_COLORS,
14344
+ STATUS_IMAGES,
14345
+ STATUS_LABELS,
14318
14346
  Select,
14319
14347
  SidebarIcon,
14320
14348
  Skeleton,
package/dist/main.d.cts CHANGED
@@ -2227,6 +2227,25 @@ interface MentionItemData {
2227
2227
  shortName?: string;
2228
2228
  }
2229
2229
 
2230
+ declare const FontSize: any;
2231
+ declare const LineHeight: any;
2232
+ declare const FontFamily: any;
2233
+ declare const ListStyle: any;
2234
+ declare const INDENT_STEP = 40;
2235
+ declare const MAX_INDENT = 200;
2236
+ declare const Indent: any;
2237
+ declare const CustomVideo: any;
2238
+ declare const CustomYoutube: any;
2239
+ declare const CustomImage: any;
2240
+ declare const STATUS_IMAGES: Record<string, string>;
2241
+ declare const STATUS_LABELS: Record<string, string>;
2242
+ declare const STATUS_COLORS: Record<string, {
2243
+ border: string;
2244
+ bg: string;
2245
+ color: string;
2246
+ }>;
2247
+ declare const CustomTaskItem: any;
2248
+
2230
2249
  /** Country — same shape as the library; re-exported with a typed name for convenience. */
2231
2250
  type EnhancedCountry = ICountry;
2232
2251
  /** State enriched with the full name of its parent country. */
@@ -2355,4 +2374,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
2355
2374
  */
2356
2375
  declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
2357
2376
 
2358
- export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddressLookup, ArchivedIcon, AssignGroupIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, CloseIcon, Collapse, type CollapseProps, type Column, CopyIcon, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, Fade, type FadeProps, FunctionIcon, Grid, type GridProps, Grow, type GrowProps, HelpOutlinedIcon, HierarchyIcon, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, IndustryIcon, InvoiceIcon, Link, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, LocationPinIcon, LogsIcon, Menu, MenuDivider, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, NineDotMenuIcon, NotificationIcon, type NumberVariant, Paper, type PaperProps, PhoneField, type PhoneFieldProps, Popover, type PopoverProps, Popper, type PopperProps, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, Select, type SelectProps, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, TechnicalSkillsIcon, TextField, type TextFieldProps, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, Typography, type TypographyProps, UnArchivedIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, ViewIcon, WorkItemIcon, Zoom, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
2377
+ export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddressLookup, ArchivedIcon, AssignGroupIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, CloseIcon, Collapse, type CollapseProps, type Column, 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, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, Fade, type FadeProps, FontFamily, FontSize, FunctionIcon, Grid, type GridProps, Grow, type GrowProps, HelpOutlinedIcon, HierarchyIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InvoiceIcon, LineHeight, Link, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, LocationPinIcon, LogsIcon, MAX_INDENT, Menu, MenuDivider, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, NineDotMenuIcon, NotificationIcon, type NumberVariant, Paper, type PaperProps, PhoneField, type PhoneFieldProps, Popover, type PopoverProps, Popper, type PopperProps, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, 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, Select, type SelectProps, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, TechnicalSkillsIcon, TextField, type TextFieldProps, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, Typography, type TypographyProps, UnArchivedIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, ViewIcon, WorkItemIcon, Zoom, 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
@@ -2227,6 +2227,25 @@ interface MentionItemData {
2227
2227
  shortName?: string;
2228
2228
  }
2229
2229
 
2230
+ declare const FontSize: any;
2231
+ declare const LineHeight: any;
2232
+ declare const FontFamily: any;
2233
+ declare const ListStyle: any;
2234
+ declare const INDENT_STEP = 40;
2235
+ declare const MAX_INDENT = 200;
2236
+ declare const Indent: any;
2237
+ declare const CustomVideo: any;
2238
+ declare const CustomYoutube: any;
2239
+ declare const CustomImage: any;
2240
+ declare const STATUS_IMAGES: Record<string, string>;
2241
+ declare const STATUS_LABELS: Record<string, string>;
2242
+ declare const STATUS_COLORS: Record<string, {
2243
+ border: string;
2244
+ bg: string;
2245
+ color: string;
2246
+ }>;
2247
+ declare const CustomTaskItem: any;
2248
+
2230
2249
  /** Country — same shape as the library; re-exported with a typed name for convenience. */
2231
2250
  type EnhancedCountry = ICountry;
2232
2251
  /** State enriched with the full name of its parent country. */
@@ -2355,4 +2374,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
2355
2374
  */
2356
2375
  declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
2357
2376
 
2358
- export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddressLookup, ArchivedIcon, AssignGroupIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, CloseIcon, Collapse, type CollapseProps, type Column, CopyIcon, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, Fade, type FadeProps, FunctionIcon, Grid, type GridProps, Grow, type GrowProps, HelpOutlinedIcon, HierarchyIcon, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, IndustryIcon, InvoiceIcon, Link, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, LocationPinIcon, LogsIcon, Menu, MenuDivider, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, NineDotMenuIcon, NotificationIcon, type NumberVariant, Paper, type PaperProps, PhoneField, type PhoneFieldProps, Popover, type PopoverProps, Popper, type PopperProps, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, Select, type SelectProps, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, TechnicalSkillsIcon, TextField, type TextFieldProps, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, Typography, type TypographyProps, UnArchivedIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, ViewIcon, WorkItemIcon, Zoom, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
2377
+ export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddressLookup, ArchivedIcon, AssignGroupIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, CloseIcon, Collapse, type CollapseProps, type Column, 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, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, Fade, type FadeProps, FontFamily, FontSize, FunctionIcon, Grid, type GridProps, Grow, type GrowProps, HelpOutlinedIcon, HierarchyIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InvoiceIcon, LineHeight, Link, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, LocationPinIcon, LogsIcon, MAX_INDENT, Menu, MenuDivider, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, NineDotMenuIcon, NotificationIcon, type NumberVariant, Paper, type PaperProps, PhoneField, type PhoneFieldProps, Popover, type PopoverProps, Popper, type PopperProps, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, 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, Select, type SelectProps, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, TechnicalSkillsIcon, TextField, type TextFieldProps, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, Typography, type TypographyProps, UnArchivedIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, ViewIcon, WorkItemIcon, Zoom, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
package/dist/main.js CHANGED
@@ -14171,6 +14171,10 @@ export {
14171
14171
  closeIcon_default as CloseIcon,
14172
14172
  Collapse,
14173
14173
  copyIcon_default as CopyIcon,
14174
+ CustomImage,
14175
+ CustomTaskItem,
14176
+ CustomVideo,
14177
+ CustomYoutube,
14174
14178
  DataGrid,
14175
14179
  DateField,
14176
14180
  DateRangeField,
@@ -14187,25 +14191,32 @@ export {
14187
14191
  editIcon_default as EditIcon,
14188
14192
  engagementIcon_default as EngagementIcon,
14189
14193
  Fade,
14194
+ FontFamily,
14195
+ FontSize,
14190
14196
  functionIcon_default as FunctionIcon,
14191
14197
  Grid,
14192
14198
  Grow,
14193
14199
  helpOutlinedIcon_default as HelpOutlinedIcon,
14194
14200
  hierarchyIcon_default as HierarchyIcon,
14201
+ INDENT_STEP,
14195
14202
  IconButton,
14196
14203
  ImageField,
14197
14204
  inactiveGroupIcon_default as InactiveGroupIcon,
14205
+ Indent,
14198
14206
  industryIcon_default as IndustryIcon,
14199
14207
  invoiceIcon_default as InvoiceIcon,
14208
+ LineHeight,
14200
14209
  Link,
14201
14210
  List,
14202
14211
  ListItem,
14203
14212
  ListItemButton,
14204
14213
  ListItemIcon,
14205
14214
  ListItemText,
14215
+ ListStyle,
14206
14216
  ListSubheader,
14207
14217
  locationPinIcon_default as LocationPinIcon,
14208
14218
  logsIcon_default as LogsIcon,
14219
+ MAX_INDENT,
14209
14220
  Menu,
14210
14221
  MenuDivider,
14211
14222
  MenuItem,
@@ -14240,6 +14251,9 @@ export {
14240
14251
  RufousTextContent,
14241
14252
  RufousTextEditor,
14242
14253
  RufousThemeProvider,
14254
+ STATUS_COLORS,
14255
+ STATUS_IMAGES,
14256
+ STATUS_LABELS,
14243
14257
  Select,
14244
14258
  sidebarIcon_default as SidebarIcon,
14245
14259
  Skeleton,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rufous/ui",
3
3
  "private": false,
4
- "version": "0.3.34",
4
+ "version": "0.3.36",
5
5
  "type": "module",
6
6
  "description": "Experimental: A lightweight React UI component library (Beta)",
7
7
  "style": "./dist/main.css",
@@ -64,14 +64,9 @@
64
64
  "crypto-js": "^4.2.0",
65
65
  "lucide-react": "^0.575.0",
66
66
  "motion": "^12.34.3",
67
- "react": "^18.0.0 || ^19.0.0",
68
- "react-dom": "^18.0.0 || ^19.0.0",
69
67
  "react-router-dom": "^7.13.1",
70
68
  "react-secure-storage": "^1.3.2",
71
- "rufous-ui": "^0.4.6",
72
- "tippy.js": "^6.3.7",
73
- "vite": "^6.3.5",
74
- "vite-tsconfig-paths": "^5.1.4"
69
+ "tippy.js": "^6.3.7"
75
70
  },
76
71
  "devDependencies": {
77
72
  "@eslint/js": "^9.30.1",
@@ -87,6 +82,8 @@
87
82
  "tsup": "^8.5.0",
88
83
  "typescript": "~5.8.3",
89
84
  "typescript-eslint": "^8.35.1",
85
+ "vite": "^6.3.5",
86
+ "vite-tsconfig-paths": "^5.1.4",
90
87
  "vite-plugin-css-injected-by-js": "^3.5.2"
91
88
  },
92
89
  "peerDependencies": {