@6thbridge/hexa 0.0.64 → 0.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -13,6 +13,7 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
13
13
|
import { Drawer as Drawer$1 } from 'vaul';
|
14
14
|
import { RowData, Row, Table as Table$1 } from '@tanstack/react-table';
|
15
15
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
16
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
16
17
|
import dayjs from 'dayjs';
|
17
18
|
import { ClassValue } from 'clsx';
|
18
19
|
|
@@ -577,6 +578,10 @@ interface TextOverflowProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
577
578
|
*/
|
578
579
|
declare const TextOverflow: ({ children, mode, className, as: Component, ...rest }: TextOverflowProps) => react_jsx_runtime.JSX.Element;
|
579
580
|
|
581
|
+
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
582
|
+
viewPortClassName?: string;
|
583
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
584
|
+
|
580
585
|
declare const CurrencySymbolMap: Record<string, string>;
|
581
586
|
interface FormatCurrencyOptions {
|
582
587
|
convertToMajorCurrency?: boolean;
|
@@ -598,4 +603,4 @@ declare class DateAction {
|
|
598
603
|
|
599
604
|
declare function cn(...inputs: ClassValue[]): string;
|
600
605
|
|
601
|
-
export { AmountAction, Banner, Button, CalendarInput, CopyableLabel, Country, CurrencySymbolMap, DateAction, DebouncedInput, DevBanner, Dialog, Drawer, DrawerClose, type DrawerPropsType, DrawerRoot, type FilterListItem, type FilterListOptions, FilterPopover, FlagComponent, FormLabel, type FormatCurrencyOptions, HasResourcePermission, Input, Loader, LocaleSelector, OTPInput, PageDataToolbar, Pagination, PasswordInput, PermissionsContext, PermissionsProvider, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, RadioGroup, RadioGroupItem, type ResourcePermission, type ResourcePermissionProps, type ResourcePermissions, Select, Sidebar, Status, Table, type TablePaginationProps, TextOverflow, type TextOverflowProps, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, buttonVariants, cn, useHasPermission, usePermissions };
|
606
|
+
export { AmountAction, Banner, Button, CalendarInput, CopyableLabel, Country, CurrencySymbolMap, DateAction, DebouncedInput, DevBanner, Dialog, Drawer, DrawerClose, type DrawerPropsType, DrawerRoot, type FilterListItem, type FilterListOptions, FilterPopover, FlagComponent, FormLabel, type FormatCurrencyOptions, HasResourcePermission, Input, Loader, LocaleSelector, OTPInput, PageDataToolbar, Pagination, PasswordInput, PermissionsContext, PermissionsProvider, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, RadioGroup, RadioGroupItem, type ResourcePermission, type ResourcePermissionProps, type ResourcePermissions, ScrollArea, Select, Sidebar, Status, Table, type TablePaginationProps, TextOverflow, type TextOverflowProps, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, buttonVariants, cn, useHasPermission, usePermissions };
|
package/dist/index.d.ts
CHANGED
@@ -13,6 +13,7 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
13
13
|
import { Drawer as Drawer$1 } from 'vaul';
|
14
14
|
import { RowData, Row, Table as Table$1 } from '@tanstack/react-table';
|
15
15
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
16
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
16
17
|
import dayjs from 'dayjs';
|
17
18
|
import { ClassValue } from 'clsx';
|
18
19
|
|
@@ -577,6 +578,10 @@ interface TextOverflowProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
577
578
|
*/
|
578
579
|
declare const TextOverflow: ({ children, mode, className, as: Component, ...rest }: TextOverflowProps) => react_jsx_runtime.JSX.Element;
|
579
580
|
|
581
|
+
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
582
|
+
viewPortClassName?: string;
|
583
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
584
|
+
|
580
585
|
declare const CurrencySymbolMap: Record<string, string>;
|
581
586
|
interface FormatCurrencyOptions {
|
582
587
|
convertToMajorCurrency?: boolean;
|
@@ -598,4 +603,4 @@ declare class DateAction {
|
|
598
603
|
|
599
604
|
declare function cn(...inputs: ClassValue[]): string;
|
600
605
|
|
601
|
-
export { AmountAction, Banner, Button, CalendarInput, CopyableLabel, Country, CurrencySymbolMap, DateAction, DebouncedInput, DevBanner, Dialog, Drawer, DrawerClose, type DrawerPropsType, DrawerRoot, type FilterListItem, type FilterListOptions, FilterPopover, FlagComponent, FormLabel, type FormatCurrencyOptions, HasResourcePermission, Input, Loader, LocaleSelector, OTPInput, PageDataToolbar, Pagination, PasswordInput, PermissionsContext, PermissionsProvider, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, RadioGroup, RadioGroupItem, type ResourcePermission, type ResourcePermissionProps, type ResourcePermissions, Select, Sidebar, Status, Table, type TablePaginationProps, TextOverflow, type TextOverflowProps, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, buttonVariants, cn, useHasPermission, usePermissions };
|
606
|
+
export { AmountAction, Banner, Button, CalendarInput, CopyableLabel, Country, CurrencySymbolMap, DateAction, DebouncedInput, DevBanner, Dialog, Drawer, DrawerClose, type DrawerPropsType, DrawerRoot, type FilterListItem, type FilterListOptions, FilterPopover, FlagComponent, FormLabel, type FormatCurrencyOptions, HasResourcePermission, Input, Loader, LocaleSelector, OTPInput, PageDataToolbar, Pagination, PasswordInput, PermissionsContext, PermissionsProvider, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, RadioGroup, RadioGroupItem, type ResourcePermission, type ResourcePermissionProps, type ResourcePermissions, ScrollArea, Select, Sidebar, Status, Table, type TablePaginationProps, TextOverflow, type TextOverflowProps, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, buttonVariants, cn, useHasPermission, usePermissions };
|