@l3mpire/ui 2.14.0 → 2.15.1
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/USAGE.md +53 -1
- package/dist/index.d.mts +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +1356 -1181
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1352 -1174
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/styles/globals.css +5 -0
package/USAGE.md
CHANGED
|
@@ -56,7 +56,7 @@ import { Icon, faHomeOutline, faHomeSolid } from "@l3mpire/icons";
|
|
|
56
56
|
|
|
57
57
|
All icons come in `Outline` + `Solid` pairs:
|
|
58
58
|
|
|
59
|
-
`faCheck`, `faXmark`, `faPlus`, `faMinus`, `faPen`, `faTrash`, `faTrashCan`, `faMagnifyingGlass`, `faChevronDown`, `faChevronUp`, `faChevronLeft`, `faChevronRight`, `faArrowLeft`, `faArrowRight`, `faArrowUp`, `faArrowDown`, `faEllipsis`, `faEllipsisVertical`, `faSpinner`, `faCircleNotch`, `faTriangleExclamation`, `faCircleExclamation`, `faCircleCheck`, `faCircleInfo`, `faCircleXmark`, `faBell`, `faGear`, `faUser`, `faUsers`, `faEnvelope`, `faPaperPlane`, `faLink`, `faCopy`, `faDownload`, `faUpload`, `faFilter`, `faSort`, `faStar`, `faHeart`, `faEye`, `faEyeSlash`, `faLock`, `faUnlock`, `faCalendar`, `faClock`, `faHome`, `faFolder`, `faFile`, `faBookmark`, `faComment`, `faMessage`, `faSquarePlus`, `faSquareCheck`, `faPenToSquare`, `faPaperPlaneTop`, `faAddressBook`, `faBuildings`, `faChartLineUp`, `faInbox`, `faPhone`, `faVideo`, `faCoin`, `faStars`, `faArrowLeftFromLine`, `faGripDotsVertical`
|
|
59
|
+
`faCheck`, `faXmark`, `faPlus`, `faMinus`, `faPen`, `faTrash`, `faTrashCan`, `faMagnifyingGlass`, `faChevronDown`, `faChevronUp`, `faChevronLeft`, `faChevronRight`, `faArrowLeft`, `faArrowRight`, `faArrowUp`, `faArrowDown`, `faEllipsis`, `faEllipsisVertical`, `faSpinner`, `faCircleNotch`, `faTriangleExclamation`, `faCircleExclamation`, `faCircleCheck`, `faCircleInfo`, `faCircleXmark`, `faBell`, `faGear`, `faUser`, `faUsers`, `faEnvelope`, `faPaperPlane`, `faLink`, `faCopy`, `faDownload`, `faUpload`, `faFilter`, `faSort`, `faStar`, `faHeart`, `faEye`, `faEyeSlash`, `faLock`, `faUnlock`, `faCalendar`, `faClock`, `faHome`, `faFolder`, `faFile`, `faBookmark`, `faComment`, `faMessage`, `faSquarePlus`, `faSquareCheck`, `faPenToSquare`, `faPaperPlaneTop`, `faAddressBook`, `faBuildings`, `faChartLineUp`, `faInbox`, `faPhone`, `faVideo`, `faCoin`, `faStars`, `faArrowLeftFromLine`, `faGripDotsVertical`, `faPause`
|
|
60
60
|
|
|
61
61
|
---
|
|
62
62
|
|
|
@@ -1090,6 +1090,58 @@ import { ProductLogo } from "@l3mpire/ui";
|
|
|
1090
1090
|
|
|
1091
1091
|
---
|
|
1092
1092
|
|
|
1093
|
+
### BulkAction
|
|
1094
|
+
|
|
1095
|
+
Bottom-anchored toolbar that appears when one or more list items are selected. Hosts a Clear button + selection count on the left, and a fully composable, **responsive** action slot on the right. Actions that don't fit collapse automatically into a "more" menu.
|
|
1096
|
+
|
|
1097
|
+
```tsx
|
|
1098
|
+
import { BulkAction, type BulkActionItem } from "@l3mpire/ui";
|
|
1099
|
+
import { faPlusOutline, faTrashOutline, faBookmarkOutline } from "@l3mpire/icons";
|
|
1100
|
+
|
|
1101
|
+
const actions: BulkActionItem[] = [
|
|
1102
|
+
{ id: "add", label: "Add to list", icon: faPlusOutline, appearance: "solid", intent: "brand" },
|
|
1103
|
+
{ id: "tag", label: "Bookmark", icon: faBookmarkOutline },
|
|
1104
|
+
{ id: "delete", label: "Delete", icon: faTrashOutline, intent: "alert" },
|
|
1105
|
+
];
|
|
1106
|
+
|
|
1107
|
+
{selectedIds.length > 0 && (
|
|
1108
|
+
<BulkAction
|
|
1109
|
+
count={selectedIds.length}
|
|
1110
|
+
onClear={() => setSelectedIds([])}
|
|
1111
|
+
actions={actions}
|
|
1112
|
+
/>
|
|
1113
|
+
)}
|
|
1114
|
+
```
|
|
1115
|
+
|
|
1116
|
+
| Prop | Description |
|
|
1117
|
+
|---|---|
|
|
1118
|
+
| `count` | Number of selected items (rendered as `{count} {countLabel}`) |
|
|
1119
|
+
| `onClear` | Called when the user clicks the Clear button |
|
|
1120
|
+
| `countLabel` | Defaults to `"selected"` — override for i18n |
|
|
1121
|
+
| `clearLabel` | Defaults to `"Clear"` — override for i18n |
|
|
1122
|
+
| `actions` | `BulkActionItem[]` — items collapse into a "more" menu when they overflow |
|
|
1123
|
+
| `sticky` | `true` (default) → `position: sticky; bottom: 0`. Set to `false` when placing it manually inside a flex column above a footer (e.g. inside a SidePanel) |
|
|
1124
|
+
|
|
1125
|
+
**`BulkActionItem` shape:**
|
|
1126
|
+
|
|
1127
|
+
```ts
|
|
1128
|
+
type BulkActionItem = {
|
|
1129
|
+
id: string;
|
|
1130
|
+
label: string;
|
|
1131
|
+
icon?: IconDefinition;
|
|
1132
|
+
appearance?: "solid" | "outlined" | "ghost"; // default "outlined"
|
|
1133
|
+
intent?: "brand" | "alert"; // default "brand"
|
|
1134
|
+
disabled?: boolean;
|
|
1135
|
+
onClick?: () => void;
|
|
1136
|
+
};
|
|
1137
|
+
```
|
|
1138
|
+
|
|
1139
|
+
**Responsive behavior:** the actions slot uses a hidden measurement layer + `ResizeObserver` to detect overflow. Items that don't fit in the available width are automatically moved into a Radix dropdown menu opened by an icon-only `…` button (anchored `top end`). Resizing the parent recomputes the split — guaranteed no horizontal overflow.
|
|
1140
|
+
|
|
1141
|
+
**Positioning:** sticky to the bottom by default. Inside a SidePanel that already has a footer, render `BulkAction` **above** the footer in the flex column with `sticky={false}`.
|
|
1142
|
+
|
|
1143
|
+
---
|
|
1144
|
+
|
|
1093
1145
|
### Table (Low-Level)
|
|
1094
1146
|
|
|
1095
1147
|
```tsx
|
package/dist/index.d.mts
CHANGED
|
@@ -58,6 +58,34 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
|
|
|
58
58
|
}
|
|
59
59
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
60
60
|
|
|
61
|
+
interface BulkActionItem {
|
|
62
|
+
id: string;
|
|
63
|
+
label: string;
|
|
64
|
+
icon?: IconDefinition;
|
|
65
|
+
appearance?: ButtonProps["appearance"];
|
|
66
|
+
intent?: ButtonProps["intent"];
|
|
67
|
+
disabled?: boolean;
|
|
68
|
+
onClick?: () => void;
|
|
69
|
+
}
|
|
70
|
+
interface BulkActionProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
71
|
+
/** Number of currently selected items. */
|
|
72
|
+
count: number;
|
|
73
|
+
/** Called when the user clicks the Clear button. */
|
|
74
|
+
onClear?: () => void;
|
|
75
|
+
/** Label shown next to the count. Defaults to "selected". */
|
|
76
|
+
countLabel?: string;
|
|
77
|
+
/** Override the Clear button label. Defaults to "Clear". */
|
|
78
|
+
clearLabel?: string;
|
|
79
|
+
/** Action items rendered on the right side. Overflow collapses into a "more" menu. */
|
|
80
|
+
actions: BulkActionItem[];
|
|
81
|
+
/**
|
|
82
|
+
* When true (default), the bar sticks to the bottom of its scroll container.
|
|
83
|
+
* Set to false if you position it manually.
|
|
84
|
+
*/
|
|
85
|
+
sticky?: boolean;
|
|
86
|
+
}
|
|
87
|
+
declare const BulkAction: React.ForwardRefExoticComponent<BulkActionProps & React.RefAttributes<HTMLDivElement>>;
|
|
88
|
+
|
|
61
89
|
declare const tooltipContentVariants: (props?: ({
|
|
62
90
|
type?: "invert" | "default" | null | undefined;
|
|
63
91
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1020,4 +1048,4 @@ declare const DatePickerTrigger: React.ForwardRefExoticComponent<PopoverPrimitiv
|
|
|
1020
1048
|
declare const DatePickerPopover: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1021
1049
|
declare function getDefaultSuggestions(referenceDate?: Date): DatePickerSuggestion[];
|
|
1022
1050
|
|
|
1023
|
-
export { AdvancedChip, type AdvancedChipProps, AdvancedPopover, type AdvancedPopoverProps, AdvancedRow, type AdvancedRowProps, Avatar, AvatarCell, type AvatarCellProps, type AvatarProps, Badge, type BadgeProps, type BooleanOperator, BrowserTab, BrowserTabItem, type BrowserTabItemProps, type BrowserTabProps, Button, ButtonCell, type ButtonCellProps, type ButtonProps, Checkbox, type CheckboxProps, ChipInput, type ChipInputProps, DEFAULT_OPERATOR_BY_TYPE, DataTable, DataTablePagination, type DataTablePaginationProps, type DataTableProps, type DataType, DateCell, type DateCellProps, type DateOperator, DatePicker, DatePickerCalendar, type DatePickerCalendarProps, DatePickerFooter, type DatePickerFooterProps, type DatePickerMode, DatePickerPanel, type DatePickerPanelProps, DatePickerPopover, type DatePickerProps, DatePickerRoot, DatePickerSelects, type DatePickerSelectsProps, type DatePickerSuggestion, DatePickerSuggestions, type DatePickerSuggestionsProps, DatePickerTrigger, type DateRange, Dialog, type DialogProps, DropdownMenu, DropdownMenuClear, type DropdownMenuClearProps, DropdownMenuContent, DropdownMenuHeading, type DropdownMenuHeadingProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuList, type DropdownMenuListProps, type DropdownMenuProps, DropdownMenuRadixItem, type DropdownMenuRadixItemProps, DropdownMenuRoot, DropdownMenuTrigger, EditableCell, type EditableCellProps, EmailCell, type EmailCellProps, EmptyState, type EmptyStateProps, type EnumOperator, FilterBar, FilterBarButton, type FilterBarButtonProps, FilterBarLeft, type FilterBarLeftProps, type FilterBarMode, type FilterBarProps, FilterBarRight, type FilterBarRightProps, FilterChip, type FilterChipProps, FilterChipSegment, type FilterChipSegmentProps, type FilterCondition, FilterEditor, type FilterEditorProps, type FilterOperator, type FilterState, FilterSystem, type FilterSystemProps, type FilterValue, InfoMessage, type InfoMessageProps, InputLabel, type InputLabelProps, InteractiveFilterChip, type InteractiveFilterChipProps, KebabMenu, type KebabMenuProps, Link, LinkCell, type LinkCellProps, type LinkProps, Modal, ModalBody, ModalClose, ModalContent, type ModalContentProps, ModalDescription, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, ModalOverlay, ModalTitle, ModalTrigger, NumberCell, type NumberCellProps, NumberInput, type NumberInputProps, type NumberOperator, OPERATORS_BY_TYPE, OperatorList, type OperatorListProps, OperatorSelector, type OperatorSelectorProps, type OperatorType, type Product, ProductLogo, type ProductLogoProps, type PropertyDefinition, PropertySelector, type PropertySelectorProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RelationOperator, RowActions, type RowActionsProps, SaveViewButton, type SaveViewButtonProps, SearchBar, type SearchBarProps, Select, type SelectProps, SidePanel, SidePanelClose, SidePanelContent, type SidePanelContentProps, SidePanelTrigger, Sidebar, SidebarFooter, type SidebarFooterProps, SidebarHeader, SidebarHeadingItem, type SidebarHeadingItemProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SortButton, type SortButtonProps, type SortField, StatusCell, type StatusCellProps, SummaryChip, type SummaryChipProps, Switch, type SwitchProps, TabContent, type TabContentProps, TabList, type TabListProps, TabTrigger, type TabTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, type TabsProps, Tag, type TagProps, type TagsOperator, TextArea, type TextAreaProps, TextCell, type TextCellProps, TextInput, type TextInputProps, type TextOperator, Toast, type ToastProps, ToastProvider, ToastViewport, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, UserMenu, UserMenuInfoRow, type UserMenuInfoRowProps, type UserMenuProps, UserMenuSection, type UserMenuSectionProps, ValueInput, type ValueInputProps, avatarVariants, badgeVariants, buttonVariants, chipInputVariants, cn, createFilterWithDefaults, emptyStateVariants, filterChipSegmentVariants, getDefaultOperator, getDefaultSuggestions, getValueInputType, infoMessageVariants, isNoValueOperator, linkVariants, modalVariants, productLogoVariants, searchBarVariants, selectVariants, sidebarItemVariants, tagVariants, textInputVariants, toastVariants, tooltipContentVariants, typographyVariants, useFilterBarMode, useSidebarContext };
|
|
1051
|
+
export { AdvancedChip, type AdvancedChipProps, AdvancedPopover, type AdvancedPopoverProps, AdvancedRow, type AdvancedRowProps, Avatar, AvatarCell, type AvatarCellProps, type AvatarProps, Badge, type BadgeProps, type BooleanOperator, BrowserTab, BrowserTabItem, type BrowserTabItemProps, type BrowserTabProps, BulkAction, type BulkActionItem, type BulkActionProps, Button, ButtonCell, type ButtonCellProps, type ButtonProps, Checkbox, type CheckboxProps, ChipInput, type ChipInputProps, DEFAULT_OPERATOR_BY_TYPE, DataTable, DataTablePagination, type DataTablePaginationProps, type DataTableProps, type DataType, DateCell, type DateCellProps, type DateOperator, DatePicker, DatePickerCalendar, type DatePickerCalendarProps, DatePickerFooter, type DatePickerFooterProps, type DatePickerMode, DatePickerPanel, type DatePickerPanelProps, DatePickerPopover, type DatePickerProps, DatePickerRoot, DatePickerSelects, type DatePickerSelectsProps, type DatePickerSuggestion, DatePickerSuggestions, type DatePickerSuggestionsProps, DatePickerTrigger, type DateRange, Dialog, type DialogProps, DropdownMenu, DropdownMenuClear, type DropdownMenuClearProps, DropdownMenuContent, DropdownMenuHeading, type DropdownMenuHeadingProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuList, type DropdownMenuListProps, type DropdownMenuProps, DropdownMenuRadixItem, type DropdownMenuRadixItemProps, DropdownMenuRoot, DropdownMenuTrigger, EditableCell, type EditableCellProps, EmailCell, type EmailCellProps, EmptyState, type EmptyStateProps, type EnumOperator, FilterBar, FilterBarButton, type FilterBarButtonProps, FilterBarLeft, type FilterBarLeftProps, type FilterBarMode, type FilterBarProps, FilterBarRight, type FilterBarRightProps, FilterChip, type FilterChipProps, FilterChipSegment, type FilterChipSegmentProps, type FilterCondition, FilterEditor, type FilterEditorProps, type FilterOperator, type FilterState, FilterSystem, type FilterSystemProps, type FilterValue, InfoMessage, type InfoMessageProps, InputLabel, type InputLabelProps, InteractiveFilterChip, type InteractiveFilterChipProps, KebabMenu, type KebabMenuProps, Link, LinkCell, type LinkCellProps, type LinkProps, Modal, ModalBody, ModalClose, ModalContent, type ModalContentProps, ModalDescription, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, ModalOverlay, ModalTitle, ModalTrigger, NumberCell, type NumberCellProps, NumberInput, type NumberInputProps, type NumberOperator, OPERATORS_BY_TYPE, OperatorList, type OperatorListProps, OperatorSelector, type OperatorSelectorProps, type OperatorType, type Product, ProductLogo, type ProductLogoProps, type PropertyDefinition, PropertySelector, type PropertySelectorProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RelationOperator, RowActions, type RowActionsProps, SaveViewButton, type SaveViewButtonProps, SearchBar, type SearchBarProps, Select, type SelectProps, SidePanel, SidePanelClose, SidePanelContent, type SidePanelContentProps, SidePanelTrigger, Sidebar, SidebarFooter, type SidebarFooterProps, SidebarHeader, SidebarHeadingItem, type SidebarHeadingItemProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SortButton, type SortButtonProps, type SortField, StatusCell, type StatusCellProps, SummaryChip, type SummaryChipProps, Switch, type SwitchProps, TabContent, type TabContentProps, TabList, type TabListProps, TabTrigger, type TabTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, type TabsProps, Tag, type TagProps, type TagsOperator, TextArea, type TextAreaProps, TextCell, type TextCellProps, TextInput, type TextInputProps, type TextOperator, Toast, type ToastProps, ToastProvider, ToastViewport, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, UserMenu, UserMenuInfoRow, type UserMenuInfoRowProps, type UserMenuProps, UserMenuSection, type UserMenuSectionProps, ValueInput, type ValueInputProps, avatarVariants, badgeVariants, buttonVariants, chipInputVariants, cn, createFilterWithDefaults, emptyStateVariants, filterChipSegmentVariants, getDefaultOperator, getDefaultSuggestions, getValueInputType, infoMessageVariants, isNoValueOperator, linkVariants, modalVariants, productLogoVariants, searchBarVariants, selectVariants, sidebarItemVariants, tagVariants, textInputVariants, toastVariants, tooltipContentVariants, typographyVariants, useFilterBarMode, useSidebarContext };
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,34 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
|
|
|
58
58
|
}
|
|
59
59
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
60
60
|
|
|
61
|
+
interface BulkActionItem {
|
|
62
|
+
id: string;
|
|
63
|
+
label: string;
|
|
64
|
+
icon?: IconDefinition;
|
|
65
|
+
appearance?: ButtonProps["appearance"];
|
|
66
|
+
intent?: ButtonProps["intent"];
|
|
67
|
+
disabled?: boolean;
|
|
68
|
+
onClick?: () => void;
|
|
69
|
+
}
|
|
70
|
+
interface BulkActionProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
71
|
+
/** Number of currently selected items. */
|
|
72
|
+
count: number;
|
|
73
|
+
/** Called when the user clicks the Clear button. */
|
|
74
|
+
onClear?: () => void;
|
|
75
|
+
/** Label shown next to the count. Defaults to "selected". */
|
|
76
|
+
countLabel?: string;
|
|
77
|
+
/** Override the Clear button label. Defaults to "Clear". */
|
|
78
|
+
clearLabel?: string;
|
|
79
|
+
/** Action items rendered on the right side. Overflow collapses into a "more" menu. */
|
|
80
|
+
actions: BulkActionItem[];
|
|
81
|
+
/**
|
|
82
|
+
* When true (default), the bar sticks to the bottom of its scroll container.
|
|
83
|
+
* Set to false if you position it manually.
|
|
84
|
+
*/
|
|
85
|
+
sticky?: boolean;
|
|
86
|
+
}
|
|
87
|
+
declare const BulkAction: React.ForwardRefExoticComponent<BulkActionProps & React.RefAttributes<HTMLDivElement>>;
|
|
88
|
+
|
|
61
89
|
declare const tooltipContentVariants: (props?: ({
|
|
62
90
|
type?: "invert" | "default" | null | undefined;
|
|
63
91
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1020,4 +1048,4 @@ declare const DatePickerTrigger: React.ForwardRefExoticComponent<PopoverPrimitiv
|
|
|
1020
1048
|
declare const DatePickerPopover: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1021
1049
|
declare function getDefaultSuggestions(referenceDate?: Date): DatePickerSuggestion[];
|
|
1022
1050
|
|
|
1023
|
-
export { AdvancedChip, type AdvancedChipProps, AdvancedPopover, type AdvancedPopoverProps, AdvancedRow, type AdvancedRowProps, Avatar, AvatarCell, type AvatarCellProps, type AvatarProps, Badge, type BadgeProps, type BooleanOperator, BrowserTab, BrowserTabItem, type BrowserTabItemProps, type BrowserTabProps, Button, ButtonCell, type ButtonCellProps, type ButtonProps, Checkbox, type CheckboxProps, ChipInput, type ChipInputProps, DEFAULT_OPERATOR_BY_TYPE, DataTable, DataTablePagination, type DataTablePaginationProps, type DataTableProps, type DataType, DateCell, type DateCellProps, type DateOperator, DatePicker, DatePickerCalendar, type DatePickerCalendarProps, DatePickerFooter, type DatePickerFooterProps, type DatePickerMode, DatePickerPanel, type DatePickerPanelProps, DatePickerPopover, type DatePickerProps, DatePickerRoot, DatePickerSelects, type DatePickerSelectsProps, type DatePickerSuggestion, DatePickerSuggestions, type DatePickerSuggestionsProps, DatePickerTrigger, type DateRange, Dialog, type DialogProps, DropdownMenu, DropdownMenuClear, type DropdownMenuClearProps, DropdownMenuContent, DropdownMenuHeading, type DropdownMenuHeadingProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuList, type DropdownMenuListProps, type DropdownMenuProps, DropdownMenuRadixItem, type DropdownMenuRadixItemProps, DropdownMenuRoot, DropdownMenuTrigger, EditableCell, type EditableCellProps, EmailCell, type EmailCellProps, EmptyState, type EmptyStateProps, type EnumOperator, FilterBar, FilterBarButton, type FilterBarButtonProps, FilterBarLeft, type FilterBarLeftProps, type FilterBarMode, type FilterBarProps, FilterBarRight, type FilterBarRightProps, FilterChip, type FilterChipProps, FilterChipSegment, type FilterChipSegmentProps, type FilterCondition, FilterEditor, type FilterEditorProps, type FilterOperator, type FilterState, FilterSystem, type FilterSystemProps, type FilterValue, InfoMessage, type InfoMessageProps, InputLabel, type InputLabelProps, InteractiveFilterChip, type InteractiveFilterChipProps, KebabMenu, type KebabMenuProps, Link, LinkCell, type LinkCellProps, type LinkProps, Modal, ModalBody, ModalClose, ModalContent, type ModalContentProps, ModalDescription, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, ModalOverlay, ModalTitle, ModalTrigger, NumberCell, type NumberCellProps, NumberInput, type NumberInputProps, type NumberOperator, OPERATORS_BY_TYPE, OperatorList, type OperatorListProps, OperatorSelector, type OperatorSelectorProps, type OperatorType, type Product, ProductLogo, type ProductLogoProps, type PropertyDefinition, PropertySelector, type PropertySelectorProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RelationOperator, RowActions, type RowActionsProps, SaveViewButton, type SaveViewButtonProps, SearchBar, type SearchBarProps, Select, type SelectProps, SidePanel, SidePanelClose, SidePanelContent, type SidePanelContentProps, SidePanelTrigger, Sidebar, SidebarFooter, type SidebarFooterProps, SidebarHeader, SidebarHeadingItem, type SidebarHeadingItemProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SortButton, type SortButtonProps, type SortField, StatusCell, type StatusCellProps, SummaryChip, type SummaryChipProps, Switch, type SwitchProps, TabContent, type TabContentProps, TabList, type TabListProps, TabTrigger, type TabTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, type TabsProps, Tag, type TagProps, type TagsOperator, TextArea, type TextAreaProps, TextCell, type TextCellProps, TextInput, type TextInputProps, type TextOperator, Toast, type ToastProps, ToastProvider, ToastViewport, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, UserMenu, UserMenuInfoRow, type UserMenuInfoRowProps, type UserMenuProps, UserMenuSection, type UserMenuSectionProps, ValueInput, type ValueInputProps, avatarVariants, badgeVariants, buttonVariants, chipInputVariants, cn, createFilterWithDefaults, emptyStateVariants, filterChipSegmentVariants, getDefaultOperator, getDefaultSuggestions, getValueInputType, infoMessageVariants, isNoValueOperator, linkVariants, modalVariants, productLogoVariants, searchBarVariants, selectVariants, sidebarItemVariants, tagVariants, textInputVariants, toastVariants, tooltipContentVariants, typographyVariants, useFilterBarMode, useSidebarContext };
|
|
1051
|
+
export { AdvancedChip, type AdvancedChipProps, AdvancedPopover, type AdvancedPopoverProps, AdvancedRow, type AdvancedRowProps, Avatar, AvatarCell, type AvatarCellProps, type AvatarProps, Badge, type BadgeProps, type BooleanOperator, BrowserTab, BrowserTabItem, type BrowserTabItemProps, type BrowserTabProps, BulkAction, type BulkActionItem, type BulkActionProps, Button, ButtonCell, type ButtonCellProps, type ButtonProps, Checkbox, type CheckboxProps, ChipInput, type ChipInputProps, DEFAULT_OPERATOR_BY_TYPE, DataTable, DataTablePagination, type DataTablePaginationProps, type DataTableProps, type DataType, DateCell, type DateCellProps, type DateOperator, DatePicker, DatePickerCalendar, type DatePickerCalendarProps, DatePickerFooter, type DatePickerFooterProps, type DatePickerMode, DatePickerPanel, type DatePickerPanelProps, DatePickerPopover, type DatePickerProps, DatePickerRoot, DatePickerSelects, type DatePickerSelectsProps, type DatePickerSuggestion, DatePickerSuggestions, type DatePickerSuggestionsProps, DatePickerTrigger, type DateRange, Dialog, type DialogProps, DropdownMenu, DropdownMenuClear, type DropdownMenuClearProps, DropdownMenuContent, DropdownMenuHeading, type DropdownMenuHeadingProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuList, type DropdownMenuListProps, type DropdownMenuProps, DropdownMenuRadixItem, type DropdownMenuRadixItemProps, DropdownMenuRoot, DropdownMenuTrigger, EditableCell, type EditableCellProps, EmailCell, type EmailCellProps, EmptyState, type EmptyStateProps, type EnumOperator, FilterBar, FilterBarButton, type FilterBarButtonProps, FilterBarLeft, type FilterBarLeftProps, type FilterBarMode, type FilterBarProps, FilterBarRight, type FilterBarRightProps, FilterChip, type FilterChipProps, FilterChipSegment, type FilterChipSegmentProps, type FilterCondition, FilterEditor, type FilterEditorProps, type FilterOperator, type FilterState, FilterSystem, type FilterSystemProps, type FilterValue, InfoMessage, type InfoMessageProps, InputLabel, type InputLabelProps, InteractiveFilterChip, type InteractiveFilterChipProps, KebabMenu, type KebabMenuProps, Link, LinkCell, type LinkCellProps, type LinkProps, Modal, ModalBody, ModalClose, ModalContent, type ModalContentProps, ModalDescription, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, ModalOverlay, ModalTitle, ModalTrigger, NumberCell, type NumberCellProps, NumberInput, type NumberInputProps, type NumberOperator, OPERATORS_BY_TYPE, OperatorList, type OperatorListProps, OperatorSelector, type OperatorSelectorProps, type OperatorType, type Product, ProductLogo, type ProductLogoProps, type PropertyDefinition, PropertySelector, type PropertySelectorProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RelationOperator, RowActions, type RowActionsProps, SaveViewButton, type SaveViewButtonProps, SearchBar, type SearchBarProps, Select, type SelectProps, SidePanel, SidePanelClose, SidePanelContent, type SidePanelContentProps, SidePanelTrigger, Sidebar, SidebarFooter, type SidebarFooterProps, SidebarHeader, SidebarHeadingItem, type SidebarHeadingItemProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SortButton, type SortButtonProps, type SortField, StatusCell, type StatusCellProps, SummaryChip, type SummaryChipProps, Switch, type SwitchProps, TabContent, type TabContentProps, TabList, type TabListProps, TabTrigger, type TabTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, type TabsProps, Tag, type TagProps, type TagsOperator, TextArea, type TextAreaProps, TextCell, type TextCellProps, TextInput, type TextInputProps, type TextOperator, Toast, type ToastProps, ToastProvider, ToastViewport, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, UserMenu, UserMenuInfoRow, type UserMenuInfoRowProps, type UserMenuProps, UserMenuSection, type UserMenuSectionProps, ValueInput, type ValueInputProps, avatarVariants, badgeVariants, buttonVariants, chipInputVariants, cn, createFilterWithDefaults, emptyStateVariants, filterChipSegmentVariants, getDefaultOperator, getDefaultSuggestions, getValueInputType, infoMessageVariants, isNoValueOperator, linkVariants, modalVariants, productLogoVariants, searchBarVariants, selectVariants, sidebarItemVariants, tagVariants, textInputVariants, toastVariants, tooltipContentVariants, typographyVariants, useFilterBarMode, useSidebarContext };
|