@rufous/ui 0.3.32 → 0.3.35

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,
@@ -1867,6 +1881,7 @@ var TextField = (0, import_react17.forwardRef)(({
1867
1881
  multiline = false,
1868
1882
  rows,
1869
1883
  maxRows,
1884
+ onBlur,
1870
1885
  ...props
1871
1886
  }, ref) => {
1872
1887
  const sxClass = useSx(sx);
@@ -1979,7 +1994,8 @@ var TextField = (0, import_react17.forwardRef)(({
1979
1994
  readOnly,
1980
1995
  style: textareaStyle,
1981
1996
  ...slotProps?.textarea,
1982
- onChange
1997
+ onChange,
1998
+ onBlur
1983
1999
  }
1984
2000
  ) : /* @__PURE__ */ import_react17.default.createElement(
1985
2001
  "input",
@@ -14244,6 +14260,10 @@ function useCitiesSearch(debounceMs = 300) {
14244
14260
  CloseIcon,
14245
14261
  Collapse,
14246
14262
  CopyIcon,
14263
+ CustomImage,
14264
+ CustomTaskItem,
14265
+ CustomVideo,
14266
+ CustomYoutube,
14247
14267
  DataGrid,
14248
14268
  DateField,
14249
14269
  DateRangeField,
@@ -14260,25 +14280,32 @@ function useCitiesSearch(debounceMs = 300) {
14260
14280
  EditIcon,
14261
14281
  EngagementIcon,
14262
14282
  Fade,
14283
+ FontFamily,
14284
+ FontSize,
14263
14285
  FunctionIcon,
14264
14286
  Grid,
14265
14287
  Grow,
14266
14288
  HelpOutlinedIcon,
14267
14289
  HierarchyIcon,
14290
+ INDENT_STEP,
14268
14291
  IconButton,
14269
14292
  ImageField,
14270
14293
  InactiveGroupIcon,
14294
+ Indent,
14271
14295
  IndustryIcon,
14272
14296
  InvoiceIcon,
14297
+ LineHeight,
14273
14298
  Link,
14274
14299
  List,
14275
14300
  ListItem,
14276
14301
  ListItemButton,
14277
14302
  ListItemIcon,
14278
14303
  ListItemText,
14304
+ ListStyle,
14279
14305
  ListSubheader,
14280
14306
  LocationPinIcon,
14281
14307
  LogsIcon,
14308
+ MAX_INDENT,
14282
14309
  Menu,
14283
14310
  MenuDivider,
14284
14311
  MenuItem,
@@ -14313,6 +14340,9 @@ function useCitiesSearch(debounceMs = 300) {
14313
14340
  RufousTextContent,
14314
14341
  RufousTextEditor,
14315
14342
  RufousThemeProvider,
14343
+ STATUS_COLORS,
14344
+ STATUS_IMAGES,
14345
+ STATUS_LABELS,
14316
14346
  Select,
14317
14347
  SidebarIcon,
14318
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
@@ -1685,6 +1685,7 @@ var TextField = forwardRef3(({
1685
1685
  multiline = false,
1686
1686
  rows,
1687
1687
  maxRows,
1688
+ onBlur,
1688
1689
  ...props
1689
1690
  }, ref) => {
1690
1691
  const sxClass = useSx(sx);
@@ -1797,7 +1798,8 @@ var TextField = forwardRef3(({
1797
1798
  readOnly,
1798
1799
  style: textareaStyle,
1799
1800
  ...slotProps?.textarea,
1800
- onChange
1801
+ onChange,
1802
+ onBlur
1801
1803
  }
1802
1804
  ) : /* @__PURE__ */ React68.createElement(
1803
1805
  "input",
@@ -14169,6 +14171,10 @@ export {
14169
14171
  closeIcon_default as CloseIcon,
14170
14172
  Collapse,
14171
14173
  copyIcon_default as CopyIcon,
14174
+ CustomImage,
14175
+ CustomTaskItem,
14176
+ CustomVideo,
14177
+ CustomYoutube,
14172
14178
  DataGrid,
14173
14179
  DateField,
14174
14180
  DateRangeField,
@@ -14185,25 +14191,32 @@ export {
14185
14191
  editIcon_default as EditIcon,
14186
14192
  engagementIcon_default as EngagementIcon,
14187
14193
  Fade,
14194
+ FontFamily,
14195
+ FontSize,
14188
14196
  functionIcon_default as FunctionIcon,
14189
14197
  Grid,
14190
14198
  Grow,
14191
14199
  helpOutlinedIcon_default as HelpOutlinedIcon,
14192
14200
  hierarchyIcon_default as HierarchyIcon,
14201
+ INDENT_STEP,
14193
14202
  IconButton,
14194
14203
  ImageField,
14195
14204
  inactiveGroupIcon_default as InactiveGroupIcon,
14205
+ Indent,
14196
14206
  industryIcon_default as IndustryIcon,
14197
14207
  invoiceIcon_default as InvoiceIcon,
14208
+ LineHeight,
14198
14209
  Link,
14199
14210
  List,
14200
14211
  ListItem,
14201
14212
  ListItemButton,
14202
14213
  ListItemIcon,
14203
14214
  ListItemText,
14215
+ ListStyle,
14204
14216
  ListSubheader,
14205
14217
  locationPinIcon_default as LocationPinIcon,
14206
14218
  logsIcon_default as LogsIcon,
14219
+ MAX_INDENT,
14207
14220
  Menu,
14208
14221
  MenuDivider,
14209
14222
  MenuItem,
@@ -14238,6 +14251,9 @@ export {
14238
14251
  RufousTextContent,
14239
14252
  RufousTextEditor,
14240
14253
  RufousThemeProvider,
14254
+ STATUS_COLORS,
14255
+ STATUS_IMAGES,
14256
+ STATUS_LABELS,
14241
14257
  Select,
14242
14258
  sidebarIcon_default as SidebarIcon,
14243
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.32",
4
+ "version": "0.3.35",
5
5
  "type": "module",
6
6
  "description": "Experimental: A lightweight React UI component library (Beta)",
7
7
  "style": "./dist/main.css",
@@ -62,16 +62,9 @@
62
62
  "axios": "^1.13.5",
63
63
  "country-state-city": "^3.2.1",
64
64
  "crypto-js": "^4.2.0",
65
- "lucide-react": "^0.575.0",
66
65
  "motion": "^12.34.3",
67
- "react": "^18.0.0 || ^19.0.0",
68
- "react-dom": "^18.0.0 || ^19.0.0",
69
- "react-router-dom": "^7.13.1",
70
66
  "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"
67
+ "tippy.js": "^6.3.7"
75
68
  },
76
69
  "devDependencies": {
77
70
  "@eslint/js": "^9.30.1",
@@ -87,10 +80,22 @@
87
80
  "tsup": "^8.5.0",
88
81
  "typescript": "~5.8.3",
89
82
  "typescript-eslint": "^8.35.1",
83
+ "vite": "^6.3.5",
84
+ "vite-tsconfig-paths": "^5.1.4",
90
85
  "vite-plugin-css-injected-by-js": "^3.5.2"
91
86
  },
92
87
  "peerDependencies": {
88
+ "lucide-react": ">=0.400.0",
93
89
  "react": "^18.0.0 || ^19.0.0",
94
- "react-dom": "^18.0.0 || ^19.0.0"
90
+ "react-dom": "^18.0.0 || ^19.0.0",
91
+ "react-router-dom": "^6.0.0 || ^7.0.0"
92
+ },
93
+ "peerDependenciesMeta": {
94
+ "lucide-react": {
95
+ "optional": true
96
+ },
97
+ "react-router-dom": {
98
+ "optional": true
99
+ }
95
100
  }
96
101
  }