@homebound/beam 3.7.0 → 3.8.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/Css.json +7 -6
- package/dist/index.cjs +1867 -1850
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +404 -292
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +134 -72
- package/dist/index.d.ts +134 -72
- package/dist/index.js +1302 -1290
- package/dist/index.js.map +1 -1
- package/dist/truss.css +11 -33
- package/package.json +16 -10
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as csstype from 'csstype';
|
|
2
2
|
import { Properties as Properties$1 } from 'csstype';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
|
-
import React__default, { PropsWithChildren,
|
|
4
|
+
import React__default, { PropsWithChildren, ReactNode, AriaAttributes, ReactElement, MutableRefObject, Dispatch, SetStateAction, RefObject, ButtonHTMLAttributes, KeyboardEvent, LabelHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, Key, HTMLAttributes, ReactPortal } from 'react';
|
|
5
5
|
import { Temporal } from 'temporal-polyfill';
|
|
6
6
|
import { DOMProps, PressEvent, Key as Key$1 } from '@react-types/shared';
|
|
7
7
|
import { VirtuosoHandle, ListRange } from 'react-virtuoso';
|
|
@@ -40,7 +40,67 @@ type RuntimeStyles = RawCssProperties & {
|
|
|
40
40
|
readonly __kind: "runtime";
|
|
41
41
|
};
|
|
42
42
|
type Typography = "xs2" | "xs2Sb" | "xs" | "xsSb" | "sm" | "smSb" | "md" | "mdSb" | "lg" | "xl" | "xl2";
|
|
43
|
-
|
|
43
|
+
declare enum Tokens {
|
|
44
|
+
ButtonCautionDisabledBg = "--b-button-caution-disabled-bg",
|
|
45
|
+
ButtonCautionDisabledFg = "--b-button-caution-disabled-fg",
|
|
46
|
+
ButtonDangerDisabledBg = "--b-button-danger-disabled-bg",
|
|
47
|
+
ButtonDangerDisabledFg = "--b-button-danger-disabled-fg",
|
|
48
|
+
ButtonGhostDisabledFg = "--b-button-ghost-disabled-fg",
|
|
49
|
+
ButtonGhostFg = "--b-button-ghost-fg",
|
|
50
|
+
ButtonPrimaryDisabledBg = "--b-button-primary-disabled-bg",
|
|
51
|
+
ButtonPrimaryDisabledFg = "--b-button-primary-disabled-fg",
|
|
52
|
+
ButtonTertiaryFg = "--b-button-tertiary-fg",
|
|
53
|
+
ButtonTertiaryFgPressed = "--b-button-tertiary-fg-pressed",
|
|
54
|
+
Danger = "--b-danger",
|
|
55
|
+
DangerPressed = "--b-danger-pressed",
|
|
56
|
+
FieldBgDefault = "--b-field-bg-default",
|
|
57
|
+
FieldBgDisabled = "--b-field-bg-disabled",
|
|
58
|
+
FieldBgHover = "--b-field-bg-hover",
|
|
59
|
+
FieldBorderDefault = "--b-field-border-default",
|
|
60
|
+
FieldBorderError = "--b-field-border-error",
|
|
61
|
+
FieldBorderFocus = "--b-field-border-focus",
|
|
62
|
+
FieldBorderHover = "--b-field-border-hover",
|
|
63
|
+
FieldTextDisabled = "--b-field-text-disabled",
|
|
64
|
+
FocusRingInset = "--b-focus-ring-inset",
|
|
65
|
+
FocusRingMuted = "--b-focus-ring-muted",
|
|
66
|
+
ListRowBgHover = "--b-list-row-bg-hover",
|
|
67
|
+
LoaderSpinner = "--b-loader-spinner",
|
|
68
|
+
LoaderTrack = "--b-loader-track",
|
|
69
|
+
MenuItemBgHover = "--b-menu-item-bg-hover",
|
|
70
|
+
NavItemBgActive = "--b-nav-item-bg-active",
|
|
71
|
+
NavItemBgHover = "--b-nav-item-bg-hover",
|
|
72
|
+
NavItemBgPressed = "--b-nav-item-bg-pressed",
|
|
73
|
+
NavText = "--b-nav-text",
|
|
74
|
+
NavTextActive = "--b-nav-text-active",
|
|
75
|
+
NavTextDisabled = "--b-nav-text-disabled",
|
|
76
|
+
NavTextFocusVisible = "--b-nav-text-focus-visible",
|
|
77
|
+
NavTextPressed = "--b-nav-text-pressed",
|
|
78
|
+
NeutralFillHoverStrong = "--b-neutral-fill-hover-strong",
|
|
79
|
+
NeutralFillHoverSubtle = "--b-neutral-fill-hover-subtle",
|
|
80
|
+
NeutralFillPressed = "--b-neutral-fill-pressed",
|
|
81
|
+
NeutralSurfacePressed = "--b-neutral-surface-pressed",
|
|
82
|
+
OnPrimary = "--b-on-primary",
|
|
83
|
+
OnSurface = "--b-on-surface",
|
|
84
|
+
OnSurfaceMuted = "--b-on-surface-muted",
|
|
85
|
+
PopoverSurface = "--b-popover-surface",
|
|
86
|
+
Primary = "--b-primary",
|
|
87
|
+
PrimaryHover = "--b-primary-hover",
|
|
88
|
+
PrimaryPressed = "--b-primary-pressed",
|
|
89
|
+
Scrim = "--b-scrim",
|
|
90
|
+
SelectionIndicator = "--b-selection-indicator",
|
|
91
|
+
StatusSuccessFg = "--b-status-success-fg",
|
|
92
|
+
Surface = "--b-surface",
|
|
93
|
+
TextDisabled = "--b-text-disabled",
|
|
94
|
+
TextHelper = "--b-text-helper",
|
|
95
|
+
TextLabel = "--b-text-label",
|
|
96
|
+
TextLinkDefault = "--b-text-link-default",
|
|
97
|
+
TextLinkDisabled = "--b-text-link-disabled",
|
|
98
|
+
TextLinkHover = "--b-text-link-hover",
|
|
99
|
+
TextLinkPressed = "--b-text-link-pressed",
|
|
100
|
+
TextPlaceholder = "--b-text-placeholder",
|
|
101
|
+
TextSelection = "--b-text-selection"
|
|
102
|
+
}
|
|
103
|
+
type CssSetVarKeys = Tokens | `--${string}`;
|
|
44
104
|
type CssSetVarScalar = string | number;
|
|
45
105
|
type CssSetVarValue = CssSetVarScalar | {
|
|
46
106
|
default?: CssSetVarScalar;
|
|
@@ -111,7 +171,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
111
171
|
} & {
|
|
112
172
|
borderWidth: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
113
173
|
}, S>;
|
|
114
|
-
/** Sets `borderColor: "rgba(255,255,255,1)"`. */
|
|
174
|
+
/** Sets `borderColor: "rgba(255, 255, 255, 1)"`. */
|
|
115
175
|
get bcWhite(): CssBuilder<T & {
|
|
116
176
|
borderColor: csstype.Property.BorderColor | undefined;
|
|
117
177
|
}, S>;
|
|
@@ -491,11 +551,11 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
491
551
|
get bshHover(): CssBuilder<T & {
|
|
492
552
|
boxShadow: csstype.Property.BoxShadow | undefined;
|
|
493
553
|
}, S>;
|
|
494
|
-
/** Sets `boxShadow: "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(29, 78, 216, 1)"`. */
|
|
554
|
+
/** Sets `boxShadow: "0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px rgba(29, 78, 216, 1)"`. */
|
|
495
555
|
get bshFocus(): CssBuilder<T & {
|
|
496
556
|
boxShadow: csstype.Property.BoxShadow | undefined;
|
|
497
557
|
}, S>;
|
|
498
|
-
/** Sets `boxShadow: "0px 0px 0px 2px rgba(255,255,255,1), 0px 0px 0px 4px rgba(153, 27, 27, 1)"`. */
|
|
558
|
+
/** Sets `boxShadow: "0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px rgba(153, 27, 27, 1)"`. */
|
|
499
559
|
get bshDanger(): CssBuilder<T & {
|
|
500
560
|
boxShadow: csstype.Property.BoxShadow | undefined;
|
|
501
561
|
}, S>;
|
|
@@ -1753,7 +1813,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
1753
1813
|
position(value: Properties["position"]): CssBuilder<T & {
|
|
1754
1814
|
position: csstype.Property.Position | undefined;
|
|
1755
1815
|
}, S>;
|
|
1756
|
-
/** Sets `color: "rgba(255,255,255,1)"`. */
|
|
1816
|
+
/** Sets `color: "rgba(255, 255, 255, 1)"`. */
|
|
1757
1817
|
get white(): CssBuilder<T & {
|
|
1758
1818
|
color: csstype.Property.Color | undefined;
|
|
1759
1819
|
}, S>;
|
|
@@ -2045,7 +2105,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
2045
2105
|
color(value: Properties["color"]): CssBuilder<T & {
|
|
2046
2106
|
color: csstype.Property.Color | undefined;
|
|
2047
2107
|
}, S>;
|
|
2048
|
-
/** Sets `backgroundColor: "rgba(255,255,255,1)"`. */
|
|
2108
|
+
/** Sets `backgroundColor: "rgba(255, 255, 255, 1)"`. */
|
|
2049
2109
|
get bgWhite(): CssBuilder<T & {
|
|
2050
2110
|
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
2051
2111
|
}, S>;
|
|
@@ -2337,7 +2397,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
2337
2397
|
bgColor(value: Properties["backgroundColor"]): CssBuilder<T & {
|
|
2338
2398
|
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
2339
2399
|
}, S>;
|
|
2340
|
-
/** Sets `fill: "rgba(255,255,255,1)"`. */
|
|
2400
|
+
/** Sets `fill: "rgba(255, 255, 255, 1)"`. */
|
|
2341
2401
|
get fWhite(): CssBuilder<T & {
|
|
2342
2402
|
fill: csstype.Property.Fill | undefined;
|
|
2343
2403
|
}, S>;
|
|
@@ -4173,12 +4233,14 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
4173
4233
|
}
|
|
4174
4234
|
/** Converts `inc` into a spacing length using `--t-spacing` (build-time atomic CSS). */
|
|
4175
4235
|
declare function maybeInc(inc: number | string): string;
|
|
4236
|
+
/** Wraps `--token` custom property names as `var(--token)` for CSS property values. */
|
|
4237
|
+
declare function maybeCssVar<T>(value: T): T;
|
|
4176
4238
|
/** Converts `inc` into pixels. */
|
|
4177
4239
|
declare function increment(inc: number): number;
|
|
4178
4240
|
/** Convert `pixels` to a `px` units string so it's not ambiguous. */
|
|
4179
4241
|
declare function px(pixels: number): string;
|
|
4180
4242
|
declare enum Palette {
|
|
4181
|
-
White = "rgba(255,255,255,1)",
|
|
4243
|
+
White = "rgba(255, 255, 255, 1)",
|
|
4182
4244
|
Transparent = "rgba(0,0,0,0)",
|
|
4183
4245
|
Gray50 = "rgba(255, 253, 253, 1)",
|
|
4184
4246
|
Gray100 = "rgba(247, 245, 245, 1)",
|
|
@@ -4276,6 +4338,19 @@ declare enum Breakpoints {
|
|
|
4276
4338
|
mdOrLg = "@media screen and (min-width: 600px)"
|
|
4277
4339
|
}
|
|
4278
4340
|
|
|
4341
|
+
declare const navLink = "navLink";
|
|
4342
|
+
/**
|
|
4343
|
+
* Applies a CSS Reset that is based on modern-normalize + TW customizations.
|
|
4344
|
+
*
|
|
4345
|
+
* The reset styles are now in CssReset.css and are loaded via a side-effect
|
|
4346
|
+
* import. This component is kept for API compatibility — render it at the top
|
|
4347
|
+
* of your app to ensure the CSS file is included in the bundle.
|
|
4348
|
+
*/
|
|
4349
|
+
declare function CssReset(): null;
|
|
4350
|
+
|
|
4351
|
+
/** Primitive (`Palette`), semantic (`Tokens`, `--b-*`), or CSS color keywords for props and Truss param methods. */
|
|
4352
|
+
type BeamColor = Palette | Tokens | "inherit" | "currentColor";
|
|
4353
|
+
|
|
4279
4354
|
type PlainDate = Temporal.PlainDate;
|
|
4280
4355
|
type DateRange = {
|
|
4281
4356
|
from: PlainDate | undefined;
|
|
@@ -4345,18 +4420,18 @@ declare function AutoSaveStatusProvider({ children, resetToIdleTimeout }: AutoSa
|
|
|
4345
4420
|
*/
|
|
4346
4421
|
declare function useAutoSaveStatus(): AutoSaveStatusContextType;
|
|
4347
4422
|
|
|
4348
|
-
|
|
4423
|
+
type IconProps = {
|
|
4349
4424
|
/** The name of an icon */
|
|
4350
4425
|
icon: IconKey;
|
|
4351
4426
|
/** Defaults to currentColor */
|
|
4352
|
-
color?:
|
|
4353
|
-
bgColor?:
|
|
4427
|
+
color?: BeamColor;
|
|
4428
|
+
bgColor?: BeamColor;
|
|
4354
4429
|
/** The size of the icon in increments, i.e. 1 == 8px, default is 3 == 24px. */
|
|
4355
4430
|
inc?: number;
|
|
4356
4431
|
/** Styles overrides */
|
|
4357
4432
|
xss?: Xss<Margin | "visibility" | "flexShrink">;
|
|
4358
4433
|
tooltip?: ReactNode;
|
|
4359
|
-
}
|
|
4434
|
+
} & AriaAttributes & DOMProps;
|
|
4360
4435
|
declare const Icon: React__default.MemoExoticComponent<(props: IconProps) => JSX.Element>;
|
|
4361
4436
|
/**
|
|
4362
4437
|
* Map of icons paths mapped to their respective name.
|
|
@@ -4606,7 +4681,7 @@ interface PresentationFieldProps {
|
|
|
4606
4681
|
errorInTooltip?: true;
|
|
4607
4682
|
/** Allow the fields to grow to the width of its container. By default, fields will extend up to 550px */
|
|
4608
4683
|
fullWidth?: boolean;
|
|
4609
|
-
/** Changes bg and hoverBg;
|
|
4684
|
+
/** Changes bg and hoverBg; useful when showing many fields w/in a table that require user attention; in no way should be used as a replacement for error/focus state */
|
|
4610
4685
|
inputStylePalette?: InputStylePalette;
|
|
4611
4686
|
}
|
|
4612
4687
|
type PresentationContextProps = {
|
|
@@ -4793,7 +4868,7 @@ declare const rowLinkRenderFn: (as: RenderAs, colSpan: number) => RenderCellFn<a
|
|
|
4793
4868
|
declare const rowClickRenderFn: (as: RenderAs, api: GridTableApi<any>, colSpan: number) => RenderCellFn<any>;
|
|
4794
4869
|
|
|
4795
4870
|
/** Completely static look & feel, i.e. nothing that is based on row kinds/content. */
|
|
4796
|
-
|
|
4871
|
+
type GridStyle = {
|
|
4797
4872
|
/** Applied to the base div element. */
|
|
4798
4873
|
rootCss?: Properties;
|
|
4799
4874
|
/** Extra bottom padding for the virtual-table footer loader/spacer, in pixels. */
|
|
@@ -4850,7 +4925,7 @@ interface GridStyle {
|
|
|
4850
4925
|
/** Applied if there is a fallback/overflow message showing. */
|
|
4851
4926
|
firstRowMessageCss?: Properties;
|
|
4852
4927
|
/** Applied on hover if a row has a rowLink/onClick set. */
|
|
4853
|
-
rowHoverColor?:
|
|
4928
|
+
rowHoverColor?: BeamColor | "none";
|
|
4854
4929
|
/** Default content to put into an empty cell */
|
|
4855
4930
|
emptyCell?: ReactNode;
|
|
4856
4931
|
presentationSettings?: Pick<PresentationFieldProps, "borderless" | "borderOnHover" | "typeScale"> & Pick<PresentationContextProps, "wrap">;
|
|
@@ -4873,8 +4948,8 @@ interface GridStyle {
|
|
|
4873
4948
|
keptGroupRowCss?: Properties;
|
|
4874
4949
|
/** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
|
|
4875
4950
|
keptLastRowCss?: Properties;
|
|
4876
|
-
}
|
|
4877
|
-
|
|
4951
|
+
};
|
|
4952
|
+
type GridStyleDef = {
|
|
4878
4953
|
/** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
|
|
4879
4954
|
inlineEditing?: boolean;
|
|
4880
4955
|
/** Adds styling for grouped rows */
|
|
@@ -4895,13 +4970,13 @@ interface GridStyleDef {
|
|
|
4895
4970
|
cellTypography?: Typography;
|
|
4896
4971
|
/** Defines if the table should highlight the row on hover. Defaults to true */
|
|
4897
4972
|
highlightOnHover?: boolean;
|
|
4898
|
-
}
|
|
4973
|
+
};
|
|
4899
4974
|
declare const getTableStyles: (props?: GridStyleDef) => GridStyle;
|
|
4900
4975
|
/** Defines row-specific styling for each given row `kind` in `R` */
|
|
4901
4976
|
type RowStyles<R extends Kinded> = {
|
|
4902
4977
|
[P in R["kind"]]?: RowStyle<DiscriminateUnion<R, "kind", P>>;
|
|
4903
4978
|
};
|
|
4904
|
-
|
|
4979
|
+
type RowStyle<R extends Kinded> = {
|
|
4905
4980
|
/** Applies this css to the wrapper row, i.e. for row-level hovers. */
|
|
4906
4981
|
rowCss?: Properties | ((row: R) => Properties);
|
|
4907
4982
|
/** Applies this css to each cell in the row. */
|
|
@@ -4912,7 +4987,7 @@ interface RowStyle<R extends Kinded> {
|
|
|
4912
4987
|
rowLink?: (row: R) => string;
|
|
4913
4988
|
/** Fired when the row is clicked, similar to rowLink but for actions that aren't 'go to this link'. */
|
|
4914
4989
|
onClick?: (row: GridDataRow<R>, api: GridTableApi<R>) => void;
|
|
4915
|
-
}
|
|
4990
|
+
};
|
|
4916
4991
|
/** Our original table look & feel/style. */
|
|
4917
4992
|
declare const defaultStyle: GridStyle;
|
|
4918
4993
|
/** Tightens up the padding of rows, great for rows that have form elements in them. */
|
|
@@ -5887,7 +5962,7 @@ interface BeamProviderProps extends PropsWithChildren<PresentationContextProps>
|
|
|
5887
5962
|
}
|
|
5888
5963
|
declare function BeamProvider({ children, ...presentationProps }: BeamProviderProps): JSX.Element;
|
|
5889
5964
|
|
|
5890
|
-
|
|
5965
|
+
type ButtonProps = {
|
|
5891
5966
|
label: ReactNode;
|
|
5892
5967
|
variant?: ButtonVariant;
|
|
5893
5968
|
size?: ButtonSize;
|
|
@@ -5901,12 +5976,11 @@ interface ButtonProps extends BeamButtonProps, BeamFocusableProps {
|
|
|
5901
5976
|
type?: ButtonHTMLAttributes<HTMLButtonElement>["type"];
|
|
5902
5977
|
/** Denotes if this button is used to download a resource. Uses the anchor tag with the `download` attribute */
|
|
5903
5978
|
download?: boolean;
|
|
5904
|
-
contrast?: boolean;
|
|
5905
5979
|
/** Additional text to further customize button during an async request is in progress. */
|
|
5906
5980
|
labelInFlight?: string;
|
|
5907
5981
|
/** Shows pressed/active styles (useful when a menu is open) */
|
|
5908
5982
|
active?: boolean;
|
|
5909
|
-
}
|
|
5983
|
+
} & BeamButtonProps & BeamFocusableProps;
|
|
5910
5984
|
declare function Button(props: ButtonProps): JSX.Element;
|
|
5911
5985
|
type ButtonSize = "sm" | "md" | "lg";
|
|
5912
5986
|
type ButtonVariant = "primary" | "secondary" | "secondaryBlack" | "tertiary" | "tertiaryDanger" | "caution" | "danger" | "quaternary" | "text" | "textSecondary";
|
|
@@ -5919,11 +5993,11 @@ type DatePickerProps = {
|
|
|
5919
5993
|
useYearPicker?: boolean;
|
|
5920
5994
|
};
|
|
5921
5995
|
|
|
5922
|
-
|
|
5996
|
+
type IconButtonProps = {
|
|
5923
5997
|
/** The icon to use within the button. */
|
|
5924
5998
|
icon: IconProps["icon"];
|
|
5925
|
-
color?:
|
|
5926
|
-
bgColor?:
|
|
5999
|
+
color?: BeamColor;
|
|
6000
|
+
bgColor?: BeamColor;
|
|
5927
6001
|
/** The size of the icon, in increments, defaults to 3 which is 24px. */
|
|
5928
6002
|
inc?: number;
|
|
5929
6003
|
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
@@ -5931,8 +6005,6 @@ interface IconButtonProps extends BeamButtonProps, BeamFocusableProps {
|
|
|
5931
6005
|
buttonRef?: RefObject<HTMLButtonElement>;
|
|
5932
6006
|
/** Whether to show a 16x16px version of the IconButton */
|
|
5933
6007
|
compact?: boolean;
|
|
5934
|
-
/** Whether to display the contrast variant */
|
|
5935
|
-
contrast?: boolean;
|
|
5936
6008
|
/** Whether to display the circle variant */
|
|
5937
6009
|
circle?: boolean;
|
|
5938
6010
|
/** Indicates that the button is active/selected */
|
|
@@ -5941,7 +6013,7 @@ interface IconButtonProps extends BeamButtonProps, BeamFocusableProps {
|
|
|
5941
6013
|
download?: boolean;
|
|
5942
6014
|
/** Provides label for screen readers - Will become a required soon */
|
|
5943
6015
|
label?: string;
|
|
5944
|
-
}
|
|
6016
|
+
} & BeamButtonProps & BeamFocusableProps;
|
|
5945
6017
|
declare function IconButton(props: IconButtonProps): JSX.Element;
|
|
5946
6018
|
declare const iconButtonStylesHover: Pick<Properties, never> & {
|
|
5947
6019
|
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
@@ -5961,7 +6033,7 @@ declare const iconButtonCircleStylesHover: Pick<Properties, never> & {
|
|
|
5961
6033
|
readonly __kind: "buildtime";
|
|
5962
6034
|
};
|
|
5963
6035
|
|
|
5964
|
-
|
|
6036
|
+
type NavLinkProps = {
|
|
5965
6037
|
/** active indicates the user is on the current page */
|
|
5966
6038
|
active?: boolean;
|
|
5967
6039
|
disabled?: boolean;
|
|
@@ -5971,17 +6043,16 @@ interface NavLinkProps extends BeamFocusableProps {
|
|
|
5971
6043
|
icon?: IconKey;
|
|
5972
6044
|
variant: NavLinkVariant;
|
|
5973
6045
|
openInNew?: boolean;
|
|
5974
|
-
contrast?: boolean;
|
|
5975
6046
|
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
5976
6047
|
menuTriggerProps?: AriaButtonProps;
|
|
5977
6048
|
buttonRef?: RefObject<HTMLElement>;
|
|
5978
|
-
}
|
|
6049
|
+
} & BeamFocusableProps;
|
|
5979
6050
|
type NavLinkVariant = "side" | "global";
|
|
5980
6051
|
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
5981
6052
|
|
|
5982
6053
|
interface TextButtonTriggerProps extends Pick<ButtonProps, "label" | "variant" | "size" | "icon"> {
|
|
5983
6054
|
}
|
|
5984
|
-
interface IconButtonTriggerProps extends Pick<IconButtonProps, "icon" | "color" | "compact" | "
|
|
6055
|
+
interface IconButtonTriggerProps extends Pick<IconButtonProps, "icon" | "color" | "compact" | "inc"> {
|
|
5985
6056
|
}
|
|
5986
6057
|
interface AvatarButtonTriggerProps extends Pick<AvatarButtonProps, "src" | "name" | "size"> {
|
|
5987
6058
|
}
|
|
@@ -6008,7 +6079,6 @@ interface OverlayTriggerProps {
|
|
|
6008
6079
|
variant?: ButtonVariant;
|
|
6009
6080
|
hideEndAdornment?: boolean;
|
|
6010
6081
|
showActiveBorder?: boolean;
|
|
6011
|
-
contrast?: boolean;
|
|
6012
6082
|
}
|
|
6013
6083
|
|
|
6014
6084
|
type ButtonDatePickerProps = {
|
|
@@ -6043,7 +6113,6 @@ type ButtonMenuBaseProps = {
|
|
|
6043
6113
|
persistentItems?: MenuItem[];
|
|
6044
6114
|
searchable?: boolean;
|
|
6045
6115
|
defaultOpen?: boolean;
|
|
6046
|
-
contrast?: boolean;
|
|
6047
6116
|
} & Pick<OverlayTriggerProps, "trigger" | "placement" | "disabled" | "tooltip" | "showActiveBorder">;
|
|
6048
6117
|
type SelectionButtonMenuProps = {
|
|
6049
6118
|
/** Display a menu item as selected based. Use the Menu Item's label to identify */
|
|
@@ -6120,34 +6189,36 @@ interface CardProps {
|
|
|
6120
6189
|
}
|
|
6121
6190
|
declare function Card(props: CardProps): JSX.Element;
|
|
6122
6191
|
|
|
6192
|
+
/** Must match the `contrast` theme axis in tokens and `[data-theme="contrast"]` in `src/css/generated/theme-scopes.css`. */
|
|
6193
|
+
declare const contrastDataTheme: "contrast";
|
|
6194
|
+
/**
|
|
6195
|
+
* Whether the tree is wrapped in an active {@link ContrastScope} (`contrast` prop true).
|
|
6196
|
+
* Used by portaled overlays (e.g. {@link Popover}) and by field chrome that needs contrast-specific ink.
|
|
6197
|
+
*/
|
|
6198
|
+
declare function useContrastScope(): boolean;
|
|
6199
|
+
type ContrastScopeProps = PropsWithChildren<{
|
|
6200
|
+
contrast?: boolean;
|
|
6201
|
+
}>;
|
|
6202
|
+
declare function ContrastScope({ children, contrast }: ContrastScopeProps): JSX.Element;
|
|
6203
|
+
|
|
6123
6204
|
declare function Copy(props: {
|
|
6124
6205
|
children: string | ReactNode;
|
|
6125
6206
|
}): JSX.Element;
|
|
6126
6207
|
|
|
6127
6208
|
type CountBadgeXss = "color";
|
|
6128
|
-
|
|
6209
|
+
type CountBadgeProps<X> = {
|
|
6129
6210
|
count: number;
|
|
6130
6211
|
/** Background color of the badge. Defaults to Blue700. */
|
|
6131
|
-
bgColor?:
|
|
6132
|
-
color?:
|
|
6212
|
+
bgColor?: BeamColor;
|
|
6213
|
+
color?: BeamColor;
|
|
6133
6214
|
hideIfZero?: boolean;
|
|
6134
|
-
}
|
|
6215
|
+
};
|
|
6135
6216
|
/**
|
|
6136
6217
|
* CountBadge displays a numeric count in a circular badge.
|
|
6137
6218
|
* Automatically adjusts size for counts > 100 (increases from 16px to 18px).
|
|
6138
6219
|
*/
|
|
6139
6220
|
declare function CountBadge<X extends Only<Xss<CountBadgeXss>, X>>(props: CountBadgeProps<X>): JSX.Element | null;
|
|
6140
6221
|
|
|
6141
|
-
declare const navLink = "navLink";
|
|
6142
|
-
/**
|
|
6143
|
-
* Applies a CSS Reset that is based on modern-normalize + TW customizations.
|
|
6144
|
-
*
|
|
6145
|
-
* The reset styles are now in CssReset.css and are loaded via a side-effect
|
|
6146
|
-
* import. This component is kept for API compatibility — render it at the top
|
|
6147
|
-
* of your app to ensure the CSS file is included in the bundle.
|
|
6148
|
-
*/
|
|
6149
|
-
declare function CssReset(): null;
|
|
6150
|
-
|
|
6151
6222
|
type DnDGridProps = {
|
|
6152
6223
|
children: ReactNode;
|
|
6153
6224
|
/** CSS Grid styles for the grid container. */
|
|
@@ -6177,12 +6248,12 @@ declare function useDnDGridItem(props: useDnDGridItemProps): {
|
|
|
6177
6248
|
};
|
|
6178
6249
|
type DnDGridItemProps = ReturnType<typeof useDnDGridItem>;
|
|
6179
6250
|
|
|
6180
|
-
|
|
6251
|
+
type DnDGridItemHandleProps = {
|
|
6181
6252
|
dragHandleProps: DnDGridItemProps["dragHandleProps"];
|
|
6182
6253
|
icon?: IconKey;
|
|
6183
6254
|
compact?: boolean;
|
|
6184
|
-
color?:
|
|
6185
|
-
}
|
|
6255
|
+
color?: BeamColor;
|
|
6256
|
+
};
|
|
6186
6257
|
/** Provides a specific handle element for dragging a GridItem. Includes handling behaviors and interactions */
|
|
6187
6258
|
declare function DnDGridItemHandle(props: DnDGridItemHandleProps): JSX.Element;
|
|
6188
6259
|
|
|
@@ -6270,7 +6341,6 @@ type TextFieldBaseProps<X> = {
|
|
|
6270
6341
|
groupProps?: NumberFieldAria["groupProps"];
|
|
6271
6342
|
endAdornment?: ReactNode;
|
|
6272
6343
|
startAdornment?: ReactNode;
|
|
6273
|
-
contrast?: boolean;
|
|
6274
6344
|
clearable?: boolean;
|
|
6275
6345
|
textAreaMinHeight?: number;
|
|
6276
6346
|
tooltip?: ReactNode;
|
|
@@ -6469,13 +6539,12 @@ declare const DateField: (props: DateFieldProps) => JSX.Element;
|
|
|
6469
6539
|
|
|
6470
6540
|
declare function DateRangeField(props: DateRangeFieldProps): JSX.Element;
|
|
6471
6541
|
|
|
6472
|
-
|
|
6542
|
+
type ErrorMessageProps = {
|
|
6473
6543
|
/** The dom id for `aria-errormessage` to point to us. */
|
|
6474
6544
|
id?: string;
|
|
6475
6545
|
errorMsg: string;
|
|
6476
|
-
contrast?: boolean;
|
|
6477
6546
|
hidden?: boolean;
|
|
6478
|
-
}
|
|
6547
|
+
};
|
|
6479
6548
|
/**
|
|
6480
6549
|
* A helper component for consistently showing error messages across form fields.
|
|
6481
6550
|
*
|
|
@@ -6545,8 +6614,6 @@ type ComboBoxBaseProps<O, V extends Value> = {
|
|
|
6545
6614
|
* Unlike `unsetLabel`, this does not add an explicit option for the user to select.
|
|
6546
6615
|
*/
|
|
6547
6616
|
nothingSelectedText?: string;
|
|
6548
|
-
/** When set the SelectField is expected to be put on a darker background */
|
|
6549
|
-
contrast?: boolean;
|
|
6550
6617
|
/** Placeholder content */
|
|
6551
6618
|
placeholder?: string;
|
|
6552
6619
|
/**
|
|
@@ -6918,8 +6985,6 @@ type TreeSelectFieldProps<O, V extends Value> = {
|
|
|
6918
6985
|
sizeToContent?: boolean;
|
|
6919
6986
|
/** The text to show when nothing is selected, i.e. could be "All" for filters. */
|
|
6920
6987
|
nothingSelectedText?: string;
|
|
6921
|
-
/** When set the SelectField is expected to be put on a darker background */
|
|
6922
|
-
contrast?: boolean;
|
|
6923
6988
|
/** Placeholder content */
|
|
6924
6989
|
placeholder?: string;
|
|
6925
6990
|
hideErrorMessage?: boolean;
|
|
@@ -7292,7 +7357,6 @@ declare function HbSpinnerProvider({ quips, children }: HbSpinnerProviderProps):
|
|
|
7292
7357
|
*/
|
|
7293
7358
|
declare function HelperText(props: {
|
|
7294
7359
|
helperText: string | ReactNode;
|
|
7295
|
-
contrast?: boolean;
|
|
7296
7360
|
}): JSX.Element;
|
|
7297
7361
|
|
|
7298
7362
|
type BoundCheckboxFieldProps = Omit<CheckboxProps, "selected" | "onChange" | "label"> & {
|
|
@@ -7881,9 +7945,8 @@ type LoadingSkeletonProps = {
|
|
|
7881
7945
|
columns?: number;
|
|
7882
7946
|
size?: Sizes;
|
|
7883
7947
|
randomizeWidths?: boolean;
|
|
7884
|
-
contrast?: boolean;
|
|
7885
7948
|
};
|
|
7886
|
-
declare function LoadingSkeleton({ rows, columns, size, randomizeWidths
|
|
7949
|
+
declare function LoadingSkeleton({ rows, columns, size, randomizeWidths }: LoadingSkeletonProps): JSX.Element;
|
|
7887
7950
|
|
|
7888
7951
|
type QueryResult<QData> = {
|
|
7889
7952
|
loading: boolean;
|
|
@@ -8359,11 +8422,10 @@ type TableReviewLayoutProps<R extends Kinded, X extends Only<GridTableXss, X>, Q
|
|
|
8359
8422
|
};
|
|
8360
8423
|
declare function TableReviewLayout<R extends Kinded, X extends Only<GridTableXss, X>, QData>(props: TableReviewLayoutProps<R, X, QData>): JSX.Element;
|
|
8361
8424
|
|
|
8362
|
-
|
|
8425
|
+
type LoaderProps = {
|
|
8363
8426
|
size?: "xs" | "sm" | "md" | "lg";
|
|
8364
|
-
|
|
8365
|
-
}
|
|
8366
|
-
declare function Loader({ size, contrast }: LoaderProps): JSX.Element;
|
|
8427
|
+
};
|
|
8428
|
+
declare function Loader({ size }: LoaderProps): JSX.Element;
|
|
8367
8429
|
|
|
8368
8430
|
type MaxLinesProps = PropsWithChildren<{
|
|
8369
8431
|
maxLines: number;
|
|
@@ -8579,7 +8641,7 @@ declare function useToast(): UseToastProps;
|
|
|
8579
8641
|
|
|
8580
8642
|
type TooltipXss = Xss<Padding | "borderRadius">;
|
|
8581
8643
|
/** Note: Only 1 tooltip is ever on screen at a time */
|
|
8582
|
-
|
|
8644
|
+
type TooltipProps = {
|
|
8583
8645
|
/** The content that shows up when hovered */
|
|
8584
8646
|
title: ReactNode;
|
|
8585
8647
|
children: ReactNode;
|
|
@@ -8592,9 +8654,9 @@ interface TooltipProps {
|
|
|
8592
8654
|
*/
|
|
8593
8655
|
delay?: number;
|
|
8594
8656
|
disabled?: boolean;
|
|
8595
|
-
bgColor?:
|
|
8657
|
+
bgColor?: BeamColor;
|
|
8596
8658
|
xss?: TooltipXss;
|
|
8597
|
-
}
|
|
8659
|
+
};
|
|
8598
8660
|
declare function Tooltip(props: TooltipProps): JSX.Element;
|
|
8599
8661
|
type Placement = "top" | "bottom" | "left" | "right" | "auto";
|
|
8600
8662
|
declare function maybeTooltip(props: Omit<TooltipProps, "children"> & {
|
|
@@ -8613,4 +8675,4 @@ declare function resolveTooltip(disabled?: boolean | ReactNode, tooltip?: ReactN
|
|
|
8613
8675
|
*/
|
|
8614
8676
|
declare function defaultTestId(label: string): string;
|
|
8615
8677
|
|
|
8616
|
-
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 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, 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 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, 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, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, 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, 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, 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, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, 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, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
|
|
8678
|
+
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, NavLink, 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, 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, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, 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, 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, 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, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
|