@homebound/beam 3.12.3 → 3.13.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/index.cjs +2026 -1911
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +131 -131
- package/dist/index.d.ts +131 -131
- package/dist/index.js +1956 -1840
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5747,22 +5747,6 @@ interface AccordionListProps {
|
|
|
5747
5747
|
}
|
|
5748
5748
|
declare function AccordionList(props: AccordionListProps): JSX.Element;
|
|
5749
5749
|
|
|
5750
|
-
interface AutoSaveIndicatorProps {
|
|
5751
|
-
hideOnIdle?: boolean;
|
|
5752
|
-
doNotReset?: boolean;
|
|
5753
|
-
}
|
|
5754
|
-
declare function AutoSaveIndicator({ hideOnIdle, doNotReset }: AutoSaveIndicatorProps): JSX.Element | null;
|
|
5755
|
-
|
|
5756
|
-
interface AvatarProps {
|
|
5757
|
-
src: string | undefined;
|
|
5758
|
-
name?: string;
|
|
5759
|
-
size?: AvatarSize;
|
|
5760
|
-
showName?: boolean;
|
|
5761
|
-
preventTooltip?: boolean;
|
|
5762
|
-
}
|
|
5763
|
-
declare function Avatar({ src, name, size, showName, preventTooltip, ...others }: AvatarProps): JSX.Element;
|
|
5764
|
-
type AvatarSize = "sm" | "md" | "lg" | "xl";
|
|
5765
|
-
|
|
5766
5750
|
/** Base Interfaced */
|
|
5767
5751
|
interface BeamFocusableProps {
|
|
5768
5752
|
/** Whether the element should receive focus on render. */
|
|
@@ -5819,6 +5803,78 @@ interface TextFieldInternalProps {
|
|
|
5819
5803
|
forceHover?: boolean;
|
|
5820
5804
|
}
|
|
5821
5805
|
|
|
5806
|
+
type NavLinkVariant = "side" | "global";
|
|
5807
|
+
type NavLinkProps = {
|
|
5808
|
+
/** active indicates the user is on the current page */
|
|
5809
|
+
active?: boolean;
|
|
5810
|
+
disabled?: boolean;
|
|
5811
|
+
label: ReactNode;
|
|
5812
|
+
icon?: IconKey;
|
|
5813
|
+
variant: NavLinkVariant;
|
|
5814
|
+
openInNew?: boolean;
|
|
5815
|
+
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
5816
|
+
menuTriggerProps?: AriaButtonProps;
|
|
5817
|
+
buttonRef?: RefObject<HTMLElement>;
|
|
5818
|
+
/**
|
|
5819
|
+
* When true with an `icon`, shows icon only but keeps `label` for accessibility
|
|
5820
|
+
* (visually hidden text). Used by SideNav when the rail is collapsed.
|
|
5821
|
+
*/
|
|
5822
|
+
iconOnly?: boolean;
|
|
5823
|
+
onClick?: BeamButtonProps["onClick"];
|
|
5824
|
+
} & BeamFocusableProps;
|
|
5825
|
+
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
5826
|
+
declare function getNavLinkStyles(variant: NavLinkVariant): {
|
|
5827
|
+
baseStyles: Properties;
|
|
5828
|
+
hoverStyles: Properties;
|
|
5829
|
+
disabledStyles: Properties;
|
|
5830
|
+
focusRingStyles: Properties;
|
|
5831
|
+
activeStyles: Properties;
|
|
5832
|
+
pressedStyles: Properties;
|
|
5833
|
+
};
|
|
5834
|
+
|
|
5835
|
+
/** A single nav link. String `label` only; see `NavLinkProps.label` (ReactNode) for the wider API. */
|
|
5836
|
+
type AppNavLink = Pick<NavLinkProps, "icon" | "onClick" | "active" | "disabled" | "openInNew" | "iconOnly"> & {
|
|
5837
|
+
label: string;
|
|
5838
|
+
};
|
|
5839
|
+
/**
|
|
5840
|
+
* Collapsible labeled block of nav links (side-nav disclosure or global-nav menu trigger).
|
|
5841
|
+
* Use unlabeled {@link AppNavSection} children to group menu rows with dividers.
|
|
5842
|
+
* Differs from AppNavSection in that AppNavGroup can be collapsed/expanded, and there is no visually distinct separation
|
|
5843
|
+
*/
|
|
5844
|
+
type AppNavGroup = {
|
|
5845
|
+
label: string;
|
|
5846
|
+
items: AppNavItem[];
|
|
5847
|
+
defaultExpanded?: boolean;
|
|
5848
|
+
};
|
|
5849
|
+
type AppNavSectionItem = AppNavLink | AppNavGroup;
|
|
5850
|
+
/** Static section chrome (optional heading, divider) containing links, link groups, and/or nested sections.
|
|
5851
|
+
* Used to group links into visually distinct sections.
|
|
5852
|
+
* Differs from AppNavGroup in that it cannot be collapsed/expanded
|
|
5853
|
+
*/
|
|
5854
|
+
type AppNavSection = {
|
|
5855
|
+
/** Discriminant — distinguishes sections from {@link AppNavGroup} (both use `items`). */
|
|
5856
|
+
section: true;
|
|
5857
|
+
label?: string;
|
|
5858
|
+
items: AppNavItem[];
|
|
5859
|
+
};
|
|
5860
|
+
type AppNavItem = AppNavLink | AppNavGroup | AppNavSection;
|
|
5861
|
+
|
|
5862
|
+
interface AutoSaveIndicatorProps {
|
|
5863
|
+
hideOnIdle?: boolean;
|
|
5864
|
+
doNotReset?: boolean;
|
|
5865
|
+
}
|
|
5866
|
+
declare function AutoSaveIndicator({ hideOnIdle, doNotReset }: AutoSaveIndicatorProps): JSX.Element | null;
|
|
5867
|
+
|
|
5868
|
+
interface AvatarProps {
|
|
5869
|
+
src: string | undefined;
|
|
5870
|
+
name?: string;
|
|
5871
|
+
size?: AvatarSize;
|
|
5872
|
+
showName?: boolean;
|
|
5873
|
+
preventTooltip?: boolean;
|
|
5874
|
+
}
|
|
5875
|
+
declare function Avatar({ src, name, size, showName, preventTooltip, ...others }: AvatarProps): JSX.Element;
|
|
5876
|
+
type AvatarSize = "sm" | "md" | "lg" | "xl";
|
|
5877
|
+
|
|
5822
5878
|
interface AvatarButtonProps extends AvatarProps, BeamButtonProps, BeamFocusableProps {
|
|
5823
5879
|
menuTriggerProps?: AriaButtonProps;
|
|
5824
5880
|
buttonRef?: RefObject<HTMLButtonElement>;
|
|
@@ -6058,47 +6114,6 @@ declare const iconButtonCircleStylesHover: Pick<Properties, never> & {
|
|
|
6058
6114
|
readonly __kind: "buildtime";
|
|
6059
6115
|
};
|
|
6060
6116
|
|
|
6061
|
-
type NavLinkVariant = "side" | "global";
|
|
6062
|
-
type NavLinkProps = {
|
|
6063
|
-
/** active indicates the user is on the current page */
|
|
6064
|
-
active?: boolean;
|
|
6065
|
-
disabled?: boolean;
|
|
6066
|
-
label: ReactNode;
|
|
6067
|
-
icon?: IconKey;
|
|
6068
|
-
variant: NavLinkVariant;
|
|
6069
|
-
openInNew?: boolean;
|
|
6070
|
-
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
6071
|
-
menuTriggerProps?: AriaButtonProps;
|
|
6072
|
-
buttonRef?: RefObject<HTMLElement>;
|
|
6073
|
-
/**
|
|
6074
|
-
* When true with an `icon`, shows icon only but keeps `label` for accessibility
|
|
6075
|
-
* (visually hidden text). Used by SideNav when the rail is collapsed.
|
|
6076
|
-
*/
|
|
6077
|
-
iconOnly?: boolean;
|
|
6078
|
-
onClick?: BeamButtonProps["onClick"];
|
|
6079
|
-
} & BeamFocusableProps;
|
|
6080
|
-
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
6081
|
-
declare function getNavLinkStyles(variant: NavLinkVariant): {
|
|
6082
|
-
baseStyles: Properties;
|
|
6083
|
-
hoverStyles: Properties;
|
|
6084
|
-
disabledStyles: Properties;
|
|
6085
|
-
focusRingStyles: Properties;
|
|
6086
|
-
activeStyles: Properties;
|
|
6087
|
-
pressedStyles: Properties;
|
|
6088
|
-
};
|
|
6089
|
-
|
|
6090
|
-
/** Side-nav link config; `label` is a string (NavLink itself still accepts ReactNode for other callers). */
|
|
6091
|
-
type NavGroupLink = Pick<NavLinkProps, "icon" | "onClick" | "active" | "disabled" | "openInNew"> & {
|
|
6092
|
-
label: string;
|
|
6093
|
-
};
|
|
6094
|
-
type NavGroupProps = {
|
|
6095
|
-
label: string;
|
|
6096
|
-
links: NavGroupLink[];
|
|
6097
|
-
expanded: boolean;
|
|
6098
|
-
onClick: VoidFunction;
|
|
6099
|
-
};
|
|
6100
|
-
declare function NavGroup(props: NavGroupProps): JSX.Element;
|
|
6101
|
-
|
|
6102
6117
|
type TextButtonTriggerProps = Pick<ButtonProps, "label" | "variant" | "size" | "icon">;
|
|
6103
6118
|
type IconButtonTriggerProps = Pick<IconButtonProps, "icon" | "color" | "compact" | "inc">;
|
|
6104
6119
|
type AvatarButtonTriggerProps = Pick<AvatarButtonProps, "src" | "name" | "size" | "preventTooltip">;
|
|
@@ -8510,11 +8525,66 @@ interface UseModalHook {
|
|
|
8510
8525
|
}
|
|
8511
8526
|
declare function useModal(): UseModalHook;
|
|
8512
8527
|
|
|
8513
|
-
|
|
8528
|
+
type Tab<V extends string = string> = {
|
|
8529
|
+
name: string;
|
|
8530
|
+
value: V;
|
|
8531
|
+
icon?: IconKey;
|
|
8532
|
+
endAdornment?: ReactNode;
|
|
8533
|
+
/** Whether the Tab is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
8534
|
+
disabled?: boolean | ReactNode;
|
|
8535
|
+
};
|
|
8536
|
+
type TabsContentXss = Xss<Margin | Padding | "backgroundColor">;
|
|
8537
|
+
type TabsProps<V extends string, X> = {
|
|
8538
|
+
ariaLabel?: string;
|
|
8539
|
+
selected: V;
|
|
8540
|
+
tabs: Tab<V>[];
|
|
8541
|
+
onChange: (value: V) => void;
|
|
8542
|
+
contentXss?: X;
|
|
8543
|
+
/** If you want to set your own padding in `contentXss`, you can disable the default FullBleed padding here. */
|
|
8544
|
+
omitFullBleedPadding?: boolean;
|
|
8545
|
+
alwaysShowAllTabs?: boolean;
|
|
8546
|
+
includeBottomBorder?: boolean;
|
|
8547
|
+
right?: ReactNode;
|
|
8548
|
+
};
|
|
8549
|
+
type RouteTabsProps<V extends string, X> = {
|
|
8550
|
+
tabs: RouteTab<V>[];
|
|
8551
|
+
} & Omit<TabsProps<V, X>, "onChange" | "selected" | "tabs">;
|
|
8552
|
+
type RouteTab<V extends string = string> = {
|
|
8553
|
+
href: V;
|
|
8554
|
+
path: string | string[];
|
|
8555
|
+
} & Omit<Tab<V>, "value">;
|
|
8556
|
+
type TabWithContent<V extends string = string> = {
|
|
8557
|
+
render: () => ReactNode;
|
|
8558
|
+
} & Omit<Tab<V>, "render">;
|
|
8559
|
+
type RouteTabWithContent<V extends string = string> = {
|
|
8560
|
+
render: () => ReactNode;
|
|
8561
|
+
} & Omit<RouteTab<V>, "render">;
|
|
8562
|
+
type RequiredRenderTabs<V extends string, X> = {
|
|
8563
|
+
tabs: TabWithContent<V>[];
|
|
8564
|
+
} & Omit<TabsProps<V, X>, "tabs">;
|
|
8565
|
+
type RequiredRenderRouteTabs<V extends string, X> = {
|
|
8566
|
+
tabs: RouteTabWithContent<V>[];
|
|
8567
|
+
} & Omit<RouteTabsProps<V, X>, "tabs">;
|
|
8568
|
+
/**
|
|
8569
|
+
* Provides a list of tabs and their content.
|
|
8570
|
+
*
|
|
8571
|
+
* The caller is responsible for using `selected` / `onChange` to control
|
|
8572
|
+
* the current tab.
|
|
8573
|
+
*
|
|
8574
|
+
* If you want to tease apart Tabs from their TabContent, you can use the `Tab`
|
|
8575
|
+
* and `TabContent` components directly.
|
|
8576
|
+
*/
|
|
8577
|
+
declare function TabsWithContent<V extends string, X extends Only<TabsContentXss, X>>(props: RequiredRenderTabs<V, X> | RequiredRenderRouteTabs<V, X>): JSX.Element;
|
|
8578
|
+
declare function TabContent<V extends string, X extends Only<TabsContentXss, X>>(props: Omit<RequiredRenderTabs<V, X>, "onChange"> | RequiredRenderRouteTabs<V, X>): JSX.Element;
|
|
8579
|
+
/** The top list of tabs. */
|
|
8580
|
+
declare function Tabs<V extends string, X extends Only<TabsContentXss, X>>(props: TabsProps<V, X> | RouteTabsProps<V, X>): JSX.Element;
|
|
8581
|
+
|
|
8582
|
+
interface PageHeaderProps<V extends string, X> {
|
|
8514
8583
|
title: ReactNode;
|
|
8515
8584
|
rightSlot?: ReactNode;
|
|
8585
|
+
tabs?: Omit<TabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder"> | Omit<RouteTabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder">;
|
|
8516
8586
|
}
|
|
8517
|
-
declare function PageHeader(props: PageHeaderProps): JSX.Element;
|
|
8587
|
+
declare function PageHeader<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderProps<V, X>): JSX.Element;
|
|
8518
8588
|
|
|
8519
8589
|
type ScrollShadowsProps = {
|
|
8520
8590
|
children: ReactNode;
|
|
@@ -8527,27 +8597,11 @@ type ScrollShadowsProps = {
|
|
|
8527
8597
|
};
|
|
8528
8598
|
declare function ScrollShadows(props: ScrollShadowsProps): JSX.Element;
|
|
8529
8599
|
|
|
8530
|
-
/** String labels only; see `NavGroupLink` / `NavLinkProps.label` (ReactNode) for the wider API. */
|
|
8531
|
-
type SideNavLink = NavGroupLink;
|
|
8532
|
-
/** Collapsible labeled block of side-nav links (renders as an expandable disclosure). */
|
|
8533
|
-
type SideNavLinkGroup = {
|
|
8534
|
-
label: string;
|
|
8535
|
-
links: SideNavLink[];
|
|
8536
|
-
defaultExpanded?: boolean;
|
|
8537
|
-
};
|
|
8538
|
-
type SideNavSectionItem = SideNavLink | SideNavLinkGroup;
|
|
8539
|
-
/** Static section chrome (optional heading, divider) containing links, link groups, and/or nested sections. */
|
|
8540
|
-
type SideNavSection = {
|
|
8541
|
-
label?: string;
|
|
8542
|
-
items: SideNavItem[];
|
|
8543
|
-
};
|
|
8544
|
-
type SideNavItem = SideNavLink | SideNavLinkGroup | SideNavSection;
|
|
8545
|
-
|
|
8546
8600
|
type SideNavProps = {
|
|
8547
8601
|
/** Optional area above the item list (logo, workspace switcher, etc.). */
|
|
8548
8602
|
top?: ReactNode;
|
|
8549
8603
|
/** Top-level entries — links, link groups, and/or sections. */
|
|
8550
|
-
items:
|
|
8604
|
+
items: AppNavItem[];
|
|
8551
8605
|
/** Optional area pinned to the bottom (user menu, settings, sign-out). */
|
|
8552
8606
|
footer?: ReactNode;
|
|
8553
8607
|
};
|
|
@@ -8646,60 +8700,6 @@ interface SuperDrawerContentProps {
|
|
|
8646
8700
|
*/
|
|
8647
8701
|
declare const SuperDrawerContent: ({ children, actions }: SuperDrawerContentProps) => JSX.Element;
|
|
8648
8702
|
|
|
8649
|
-
type Tab<V extends string = string> = {
|
|
8650
|
-
name: string;
|
|
8651
|
-
value: V;
|
|
8652
|
-
icon?: IconKey;
|
|
8653
|
-
endAdornment?: ReactNode;
|
|
8654
|
-
/** Whether the Tab is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
8655
|
-
disabled?: boolean | ReactNode;
|
|
8656
|
-
};
|
|
8657
|
-
type TabsContentXss = Xss<Margin | Padding | "backgroundColor">;
|
|
8658
|
-
type TabsProps<V extends string, X> = {
|
|
8659
|
-
ariaLabel?: string;
|
|
8660
|
-
selected: V;
|
|
8661
|
-
tabs: Tab<V>[];
|
|
8662
|
-
onChange: (value: V) => void;
|
|
8663
|
-
contentXss?: X;
|
|
8664
|
-
/** If you want to set your own padding in `contentXss`, you can disable the default FullBleed padding here. */
|
|
8665
|
-
omitFullBleedPadding?: boolean;
|
|
8666
|
-
alwaysShowAllTabs?: boolean;
|
|
8667
|
-
includeBottomBorder?: boolean;
|
|
8668
|
-
right?: ReactNode;
|
|
8669
|
-
};
|
|
8670
|
-
type RouteTabsProps<V extends string, X> = {
|
|
8671
|
-
tabs: RouteTab<V>[];
|
|
8672
|
-
} & Omit<TabsProps<V, X>, "onChange" | "selected" | "tabs">;
|
|
8673
|
-
type RouteTab<V extends string = string> = {
|
|
8674
|
-
href: V;
|
|
8675
|
-
path: string | string[];
|
|
8676
|
-
} & Omit<Tab<V>, "value">;
|
|
8677
|
-
type TabWithContent<V extends string = string> = {
|
|
8678
|
-
render: () => ReactNode;
|
|
8679
|
-
} & Omit<Tab<V>, "render">;
|
|
8680
|
-
type RouteTabWithContent<V extends string = string> = {
|
|
8681
|
-
render: () => ReactNode;
|
|
8682
|
-
} & Omit<RouteTab<V>, "render">;
|
|
8683
|
-
type RequiredRenderTabs<V extends string, X> = {
|
|
8684
|
-
tabs: TabWithContent<V>[];
|
|
8685
|
-
} & Omit<TabsProps<V, X>, "tabs">;
|
|
8686
|
-
type RequiredRenderRouteTabs<V extends string, X> = {
|
|
8687
|
-
tabs: RouteTabWithContent<V>[];
|
|
8688
|
-
} & Omit<RouteTabsProps<V, X>, "tabs">;
|
|
8689
|
-
/**
|
|
8690
|
-
* Provides a list of tabs and their content.
|
|
8691
|
-
*
|
|
8692
|
-
* The caller is responsible for using `selected` / `onChange` to control
|
|
8693
|
-
* the current tab.
|
|
8694
|
-
*
|
|
8695
|
-
* If you want to tease apart Tabs from their TabContent, you can use the `Tab`
|
|
8696
|
-
* and `TabContent` components directly.
|
|
8697
|
-
*/
|
|
8698
|
-
declare function TabsWithContent<V extends string, X extends Only<TabsContentXss, X>>(props: RequiredRenderTabs<V, X> | RequiredRenderRouteTabs<V, X>): JSX.Element;
|
|
8699
|
-
declare function TabContent<V extends string>(props: Omit<RequiredRenderTabs<V, AnyObject>, "onChange"> | RequiredRenderRouteTabs<V, AnyObject>): JSX.Element;
|
|
8700
|
-
/** The top list of tabs. */
|
|
8701
|
-
declare function Tabs<V extends string>(props: TabsProps<V, AnyObject> | RouteTabsProps<V, AnyObject>): JSX.Element;
|
|
8702
|
-
|
|
8703
8703
|
declare function Toast(): JSX.Element;
|
|
8704
8704
|
|
|
8705
8705
|
interface ToastNoticeProps extends Omit<BannerProps, "onClose"> {
|
|
@@ -8817,4 +8817,4 @@ declare const zIndices: {
|
|
|
8817
8817
|
};
|
|
8818
8818
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
8819
8819
|
|
|
8820
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps,
|
|
8820
|
+
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
|