@ikatec/nebula-react 1.10.0-beta.3 → 1.10.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/ikatec-nebula-react-1.10.0.tgz +0 -0
- package/dist/index.d.mts +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.js +11 -12
- package/dist/index.mjs +11 -12
- package/package.json +1 -1
- package/dist/ikatec-nebula-react-1.10.0-beta.3.tgz +0 -0
|
Binary file
|
package/dist/index.d.mts
CHANGED
|
@@ -585,7 +585,7 @@ type InputProps = InputBaseProps & (InputPasswordProps | InputTextProps);
|
|
|
585
585
|
*/
|
|
586
586
|
declare const InputText: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
587
587
|
|
|
588
|
-
interface InputDatePickerSingleProps extends Omit<
|
|
588
|
+
interface InputDatePickerSingleProps extends Omit<InputBaseProps, 'onChange' | 'value' | 'type'> {
|
|
589
589
|
value?: string;
|
|
590
590
|
onChange?: (value?: string, calendarDate?: Date) => void;
|
|
591
591
|
numberOfMonths?: CalendarProps['numberOfMonths'];
|
|
@@ -598,7 +598,7 @@ interface InputDatePickerSingleProps extends Omit<InputTextProps, 'onChange' | '
|
|
|
598
598
|
declare const dateIsAvailable: (inputDate?: Date | null, disabledDates?: InputDatePickerSingleProps["disabledDates"]) => boolean;
|
|
599
599
|
declare const InputDatePickerSingle: ({ placeholder, className, value, onChange, numberOfMonths, onClean, disabledDates, ...rest }: InputDatePickerSingleProps) => react_jsx_runtime.JSX.Element;
|
|
600
600
|
|
|
601
|
-
interface InputDateRangePickerProps extends Omit<
|
|
601
|
+
interface InputDateRangePickerProps extends Omit<InputBaseProps, 'onChange' | 'value' | 'type'> {
|
|
602
602
|
value?: string;
|
|
603
603
|
onChange?: (value?: string, calendarDate?: [Date | undefined, Date | undefined]) => void;
|
|
604
604
|
numberOfMonths?: CalendarProps['numberOfMonths'];
|
|
@@ -613,7 +613,7 @@ declare const InputDateRangePicker: {
|
|
|
613
613
|
displayName: string;
|
|
614
614
|
};
|
|
615
615
|
|
|
616
|
-
interface InputDateTimePickerSingleProps extends Omit<
|
|
616
|
+
interface InputDateTimePickerSingleProps extends Omit<InputBaseProps, 'onChange' | 'value' | 'type'> {
|
|
617
617
|
value?: string;
|
|
618
618
|
onChange?: (value?: string, calendarDate?: Date, inputTimeValue?: string) => void;
|
|
619
619
|
numberOfMonths?: CalendarProps['numberOfMonths'];
|
|
@@ -841,7 +841,8 @@ declare enum SpaceSizeEnum {
|
|
|
841
841
|
sm = "gap-2",
|
|
842
842
|
md = "gap-3",
|
|
843
843
|
lg = "gap-4",
|
|
844
|
-
xl = "gap-5"
|
|
844
|
+
xl = "gap-5",
|
|
845
|
+
'2xl' = "gap-6"
|
|
845
846
|
}
|
|
846
847
|
declare enum SpaceDirectionEnum {
|
|
847
848
|
row = "flex-row",
|
|
@@ -850,7 +851,7 @@ declare enum SpaceDirectionEnum {
|
|
|
850
851
|
type SpaceDirectionType = keyof typeof SpaceDirectionEnum;
|
|
851
852
|
type SpaceSizeType = keyof typeof SpaceSizeEnum;
|
|
852
853
|
declare const spaceVariantsConfig: (props?: ({
|
|
853
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
854
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
854
855
|
direction?: "row" | "column" | null | undefined;
|
|
855
856
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
856
857
|
interface SpaceProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof spaceVariantsConfig> {
|
|
@@ -1237,4 +1238,4 @@ declare function useKeyPress(key: string, callback: VoidFunction): void;
|
|
|
1237
1238
|
|
|
1238
1239
|
declare const useIsMobile: (breakpoint?: number) => boolean;
|
|
1239
1240
|
|
|
1240
|
-
export { Accordion, AccordionContent, AccordionDescription, AccordionItem, type AccordionProps, AccordionTitle, AccordionTrigger, ActionBar, ActionBarButton, ActionBarClose, ActionBarContent, ActionBarDivider, ActionBarPortal, ActionBarTrigger, Alert, AlertButton, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, StyledAsync as Async, StyledAsyncCreatable as AsyncCreatable, Avatar, AvatarFallback, AvatarHoverAction, AvatarImage, AvatarSizeEnum, AvatarStick, AvatarVariantEnum, Badge, type BadgeProps, BannerAlert, type BannerAlertProps, BannerType, BannerVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Caption, type CaptionProps, Checkbox, type CheckboxProps, Combobox, type Option as ComboboxOption, type ComboboxProps, StyledCreatable as Creatable, Cropper, CropperCropArea, CropperDescription, CropperImage, type CropperProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type FileMetadata, FileUpload, type FileUploadActions, FileUploadError, type FileUploadOptions, type FileUploadProps, type FileUploadState, type FileWithPreview, Heading, type HeadingProps, InputDatePickerSingle, type InputDatePickerSingleProps, InputDateRangePicker, type InputDateRangePickerProps, InputDateTimePickerSingle, type InputDateTimePickerSingleProps, InputPhone, InputText, type InputTextProps, InputTime, type InputTimeProps, KanbanBoard, type KanbanBoardCard, type KanbanBoardColumn, type KanbanBoardProps, KanbanCard, type KanbanCardDropEvent, KanbanColumn, KanbanColumnDragHandle, type KanbanColumnDropEvent, KanbanColumnFooter, KanbanColumnHeader, KanbanColumnTitle, type KanbanOrderingMode, type KanbanRenderCardContext, type KanbanRenderColumnBodyContext, type KanbanRenderColumnContext, Label, Link, type LinkProps, NebulaI18nProvider, type NebulaI18nProviderProps, Pagination, type PaginationProps, Paragraph, type ParagraphProps, Popover, PopoverContent, type PopoverContentProps, PopoverTrigger, ProfileImage, type ProfileImageProps, RadioGroup, RadioGroupItem, StyledSelect as Select, type CreateStyledSelectProps as SelectProps, Separator, type SeparatorProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarMenuItem, type SidebarProps, SidebarSeparator, SidebarStateEnum, SidebarTitle, SidebarTrigger, Skeleton, type SkeletonProps, Slider, Space, SpaceDirectionEnum, type SpaceProps, SpaceSizeEnum, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, type TagVariantsType, TextArea, type TextAreaProps, TipCard, TipCardContent, TipCardFooter, TipCardHeader, TipCardItem, TipCardMedia, TipCardMediaType, TipCardProvider, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupTypeEnum, ToggleSizeEnum, Tooltip, type TooltipProps, alertVariants, badgeSizeEnum, badgeVariantEnum, buttonSizeEnum, buttonVariantEnum, buttonVariantsConfig, dateIsAvailable, formatBytes, getNebulaLanguage, localeByi18nKey, messages, separatorVariants, setNebulaLanguage, tagVariantsEnum, tailwind, toast, toggleVariants, useClickOutside, useFileUpload, useIsMobile, useKeyPress, useNebulaI18n, useSidebar, useTipCard };
|
|
1241
|
+
export { Accordion, AccordionContent, AccordionDescription, AccordionItem, type AccordionProps, AccordionTitle, AccordionTrigger, ActionBar, ActionBarButton, ActionBarClose, ActionBarContent, ActionBarDivider, ActionBarPortal, ActionBarTrigger, Alert, AlertButton, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, StyledAsync as Async, StyledAsyncCreatable as AsyncCreatable, Avatar, AvatarFallback, AvatarHoverAction, AvatarImage, AvatarSizeEnum, AvatarStick, AvatarVariantEnum, Badge, type BadgeProps, BannerAlert, type BannerAlertProps, BannerType, BannerVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Caption, type CaptionProps, Checkbox, type CheckboxProps, Combobox, type Option as ComboboxOption, type ComboboxProps, StyledCreatable as Creatable, Cropper, CropperCropArea, CropperDescription, CropperImage, type CropperProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type FileMetadata, FileUpload, type FileUploadActions, FileUploadError, type FileUploadOptions, type FileUploadProps, type FileUploadState, type FileWithPreview, Heading, type HeadingProps, type InputBaseProps, InputDatePickerSingle, type InputDatePickerSingleProps, InputDateRangePicker, type InputDateRangePickerProps, InputDateTimePickerSingle, type InputDateTimePickerSingleProps, InputPhone, InputText, type InputTextProps, InputTime, type InputTimeProps, KanbanBoard, type KanbanBoardCard, type KanbanBoardColumn, type KanbanBoardProps, KanbanCard, type KanbanCardDropEvent, KanbanColumn, KanbanColumnDragHandle, type KanbanColumnDropEvent, KanbanColumnFooter, KanbanColumnHeader, KanbanColumnTitle, type KanbanOrderingMode, type KanbanRenderCardContext, type KanbanRenderColumnBodyContext, type KanbanRenderColumnContext, Label, Link, type LinkProps, NebulaI18nProvider, type NebulaI18nProviderProps, Pagination, type PaginationProps, Paragraph, type ParagraphProps, Popover, PopoverContent, type PopoverContentProps, PopoverTrigger, ProfileImage, type ProfileImageProps, RadioGroup, RadioGroupItem, StyledSelect as Select, type CreateStyledSelectProps as SelectProps, Separator, type SeparatorProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarMenuItem, type SidebarProps, SidebarSeparator, SidebarStateEnum, SidebarTitle, SidebarTrigger, Skeleton, type SkeletonProps, Slider, Space, SpaceDirectionEnum, type SpaceProps, SpaceSizeEnum, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, type TagVariantsType, TextArea, type TextAreaProps, TipCard, TipCardContent, TipCardFooter, TipCardHeader, TipCardItem, TipCardMedia, TipCardMediaType, TipCardProvider, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupTypeEnum, ToggleSizeEnum, Tooltip, type TooltipProps, alertVariants, badgeSizeEnum, badgeVariantEnum, buttonSizeEnum, buttonVariantEnum, buttonVariantsConfig, dateIsAvailable, formatBytes, getNebulaLanguage, localeByi18nKey, messages, separatorVariants, setNebulaLanguage, tagVariantsEnum, tailwind, toast, toggleVariants, useClickOutside, useFileUpload, useIsMobile, useKeyPress, useNebulaI18n, useSidebar, useTipCard };
|
package/dist/index.d.ts
CHANGED
|
@@ -585,7 +585,7 @@ type InputProps = InputBaseProps & (InputPasswordProps | InputTextProps);
|
|
|
585
585
|
*/
|
|
586
586
|
declare const InputText: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
587
587
|
|
|
588
|
-
interface InputDatePickerSingleProps extends Omit<
|
|
588
|
+
interface InputDatePickerSingleProps extends Omit<InputBaseProps, 'onChange' | 'value' | 'type'> {
|
|
589
589
|
value?: string;
|
|
590
590
|
onChange?: (value?: string, calendarDate?: Date) => void;
|
|
591
591
|
numberOfMonths?: CalendarProps['numberOfMonths'];
|
|
@@ -598,7 +598,7 @@ interface InputDatePickerSingleProps extends Omit<InputTextProps, 'onChange' | '
|
|
|
598
598
|
declare const dateIsAvailable: (inputDate?: Date | null, disabledDates?: InputDatePickerSingleProps["disabledDates"]) => boolean;
|
|
599
599
|
declare const InputDatePickerSingle: ({ placeholder, className, value, onChange, numberOfMonths, onClean, disabledDates, ...rest }: InputDatePickerSingleProps) => react_jsx_runtime.JSX.Element;
|
|
600
600
|
|
|
601
|
-
interface InputDateRangePickerProps extends Omit<
|
|
601
|
+
interface InputDateRangePickerProps extends Omit<InputBaseProps, 'onChange' | 'value' | 'type'> {
|
|
602
602
|
value?: string;
|
|
603
603
|
onChange?: (value?: string, calendarDate?: [Date | undefined, Date | undefined]) => void;
|
|
604
604
|
numberOfMonths?: CalendarProps['numberOfMonths'];
|
|
@@ -613,7 +613,7 @@ declare const InputDateRangePicker: {
|
|
|
613
613
|
displayName: string;
|
|
614
614
|
};
|
|
615
615
|
|
|
616
|
-
interface InputDateTimePickerSingleProps extends Omit<
|
|
616
|
+
interface InputDateTimePickerSingleProps extends Omit<InputBaseProps, 'onChange' | 'value' | 'type'> {
|
|
617
617
|
value?: string;
|
|
618
618
|
onChange?: (value?: string, calendarDate?: Date, inputTimeValue?: string) => void;
|
|
619
619
|
numberOfMonths?: CalendarProps['numberOfMonths'];
|
|
@@ -841,7 +841,8 @@ declare enum SpaceSizeEnum {
|
|
|
841
841
|
sm = "gap-2",
|
|
842
842
|
md = "gap-3",
|
|
843
843
|
lg = "gap-4",
|
|
844
|
-
xl = "gap-5"
|
|
844
|
+
xl = "gap-5",
|
|
845
|
+
'2xl' = "gap-6"
|
|
845
846
|
}
|
|
846
847
|
declare enum SpaceDirectionEnum {
|
|
847
848
|
row = "flex-row",
|
|
@@ -850,7 +851,7 @@ declare enum SpaceDirectionEnum {
|
|
|
850
851
|
type SpaceDirectionType = keyof typeof SpaceDirectionEnum;
|
|
851
852
|
type SpaceSizeType = keyof typeof SpaceSizeEnum;
|
|
852
853
|
declare const spaceVariantsConfig: (props?: ({
|
|
853
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
854
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
854
855
|
direction?: "row" | "column" | null | undefined;
|
|
855
856
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
856
857
|
interface SpaceProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof spaceVariantsConfig> {
|
|
@@ -1237,4 +1238,4 @@ declare function useKeyPress(key: string, callback: VoidFunction): void;
|
|
|
1237
1238
|
|
|
1238
1239
|
declare const useIsMobile: (breakpoint?: number) => boolean;
|
|
1239
1240
|
|
|
1240
|
-
export { Accordion, AccordionContent, AccordionDescription, AccordionItem, type AccordionProps, AccordionTitle, AccordionTrigger, ActionBar, ActionBarButton, ActionBarClose, ActionBarContent, ActionBarDivider, ActionBarPortal, ActionBarTrigger, Alert, AlertButton, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, StyledAsync as Async, StyledAsyncCreatable as AsyncCreatable, Avatar, AvatarFallback, AvatarHoverAction, AvatarImage, AvatarSizeEnum, AvatarStick, AvatarVariantEnum, Badge, type BadgeProps, BannerAlert, type BannerAlertProps, BannerType, BannerVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Caption, type CaptionProps, Checkbox, type CheckboxProps, Combobox, type Option as ComboboxOption, type ComboboxProps, StyledCreatable as Creatable, Cropper, CropperCropArea, CropperDescription, CropperImage, type CropperProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type FileMetadata, FileUpload, type FileUploadActions, FileUploadError, type FileUploadOptions, type FileUploadProps, type FileUploadState, type FileWithPreview, Heading, type HeadingProps, InputDatePickerSingle, type InputDatePickerSingleProps, InputDateRangePicker, type InputDateRangePickerProps, InputDateTimePickerSingle, type InputDateTimePickerSingleProps, InputPhone, InputText, type InputTextProps, InputTime, type InputTimeProps, KanbanBoard, type KanbanBoardCard, type KanbanBoardColumn, type KanbanBoardProps, KanbanCard, type KanbanCardDropEvent, KanbanColumn, KanbanColumnDragHandle, type KanbanColumnDropEvent, KanbanColumnFooter, KanbanColumnHeader, KanbanColumnTitle, type KanbanOrderingMode, type KanbanRenderCardContext, type KanbanRenderColumnBodyContext, type KanbanRenderColumnContext, Label, Link, type LinkProps, NebulaI18nProvider, type NebulaI18nProviderProps, Pagination, type PaginationProps, Paragraph, type ParagraphProps, Popover, PopoverContent, type PopoverContentProps, PopoverTrigger, ProfileImage, type ProfileImageProps, RadioGroup, RadioGroupItem, StyledSelect as Select, type CreateStyledSelectProps as SelectProps, Separator, type SeparatorProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarMenuItem, type SidebarProps, SidebarSeparator, SidebarStateEnum, SidebarTitle, SidebarTrigger, Skeleton, type SkeletonProps, Slider, Space, SpaceDirectionEnum, type SpaceProps, SpaceSizeEnum, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, type TagVariantsType, TextArea, type TextAreaProps, TipCard, TipCardContent, TipCardFooter, TipCardHeader, TipCardItem, TipCardMedia, TipCardMediaType, TipCardProvider, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupTypeEnum, ToggleSizeEnum, Tooltip, type TooltipProps, alertVariants, badgeSizeEnum, badgeVariantEnum, buttonSizeEnum, buttonVariantEnum, buttonVariantsConfig, dateIsAvailable, formatBytes, getNebulaLanguage, localeByi18nKey, messages, separatorVariants, setNebulaLanguage, tagVariantsEnum, tailwind, toast, toggleVariants, useClickOutside, useFileUpload, useIsMobile, useKeyPress, useNebulaI18n, useSidebar, useTipCard };
|
|
1241
|
+
export { Accordion, AccordionContent, AccordionDescription, AccordionItem, type AccordionProps, AccordionTitle, AccordionTrigger, ActionBar, ActionBarButton, ActionBarClose, ActionBarContent, ActionBarDivider, ActionBarPortal, ActionBarTrigger, Alert, AlertButton, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, StyledAsync as Async, StyledAsyncCreatable as AsyncCreatable, Avatar, AvatarFallback, AvatarHoverAction, AvatarImage, AvatarSizeEnum, AvatarStick, AvatarVariantEnum, Badge, type BadgeProps, BannerAlert, type BannerAlertProps, BannerType, BannerVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Caption, type CaptionProps, Checkbox, type CheckboxProps, Combobox, type Option as ComboboxOption, type ComboboxProps, StyledCreatable as Creatable, Cropper, CropperCropArea, CropperDescription, CropperImage, type CropperProps, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type FileMetadata, FileUpload, type FileUploadActions, FileUploadError, type FileUploadOptions, type FileUploadProps, type FileUploadState, type FileWithPreview, Heading, type HeadingProps, type InputBaseProps, InputDatePickerSingle, type InputDatePickerSingleProps, InputDateRangePicker, type InputDateRangePickerProps, InputDateTimePickerSingle, type InputDateTimePickerSingleProps, InputPhone, InputText, type InputTextProps, InputTime, type InputTimeProps, KanbanBoard, type KanbanBoardCard, type KanbanBoardColumn, type KanbanBoardProps, KanbanCard, type KanbanCardDropEvent, KanbanColumn, KanbanColumnDragHandle, type KanbanColumnDropEvent, KanbanColumnFooter, KanbanColumnHeader, KanbanColumnTitle, type KanbanOrderingMode, type KanbanRenderCardContext, type KanbanRenderColumnBodyContext, type KanbanRenderColumnContext, Label, Link, type LinkProps, NebulaI18nProvider, type NebulaI18nProviderProps, Pagination, type PaginationProps, Paragraph, type ParagraphProps, Popover, PopoverContent, type PopoverContentProps, PopoverTrigger, ProfileImage, type ProfileImageProps, RadioGroup, RadioGroupItem, StyledSelect as Select, type CreateStyledSelectProps as SelectProps, Separator, type SeparatorProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarMenuItem, type SidebarProps, SidebarSeparator, SidebarStateEnum, SidebarTitle, SidebarTrigger, Skeleton, type SkeletonProps, Slider, Space, SpaceDirectionEnum, type SpaceProps, SpaceSizeEnum, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, type TagVariantsType, TextArea, type TextAreaProps, TipCard, TipCardContent, TipCardFooter, TipCardHeader, TipCardItem, TipCardMedia, TipCardMediaType, TipCardProvider, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupTypeEnum, ToggleSizeEnum, Tooltip, type TooltipProps, alertVariants, badgeSizeEnum, badgeVariantEnum, buttonSizeEnum, buttonVariantEnum, buttonVariantsConfig, dateIsAvailable, formatBytes, getNebulaLanguage, localeByi18nKey, messages, separatorVariants, setNebulaLanguage, tagVariantsEnum, tailwind, toast, toggleVariants, useClickOutside, useFileUpload, useIsMobile, useKeyPress, useNebulaI18n, useSidebar, useTipCard };
|
package/dist/index.js
CHANGED
|
@@ -2215,6 +2215,7 @@ var SpaceSizeEnum = /* @__PURE__ */ ((SpaceSizeEnum2) => {
|
|
|
2215
2215
|
SpaceSizeEnum2["md"] = "gap-3";
|
|
2216
2216
|
SpaceSizeEnum2["lg"] = "gap-4";
|
|
2217
2217
|
SpaceSizeEnum2["xl"] = "gap-5";
|
|
2218
|
+
SpaceSizeEnum2["2xl"] = "gap-6";
|
|
2218
2219
|
return SpaceSizeEnum2;
|
|
2219
2220
|
})(SpaceSizeEnum || {});
|
|
2220
2221
|
var SpaceDirectionEnum = /* @__PURE__ */ ((SpaceDirectionEnum2) => {
|
|
@@ -2227,7 +2228,8 @@ var size3 = {
|
|
|
2227
2228
|
sm: "gap-2" /* sm */,
|
|
2228
2229
|
md: "gap-3" /* md */,
|
|
2229
2230
|
lg: "gap-4" /* lg */,
|
|
2230
|
-
xl: "gap-5" /* xl
|
|
2231
|
+
xl: "gap-5" /* xl */,
|
|
2232
|
+
"2xl": "gap-6" /* 2xl */
|
|
2231
2233
|
};
|
|
2232
2234
|
var direction = {
|
|
2233
2235
|
row: "flex-row" /* row */,
|
|
@@ -2497,16 +2499,13 @@ var Calendar = ({
|
|
|
2497
2499
|
{
|
|
2498
2500
|
...props2,
|
|
2499
2501
|
tabIndex: 0,
|
|
2500
|
-
className: cn(
|
|
2501
|
-
|
|
2502
|
-
"!
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
"!text-neutral-200 dark:!text-neutral-900 pointer-events-none cursor-not-allowed": disabled
|
|
2508
|
-
}
|
|
2509
|
-
),
|
|
2502
|
+
className: cn(props2.className, "!w-9 !h-9 hover:rounded-full", {
|
|
2503
|
+
"hover:bg-button-ghost-background-hover": !(selected || rangeEnd || rangeStart) || rangeMiddle,
|
|
2504
|
+
"!text-calendar-day-color": !outside,
|
|
2505
|
+
"!text-calendar-outsideDay-color !opacity-1": outside,
|
|
2506
|
+
"!bg-calendar-daySelected-background !border-calendar-daySelected-background !text-calendar-daySelected-color rounded-full": (selected || rangeEnd || rangeStart) && !rangeMiddle,
|
|
2507
|
+
"!text-neutral-200 dark:!text-neutral-900 pointer-events-none cursor-not-allowed": disabled
|
|
2508
|
+
}),
|
|
2510
2509
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2511
2510
|
"div",
|
|
2512
2511
|
{
|
|
@@ -4900,7 +4899,7 @@ var InputText = React25__namespace.forwardRef(
|
|
|
4900
4899
|
className: cn(
|
|
4901
4900
|
"h-10 outline-none text-sm leading-none font-medium",
|
|
4902
4901
|
"bg-inputText-background-default disabled:bg-inputText-background-disabled",
|
|
4903
|
-
"text-inputText-text-filled",
|
|
4902
|
+
"text-inputText-text-filled placeholder:text-inputText-text-default",
|
|
4904
4903
|
"disabled:cursor-not-allowed",
|
|
4905
4904
|
"rounded-input",
|
|
4906
4905
|
"pl-4",
|
package/dist/index.mjs
CHANGED
|
@@ -2172,6 +2172,7 @@ var SpaceSizeEnum = /* @__PURE__ */ ((SpaceSizeEnum2) => {
|
|
|
2172
2172
|
SpaceSizeEnum2["md"] = "gap-3";
|
|
2173
2173
|
SpaceSizeEnum2["lg"] = "gap-4";
|
|
2174
2174
|
SpaceSizeEnum2["xl"] = "gap-5";
|
|
2175
|
+
SpaceSizeEnum2["2xl"] = "gap-6";
|
|
2175
2176
|
return SpaceSizeEnum2;
|
|
2176
2177
|
})(SpaceSizeEnum || {});
|
|
2177
2178
|
var SpaceDirectionEnum = /* @__PURE__ */ ((SpaceDirectionEnum2) => {
|
|
@@ -2184,7 +2185,8 @@ var size3 = {
|
|
|
2184
2185
|
sm: "gap-2" /* sm */,
|
|
2185
2186
|
md: "gap-3" /* md */,
|
|
2186
2187
|
lg: "gap-4" /* lg */,
|
|
2187
|
-
xl: "gap-5" /* xl
|
|
2188
|
+
xl: "gap-5" /* xl */,
|
|
2189
|
+
"2xl": "gap-6" /* 2xl */
|
|
2188
2190
|
};
|
|
2189
2191
|
var direction = {
|
|
2190
2192
|
row: "flex-row" /* row */,
|
|
@@ -2454,16 +2456,13 @@ var Calendar = ({
|
|
|
2454
2456
|
{
|
|
2455
2457
|
...props2,
|
|
2456
2458
|
tabIndex: 0,
|
|
2457
|
-
className: cn(
|
|
2458
|
-
|
|
2459
|
-
"!
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
"!text-neutral-200 dark:!text-neutral-900 pointer-events-none cursor-not-allowed": disabled
|
|
2465
|
-
}
|
|
2466
|
-
),
|
|
2459
|
+
className: cn(props2.className, "!w-9 !h-9 hover:rounded-full", {
|
|
2460
|
+
"hover:bg-button-ghost-background-hover": !(selected || rangeEnd || rangeStart) || rangeMiddle,
|
|
2461
|
+
"!text-calendar-day-color": !outside,
|
|
2462
|
+
"!text-calendar-outsideDay-color !opacity-1": outside,
|
|
2463
|
+
"!bg-calendar-daySelected-background !border-calendar-daySelected-background !text-calendar-daySelected-color rounded-full": (selected || rangeEnd || rangeStart) && !rangeMiddle,
|
|
2464
|
+
"!text-neutral-200 dark:!text-neutral-900 pointer-events-none cursor-not-allowed": disabled
|
|
2465
|
+
}),
|
|
2467
2466
|
children: /* @__PURE__ */ jsxs(
|
|
2468
2467
|
"div",
|
|
2469
2468
|
{
|
|
@@ -4857,7 +4856,7 @@ var InputText = React25.forwardRef(
|
|
|
4857
4856
|
className: cn(
|
|
4858
4857
|
"h-10 outline-none text-sm leading-none font-medium",
|
|
4859
4858
|
"bg-inputText-background-default disabled:bg-inputText-background-disabled",
|
|
4860
|
-
"text-inputText-text-filled",
|
|
4859
|
+
"text-inputText-text-filled placeholder:text-inputText-text-default",
|
|
4861
4860
|
"disabled:cursor-not-allowed",
|
|
4862
4861
|
"rounded-input",
|
|
4863
4862
|
"pl-4",
|
package/package.json
CHANGED
|
Binary file
|