@l3mpire/ui 2.7.2 → 2.9.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/USAGE.md +13 -4
- package/dist/index.d.mts +29 -7
- package/dist/index.d.ts +29 -7
- package/dist/index.js +470 -239
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +469 -240
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/USAGE.md
CHANGED
|
@@ -875,13 +875,13 @@ import {
|
|
|
875
875
|
type FilterState, type PropertyDefinition, type SortField,
|
|
876
876
|
} from "@l3mpire/ui";
|
|
877
877
|
|
|
878
|
-
// Full interactive system (manages state
|
|
878
|
+
// Full interactive system (manages state, Clear button, responsive)
|
|
879
879
|
<FilterSystem
|
|
880
880
|
properties={PROPERTIES}
|
|
881
881
|
filterState={filterState}
|
|
882
882
|
onFilterStateChange={setFilterState}
|
|
883
883
|
sortFields={SORT_FIELDS}
|
|
884
|
-
actions={
|
|
884
|
+
actions={<SaveViewButton />}
|
|
885
885
|
>
|
|
886
886
|
<SearchBar size="sm" className="w-[200px]" />
|
|
887
887
|
</FilterSystem>
|
|
@@ -909,9 +909,18 @@ import {
|
|
|
909
909
|
| `FilterChip` | Presentational segmented chip |
|
|
910
910
|
| `InteractiveFilterChip` | FilterChip with per-segment popovers (property, operator, value, kebab) |
|
|
911
911
|
| `PropertySelector` | 2-level popover: categories → properties with search |
|
|
912
|
-
| `AdvancedChip` | "Advanced
|
|
913
|
-
| `AdvancedPopover` |
|
|
912
|
+
| `AdvancedChip` | Split button "Advanced filters (N)" + close (outlined neutral) |
|
|
913
|
+
| `AdvancedPopover` | Popover with Where/And/Or rows, property/operator selects, inline value input |
|
|
914
914
|
| `SaveViewButton` | Split button (Save view + dropdown chevron) |
|
|
915
|
+
| `SummaryChip` | Minimal mode: "Filters (N)" with interactive popover |
|
|
916
|
+
|
|
917
|
+
**Responsive:** FilterSystem auto-detects container width via `ResizeObserver`:
|
|
918
|
+
- **Default** (>600px): full chips, labels, "Filters" button
|
|
919
|
+
- **Minimal** (≤600px): SummaryChip "Filters (N)" with interactive popover, icon-only Sort/Filter buttons
|
|
920
|
+
|
|
921
|
+
**Built-in Clear:** appears automatically when filters are active ("Clear" text in default, × icon in minimal).
|
|
922
|
+
|
|
923
|
+
**And/Or toggle:** each row in the advanced popover has an independent And/Or toggle button (click to switch).
|
|
915
924
|
|
|
916
925
|
| Utility | Purpose |
|
|
917
926
|
|---|---|
|
package/dist/index.d.mts
CHANGED
|
@@ -751,17 +751,17 @@ interface SortButtonProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "on
|
|
|
751
751
|
activeField: string;
|
|
752
752
|
direction: "asc" | "desc";
|
|
753
753
|
onChange?: (field: string, direction: "asc" | "desc") => void;
|
|
754
|
+
/** Show only the sort icon, no label. */
|
|
755
|
+
iconOnly?: boolean;
|
|
754
756
|
}
|
|
755
757
|
declare const SortButton: React.FC<SortButtonProps>;
|
|
756
758
|
|
|
757
759
|
interface FilterBarButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
758
760
|
/** Number of active filters (shown as badge if > 0). */
|
|
759
761
|
count?: number;
|
|
762
|
+
/** Show only the icon, no label. */
|
|
763
|
+
iconOnly?: boolean;
|
|
760
764
|
}
|
|
761
|
-
/**
|
|
762
|
-
* The "Filters" trigger button in the FilterBar.
|
|
763
|
-
* Outlined/secondary style matching the Figma spec.
|
|
764
|
-
*/
|
|
765
765
|
declare const FilterBarButton: React.ForwardRefExoticComponent<FilterBarButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
766
766
|
|
|
767
767
|
interface SaveViewButtonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -853,11 +853,21 @@ interface InteractiveFilterChipProps {
|
|
|
853
853
|
}
|
|
854
854
|
declare const InteractiveFilterChip: React.FC<InteractiveFilterChipProps>;
|
|
855
855
|
|
|
856
|
+
type FilterBarMode = "default" | "minimal";
|
|
857
|
+
/**
|
|
858
|
+
* Observes the container width and returns the appropriate FilterBar mode.
|
|
859
|
+
* - default: > 600px
|
|
860
|
+
* - minimal: ≤ 600px
|
|
861
|
+
*/
|
|
862
|
+
declare function useFilterBarMode(ref: React.RefObject<HTMLElement | null>, override?: FilterBarMode): FilterBarMode;
|
|
863
|
+
|
|
856
864
|
interface FilterSystemProps {
|
|
857
865
|
properties: PropertyDefinition[];
|
|
858
866
|
filterState: FilterState;
|
|
859
867
|
onFilterStateChange: (state: FilterState) => void;
|
|
860
868
|
sortFields?: SortField[];
|
|
869
|
+
/** Force a specific mode instead of auto-detecting via ResizeObserver. */
|
|
870
|
+
mode?: FilterBarMode;
|
|
861
871
|
children?: React.ReactNode;
|
|
862
872
|
actions?: React.ReactNode;
|
|
863
873
|
className?: string;
|
|
@@ -873,8 +883,10 @@ interface AdvancedChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement
|
|
|
873
883
|
declare const AdvancedChip: React.ForwardRefExoticComponent<AdvancedChipProps & React.RefAttributes<HTMLButtonElement>>;
|
|
874
884
|
|
|
875
885
|
interface AdvancedRowProps {
|
|
876
|
-
/** "Where" for the first row, "And" for subsequent. */
|
|
877
|
-
connector: "Where" | "And";
|
|
886
|
+
/** "Where" for the first row, "And"/"Or" for subsequent. */
|
|
887
|
+
connector: "Where" | "And" | "Or";
|
|
888
|
+
/** Called when the And/Or toggle is clicked. */
|
|
889
|
+
onConnectorToggle?: () => void;
|
|
878
890
|
propertyDef: PropertyDefinition;
|
|
879
891
|
condition: FilterCondition;
|
|
880
892
|
properties: PropertyDefinition[];
|
|
@@ -894,6 +906,16 @@ interface AdvancedPopoverProps {
|
|
|
894
906
|
}
|
|
895
907
|
declare const AdvancedPopover: React.FC<AdvancedPopoverProps>;
|
|
896
908
|
|
|
909
|
+
interface SummaryChipProps {
|
|
910
|
+
count: number;
|
|
911
|
+
filters: FilterCondition[];
|
|
912
|
+
properties: PropertyDefinition[];
|
|
913
|
+
onFiltersChange: (filters: FilterCondition[]) => void;
|
|
914
|
+
onClearAll: () => void;
|
|
915
|
+
className?: string;
|
|
916
|
+
}
|
|
917
|
+
declare const SummaryChip: React.FC<SummaryChipProps>;
|
|
918
|
+
|
|
897
919
|
type DateRange = {
|
|
898
920
|
from: Date;
|
|
899
921
|
to?: Date;
|
|
@@ -936,4 +958,4 @@ declare const DatePickerTrigger: React.ForwardRefExoticComponent<PopoverPrimitiv
|
|
|
936
958
|
declare const DatePickerPopover: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
937
959
|
declare function getDefaultSuggestions(referenceDate?: Date): DatePickerSuggestion[];
|
|
938
960
|
|
|
939
|
-
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 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, 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, 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, useSidebarContext };
|
|
961
|
+
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, 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
|
@@ -751,17 +751,17 @@ interface SortButtonProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "on
|
|
|
751
751
|
activeField: string;
|
|
752
752
|
direction: "asc" | "desc";
|
|
753
753
|
onChange?: (field: string, direction: "asc" | "desc") => void;
|
|
754
|
+
/** Show only the sort icon, no label. */
|
|
755
|
+
iconOnly?: boolean;
|
|
754
756
|
}
|
|
755
757
|
declare const SortButton: React.FC<SortButtonProps>;
|
|
756
758
|
|
|
757
759
|
interface FilterBarButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
758
760
|
/** Number of active filters (shown as badge if > 0). */
|
|
759
761
|
count?: number;
|
|
762
|
+
/** Show only the icon, no label. */
|
|
763
|
+
iconOnly?: boolean;
|
|
760
764
|
}
|
|
761
|
-
/**
|
|
762
|
-
* The "Filters" trigger button in the FilterBar.
|
|
763
|
-
* Outlined/secondary style matching the Figma spec.
|
|
764
|
-
*/
|
|
765
765
|
declare const FilterBarButton: React.ForwardRefExoticComponent<FilterBarButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
766
766
|
|
|
767
767
|
interface SaveViewButtonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -853,11 +853,21 @@ interface InteractiveFilterChipProps {
|
|
|
853
853
|
}
|
|
854
854
|
declare const InteractiveFilterChip: React.FC<InteractiveFilterChipProps>;
|
|
855
855
|
|
|
856
|
+
type FilterBarMode = "default" | "minimal";
|
|
857
|
+
/**
|
|
858
|
+
* Observes the container width and returns the appropriate FilterBar mode.
|
|
859
|
+
* - default: > 600px
|
|
860
|
+
* - minimal: ≤ 600px
|
|
861
|
+
*/
|
|
862
|
+
declare function useFilterBarMode(ref: React.RefObject<HTMLElement | null>, override?: FilterBarMode): FilterBarMode;
|
|
863
|
+
|
|
856
864
|
interface FilterSystemProps {
|
|
857
865
|
properties: PropertyDefinition[];
|
|
858
866
|
filterState: FilterState;
|
|
859
867
|
onFilterStateChange: (state: FilterState) => void;
|
|
860
868
|
sortFields?: SortField[];
|
|
869
|
+
/** Force a specific mode instead of auto-detecting via ResizeObserver. */
|
|
870
|
+
mode?: FilterBarMode;
|
|
861
871
|
children?: React.ReactNode;
|
|
862
872
|
actions?: React.ReactNode;
|
|
863
873
|
className?: string;
|
|
@@ -873,8 +883,10 @@ interface AdvancedChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement
|
|
|
873
883
|
declare const AdvancedChip: React.ForwardRefExoticComponent<AdvancedChipProps & React.RefAttributes<HTMLButtonElement>>;
|
|
874
884
|
|
|
875
885
|
interface AdvancedRowProps {
|
|
876
|
-
/** "Where" for the first row, "And" for subsequent. */
|
|
877
|
-
connector: "Where" | "And";
|
|
886
|
+
/** "Where" for the first row, "And"/"Or" for subsequent. */
|
|
887
|
+
connector: "Where" | "And" | "Or";
|
|
888
|
+
/** Called when the And/Or toggle is clicked. */
|
|
889
|
+
onConnectorToggle?: () => void;
|
|
878
890
|
propertyDef: PropertyDefinition;
|
|
879
891
|
condition: FilterCondition;
|
|
880
892
|
properties: PropertyDefinition[];
|
|
@@ -894,6 +906,16 @@ interface AdvancedPopoverProps {
|
|
|
894
906
|
}
|
|
895
907
|
declare const AdvancedPopover: React.FC<AdvancedPopoverProps>;
|
|
896
908
|
|
|
909
|
+
interface SummaryChipProps {
|
|
910
|
+
count: number;
|
|
911
|
+
filters: FilterCondition[];
|
|
912
|
+
properties: PropertyDefinition[];
|
|
913
|
+
onFiltersChange: (filters: FilterCondition[]) => void;
|
|
914
|
+
onClearAll: () => void;
|
|
915
|
+
className?: string;
|
|
916
|
+
}
|
|
917
|
+
declare const SummaryChip: React.FC<SummaryChipProps>;
|
|
918
|
+
|
|
897
919
|
type DateRange = {
|
|
898
920
|
from: Date;
|
|
899
921
|
to?: Date;
|
|
@@ -936,4 +958,4 @@ declare const DatePickerTrigger: React.ForwardRefExoticComponent<PopoverPrimitiv
|
|
|
936
958
|
declare const DatePickerPopover: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
937
959
|
declare function getDefaultSuggestions(referenceDate?: Date): DatePickerSuggestion[];
|
|
938
960
|
|
|
939
|
-
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 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, 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, 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, useSidebarContext };
|
|
961
|
+
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, 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 };
|