@homebound/beam 3.86.1 → 3.88.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 +2683 -2198
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1950 -1872
- package/dist/index.d.ts +1950 -1872
- package/dist/index.js +2363 -1883
- package/dist/index.js.map +1 -1
- package/dist/truss.css +48 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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, ReactNode, AriaAttributes,
|
|
4
|
+
import React__default, { PropsWithChildren, ReactNode, AriaAttributes, ReactElement, MutableRefObject, RefObject, ButtonHTMLAttributes, Dispatch, SetStateAction, AriaRole, 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
|
-
import { VirtuosoHandle, ListRange } from 'react-virtuoso';
|
|
8
7
|
import { AriaButtonProps } from '@react-types/button';
|
|
9
8
|
import { MenuTriggerState } from 'react-stately';
|
|
9
|
+
import { VirtuosoHandle, ListRange } from 'react-virtuoso';
|
|
10
10
|
import { FieldState, ListFieldState, ObjectState } from '@homebound/form-state';
|
|
11
11
|
import { NumberFieldAria } from 'react-aria';
|
|
12
12
|
|
|
@@ -4808,45 +4808,6 @@ interface ChipsProps<X> {
|
|
|
4808
4808
|
/** Renders a list of `Chip`s, with wrapping & appropriate margin between each `Chip`. */
|
|
4809
4809
|
declare function Chips<X extends Only<ChipsXss, X>>(props: ChipsProps<X>): JSX.Element;
|
|
4810
4810
|
|
|
4811
|
-
type InputStylePalette = "success" | "warning" | "caution" | "info";
|
|
4812
|
-
interface PresentationFieldProps {
|
|
4813
|
-
numberAlignment?: "left" | "right";
|
|
4814
|
-
/** Sets the label position or visibility. Defaults to "above" */
|
|
4815
|
-
labelStyle?: "inline" | "hidden" | "above" | "left";
|
|
4816
|
-
/** Defines the width property of the input field wrapper when using `labelStyle="left"`. */
|
|
4817
|
-
labelLeftFieldWidth?: number | string;
|
|
4818
|
-
labelSuffix?: LabelSuffixStyle;
|
|
4819
|
-
borderless?: boolean;
|
|
4820
|
-
borderOnHover?: boolean;
|
|
4821
|
-
compact?: boolean;
|
|
4822
|
-
typeScale?: Typography;
|
|
4823
|
-
visuallyDisabled?: false;
|
|
4824
|
-
errorInTooltip?: true;
|
|
4825
|
-
/** Allow the fields to grow to the width of its container. By default, fields will extend up to 550px */
|
|
4826
|
-
fullWidth?: boolean;
|
|
4827
|
-
/** 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 */
|
|
4828
|
-
inputStylePalette?: InputStylePalette;
|
|
4829
|
-
}
|
|
4830
|
-
type PresentationContextProps = {
|
|
4831
|
-
/** `inputStylePalette` omitted because it is too dependent on the individual field use case to be controlled at this level */
|
|
4832
|
-
fieldProps?: Omit<PresentationFieldProps, "inputStylePalette">;
|
|
4833
|
-
gridTableStyle?: GridStyle;
|
|
4834
|
-
wrap?: boolean;
|
|
4835
|
-
};
|
|
4836
|
-
declare function PresentationProvider(props: PropsWithChildren<PresentationContextProps>): JSX.Element;
|
|
4837
|
-
/**
|
|
4838
|
-
* Label settings for required/optional fields.
|
|
4839
|
-
*
|
|
4840
|
-
* We may want to just hard-code this behavior, so that it's very consistent,
|
|
4841
|
-
* but for now making it configurable.
|
|
4842
|
-
*/
|
|
4843
|
-
type LabelSuffixStyle = {
|
|
4844
|
-
/** The suffix to use for required fields. */
|
|
4845
|
-
required?: string;
|
|
4846
|
-
/** The suffix to use for explicitly optional (i.e. `required=false`) fields. */
|
|
4847
|
-
optional?: string;
|
|
4848
|
-
};
|
|
4849
|
-
|
|
4850
4811
|
type AvatarProps = {
|
|
4851
4812
|
src: string | undefined;
|
|
4852
4813
|
name?: string;
|
|
@@ -4857,1335 +4818,788 @@ type AvatarProps = {
|
|
|
4857
4818
|
declare function Avatar({ src, name, size, showName, preventTooltip, ...others }: AvatarProps): JSX.Element;
|
|
4858
4819
|
type AvatarSize = "sm" | "md" | "lg" | "xl";
|
|
4859
4820
|
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
* Whether the interactive element is disabled.
|
|
4869
|
-
*
|
|
4870
|
-
* If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip.
|
|
4871
|
-
*/
|
|
4872
|
-
disabled?: boolean | ReactNode;
|
|
4873
|
-
/** If function, then it is the handler that is called when the press is released over the target. Otherwise if string, it is the URL path for the link */
|
|
4874
|
-
onClick: ((e: PressEvent) => void) | ((e: PressEvent) => Promise<void>) | string;
|
|
4875
|
-
/** Text to be shown via a tooltip when the user hovers over the button */
|
|
4876
|
-
tooltip?: ReactNode;
|
|
4877
|
-
/** Whether to open link in a new tab. This only effects the element if the `onClick` is a `string`/URL. */
|
|
4878
|
-
openInNew?: boolean;
|
|
4879
|
-
}
|
|
4880
|
-
type TextFieldXss = Xss<"textAlign" | "justifyContent" | "fontWeight" | "fontSize" | "lineHeight">;
|
|
4881
|
-
interface BeamTextFieldProps<X> extends BeamFocusableProps, PresentationFieldProps {
|
|
4882
|
-
/** Whether the field is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
4883
|
-
disabled?: boolean | ReactNode;
|
|
4884
|
-
errorMsg?: string;
|
|
4885
|
-
helperText?: string | ReactNode;
|
|
4886
|
-
/** Input label */
|
|
4887
|
-
label: string;
|
|
4888
|
-
/** Marks the field as required or optional, the default is assumed ambiguous/unknown. */
|
|
4889
|
-
required?: boolean;
|
|
4890
|
-
value: string | undefined;
|
|
4891
|
-
/** Handler called when the interactive element state changes. */
|
|
4892
|
-
onChange: (value: string | undefined) => void;
|
|
4893
|
-
/** Called when the component loses focus, mostly for BoundTextField to use. */
|
|
4894
|
-
onBlur?: VoidFunction;
|
|
4895
|
-
onFocus?: VoidFunction;
|
|
4896
|
-
onEnter?: VoidFunction;
|
|
4897
|
-
/** Whether the field is readOnly. If a ReactNode, it's treated as a "readOnly reason" that's shown in a tooltip. */
|
|
4898
|
-
readOnly?: boolean | ReactNode;
|
|
4899
|
-
placeholder?: string;
|
|
4900
|
-
/** Styles overrides */
|
|
4821
|
+
type TagXss = Margin | "backgroundColor" | "color";
|
|
4822
|
+
type TagType = "info" | "update" | "warning" | "error" | "success" | "neutral";
|
|
4823
|
+
type TagVariant = "primary" | "secondary";
|
|
4824
|
+
type TagPropsBase<X> = {
|
|
4825
|
+
text: ReactNode;
|
|
4826
|
+
type?: TagType;
|
|
4827
|
+
/** Defaults to "primary". Secondary is intended for use in TagGroup. */
|
|
4828
|
+
variant?: TagVariant;
|
|
4901
4829
|
xss?: X;
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4830
|
+
/** A tooltip will automatically be displayed if the text is truncated. Set to true to prevent this behavior.
|
|
4831
|
+
* @default false */
|
|
4832
|
+
preventTooltip?: boolean;
|
|
4833
|
+
};
|
|
4834
|
+
/** When `iconOnly`, `icon` is required — the tag renders only the icon; `text` stays for tooltip/a11y. */
|
|
4835
|
+
type TagProps<X> = TagPropsBase<X> & ({
|
|
4836
|
+
iconOnly?: false;
|
|
4837
|
+
icon?: IconKey;
|
|
4838
|
+
} | {
|
|
4839
|
+
iconOnly: true;
|
|
4840
|
+
icon: IconKey;
|
|
4841
|
+
});
|
|
4842
|
+
/** Tag used for indicating a status */
|
|
4843
|
+
declare function Tag<X extends Only<Xss<TagXss>, X>>(props: TagProps<X>): JSX.Element;
|
|
4915
4844
|
|
|
4916
|
-
type
|
|
4917
|
-
|
|
4918
|
-
buttonRef?: RefObject<HTMLButtonElement>;
|
|
4919
|
-
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
4920
|
-
__storyState?: {
|
|
4921
|
-
hovered?: boolean;
|
|
4922
|
-
focusVisible?: boolean;
|
|
4923
|
-
pressed?: boolean;
|
|
4924
|
-
};
|
|
4925
|
-
} & AvatarProps & BeamButtonProps & BeamFocusableProps;
|
|
4926
|
-
declare function AvatarButton(props: AvatarButtonProps): JSX.Element;
|
|
4927
|
-
declare const hoverStyles: Pick<Properties, never> & {
|
|
4928
|
-
boxShadow: csstype.Property.BoxShadow | undefined;
|
|
4929
|
-
} & {
|
|
4930
|
-
readonly __kind: "buildtime";
|
|
4845
|
+
type CardSlotBase<K extends string> = {
|
|
4846
|
+
kind: K;
|
|
4931
4847
|
};
|
|
4932
|
-
|
|
4933
|
-
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
} & {
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
}
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
left: csstype.Property.Left<string | 0> | undefined;
|
|
4946
|
-
} & {
|
|
4947
|
-
opacity: csstype.Property.Opacity | undefined;
|
|
4948
|
-
} & {
|
|
4949
|
-
pointerEvents: csstype.Property.PointerEvents | undefined;
|
|
4950
|
-
} & {
|
|
4951
|
-
readonly __kind: "buildtime";
|
|
4848
|
+
/** Tag props for badge slots — mirrors Tag (type, icon, iconOnly) with string-only text. */
|
|
4849
|
+
type CardBadgeTag = {
|
|
4850
|
+
text: string;
|
|
4851
|
+
type?: TagType;
|
|
4852
|
+
} & ({
|
|
4853
|
+
iconOnly?: false;
|
|
4854
|
+
icon?: IconKey;
|
|
4855
|
+
} | {
|
|
4856
|
+
iconOnly: true;
|
|
4857
|
+
icon: IconKey;
|
|
4858
|
+
});
|
|
4859
|
+
type CardTitleSlot = CardSlotBase<"title"> & {
|
|
4860
|
+
text: string;
|
|
4952
4861
|
};
|
|
4862
|
+
/** Left meta text above the title */
|
|
4863
|
+
type CardLeftEyebrowSlot = CardSlotBase<"leftEyebrow"> & {
|
|
4864
|
+
text: string;
|
|
4865
|
+
};
|
|
4866
|
+
/** Right meta text above the title. Distinct from title-row `cardBadgeSlot`. */
|
|
4867
|
+
type CardRightEyebrowSlot = CardSlotBase<"rightEyebrow"> & {
|
|
4868
|
+
text: string;
|
|
4869
|
+
};
|
|
4870
|
+
type CardBadgeSlot = CardSlotBase<"badge"> & {
|
|
4871
|
+
text: string;
|
|
4872
|
+
tags?: CardBadgeTag[];
|
|
4873
|
+
};
|
|
4874
|
+
type CardStatusSlot = CardSlotBase<"status"> & {
|
|
4875
|
+
tag: CardTag;
|
|
4876
|
+
};
|
|
4877
|
+
type CardDataBlockSlot = CardSlotBase<"dataBlock"> & {
|
|
4878
|
+
label: string;
|
|
4879
|
+
value: ReactNode | string | number;
|
|
4880
|
+
};
|
|
4881
|
+
type CardProgressSlot = CardSlotBase<"progress"> & {
|
|
4882
|
+
value: number;
|
|
4883
|
+
};
|
|
4884
|
+
/** One thumbnail link in a carousel interactive footer. */
|
|
4885
|
+
type CardCarouselThumbnail = {
|
|
4886
|
+
id: string;
|
|
4887
|
+
imgUrl: string;
|
|
4888
|
+
label: string;
|
|
4889
|
+
to: string;
|
|
4890
|
+
};
|
|
4891
|
+
type CardCarouselFooter = {
|
|
4892
|
+
kind: "carousel";
|
|
4893
|
+
title: string;
|
|
4894
|
+
thumbnails: CardCarouselThumbnail[];
|
|
4895
|
+
};
|
|
4896
|
+
/** Discriminated union of footers that sit outside the card's row action. Add new variants here. */
|
|
4897
|
+
type CardInteractiveFooter = CardCarouselFooter;
|
|
4898
|
+
type CardInteractiveFooterSlot = CardSlotBase<"interactiveFooter"> & {
|
|
4899
|
+
footer: CardInteractiveFooter;
|
|
4900
|
+
};
|
|
4901
|
+
/** @deprecated Prefer `cardLeftEyebrowSlot`. Alias kept for existing plan-code callers. */
|
|
4902
|
+
type CardEyebrowSlot = CardLeftEyebrowSlot;
|
|
4903
|
+
type CardSlot = CardTitleSlot | CardLeftEyebrowSlot | CardRightEyebrowSlot | CardBadgeSlot | CardStatusSlot | CardDataBlockSlot | CardProgressSlot | CardInteractiveFooterSlot;
|
|
4904
|
+
declare function cardTitleSlot(text: string): CardTitleSlot;
|
|
4905
|
+
declare function cardLeftEyebrowSlot(text: string): CardLeftEyebrowSlot;
|
|
4906
|
+
declare function cardRightEyebrowSlot(text: string): CardRightEyebrowSlot;
|
|
4907
|
+
/** @deprecated Prefer `cardLeftEyebrowSlot`. */
|
|
4908
|
+
declare function cardEyebrowSlot(text: string): CardLeftEyebrowSlot;
|
|
4909
|
+
declare function cardBadgeSlot(text: string, tags?: CardBadgeTag[]): CardBadgeSlot;
|
|
4910
|
+
declare function cardStatusSlot(tag: CardTag): CardStatusSlot;
|
|
4911
|
+
declare function cardDataBlockSlot(props: {
|
|
4912
|
+
label: string;
|
|
4913
|
+
value: ReactNode | string | number;
|
|
4914
|
+
}): CardDataBlockSlot;
|
|
4915
|
+
declare function cardProgressSlot(value: number): CardProgressSlot;
|
|
4916
|
+
/** Interactive footer that sits outside the card's row action. */
|
|
4917
|
+
declare function cardInteractiveFooterSlot(footer: CardInteractiveFooter): CardInteractiveFooterSlot;
|
|
4918
|
+
/** Convenience for the carousel interactive footer. */
|
|
4919
|
+
declare function cardCarouselSlot(props: {
|
|
4920
|
+
title: string;
|
|
4921
|
+
thumbnails: CardCarouselThumbnail[];
|
|
4922
|
+
}): CardInteractiveFooterSlot;
|
|
4953
4923
|
|
|
4954
|
-
type
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
/**
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
type
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5010
|
-
|
|
4924
|
+
type Kinded = {
|
|
4925
|
+
kind: string;
|
|
4926
|
+
};
|
|
4927
|
+
type GridTableXss = Xss<Margin>;
|
|
4928
|
+
type RenderAs = "div" | "table" | "virtual" | "card";
|
|
4929
|
+
type Direction = "ASC" | "DESC";
|
|
4930
|
+
type MaybeFn<T> = T | (() => T);
|
|
4931
|
+
type GridCellAlignment = "left" | "right" | "center";
|
|
4932
|
+
type GridColumnBorder = "left" | "right";
|
|
4933
|
+
type GridTableScrollOptions = number | {
|
|
4934
|
+
/** The index of the row to scroll to */
|
|
4935
|
+
index: number;
|
|
4936
|
+
behavior?: "auto" | "smooth";
|
|
4937
|
+
/**
|
|
4938
|
+
* How to position the row in the viewport
|
|
4939
|
+
*/
|
|
4940
|
+
align?: "start" | "center" | "end";
|
|
4941
|
+
};
|
|
4942
|
+
/**
|
|
4943
|
+
* Given an ADT of type T, performs a look up and returns the type of kind K.
|
|
4944
|
+
*
|
|
4945
|
+
* See https://stackoverflow.com/a/50125960/355031
|
|
4946
|
+
*/
|
|
4947
|
+
type DiscriminateUnion<T, K extends keyof T, V extends T[K]> = T extends Record<K, V> ? T : never;
|
|
4948
|
+
/**
|
|
4949
|
+
* Defines how a single column will render each given row `kind` in `R`.
|
|
4950
|
+
*
|
|
4951
|
+
* The `S` generic is either:
|
|
4952
|
+
*
|
|
4953
|
+
* - For server-side sorting, it's the sortKey to pass back to the server to
|
|
4954
|
+
* request "sort by this column".
|
|
4955
|
+
*
|
|
4956
|
+
* - For client-side sorting, it's type `number`, to represent the current
|
|
4957
|
+
* column being sorted, in which case we use the GridCellContent.value.
|
|
4958
|
+
*/
|
|
4959
|
+
type GridColumn<R extends Kinded> = {
|
|
4960
|
+
[K in R["kind"]]: string | GridCellContent | (DiscriminateUnion<R, "kind", K> extends {
|
|
4961
|
+
data: infer D;
|
|
4962
|
+
} ? (data: D, opts: {
|
|
4963
|
+
row: GridRowKind<R, K>;
|
|
4964
|
+
api: GridRowApi<R>;
|
|
4965
|
+
level: number;
|
|
4966
|
+
expanded: boolean;
|
|
4967
|
+
}) => ReactNode | GridCellContent : (data: undefined, opts: {
|
|
4968
|
+
row: GridRowKind<R, K>;
|
|
4969
|
+
api: GridRowApi<R>;
|
|
4970
|
+
level: number;
|
|
4971
|
+
expanded: boolean;
|
|
4972
|
+
}) => ReactNode | GridCellContent);
|
|
4973
|
+
} & {
|
|
4974
|
+
/**
|
|
4975
|
+
* The column's width.
|
|
4976
|
+
* - Only px, percentage, or fr units are supported, due to each GridRow acting as an independent table. This ensures consistent alignment between rows.
|
|
4977
|
+
* - Numbers are treated as `fr` units
|
|
4978
|
+
* - The default value is `1fr`
|
|
4979
|
+
*/
|
|
4980
|
+
w?: number | string;
|
|
4981
|
+
/** Represents the width the column will get when expanded. This prop is treated the same as the `GridColumn.w` prop.
|
|
4982
|
+
* Example: Collapsed state shows number of books. Expanded state shows titles of books.
|
|
4983
|
+
*/
|
|
4984
|
+
expandedWidth?: number | string;
|
|
4985
|
+
/** The minimum width the column can shrink to. This must be defined in pixels */
|
|
4986
|
+
mw?: string;
|
|
4987
|
+
/** The column's default alignment for each cell. */
|
|
4988
|
+
align?: GridCellAlignment;
|
|
4989
|
+
/** Whether the column can be sorted (if client-side sorting). Defaults to true if sorting client-side. */
|
|
4990
|
+
clientSideSort?: boolean;
|
|
4991
|
+
/** This column's sort by value (if server-side sorting). */
|
|
4992
|
+
serverSideSortKey?: string;
|
|
4993
|
+
/** Allows the column to stay in place when the user scrolls horizontally */
|
|
4994
|
+
sticky?: "left" | "right";
|
|
4995
|
+
/** Draws a border on this column's left or right edge for every rendered cell. */
|
|
4996
|
+
border?: GridColumnBorder;
|
|
4997
|
+
/** Prevent column from supporting RowStyle.onClick/rowLink in order to avoid nested interactivity. Defaults to true */
|
|
4998
|
+
wrapAction?: false;
|
|
4999
|
+
/** Used as a signal to defer adding the row's level indentation styling */
|
|
5000
|
+
isAction?: true;
|
|
5001
|
+
/** Injected layout gutter column; excluded from content-column behavior (indent, resize, CSV). */
|
|
5002
|
+
isLayoutGutter?: true;
|
|
5003
|
+
/** Column id that will be used to generate an unique identifier for every row cell */
|
|
5004
|
+
id?: string;
|
|
5005
|
+
/** String identifier of the column. Typically the same text content as in column header. This is used to in things like the Edit Columns Button */
|
|
5006
|
+
name?: string;
|
|
5007
|
+
/** Flag that will allow to know which columns are hide-able */
|
|
5008
|
+
canHide?: boolean;
|
|
5009
|
+
/** Flag that will allow hide-able columns to be hidden on initial load */
|
|
5010
|
+
initHidden?: boolean;
|
|
5011
|
+
/** A list of columns that should only be shown when this column is "expanded" */
|
|
5012
|
+
expandColumns?: GridColumn<R>[] | (() => Promise<GridColumn<R>[]>);
|
|
5013
|
+
/** Determines whether the group should initially be expanded on load of the table */
|
|
5014
|
+
initExpanded?: boolean;
|
|
5015
|
+
/** Determines whether this column should be hidden when expanded (only the 'expandColumns' would show) */
|
|
5016
|
+
hideOnExpand?: boolean;
|
|
5017
|
+
/** Determines whether a column is csv-only or web-only. */
|
|
5018
|
+
showIn?: "csv" | "web";
|
|
5019
|
+
};
|
|
5020
|
+
/**
|
|
5021
|
+
* Adds an `id` to `GridColumn`, for use in storage/APIs.
|
|
5022
|
+
*
|
|
5023
|
+
* Ideally we'd require this on `GridColumn` itself, but that would be
|
|
5024
|
+
* a large breaking change for a lot of tables that don't need column ids.
|
|
5025
|
+
*/
|
|
5026
|
+
type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
|
|
5027
|
+
id: string;
|
|
5028
|
+
expandColumns?: GridColumnWithId<R>[] | (() => Promise<GridColumn<R>[]>);
|
|
5029
|
+
};
|
|
5030
|
+
declare const nonKindGridColumnKeys: string[];
|
|
5031
|
+
/**
|
|
5032
|
+
* Used to indicate where to fixed-sort the DataRow within its group, and whether it should be filtered
|
|
5033
|
+
* or always visible — setting `filter` to `true` will hide this row if it doesn't match the search term.
|
|
5034
|
+
*/
|
|
5035
|
+
type FixedSort = {
|
|
5036
|
+
at: "first" | "last";
|
|
5037
|
+
filter?: boolean;
|
|
5038
|
+
};
|
|
5039
|
+
type IfAny<T, Y, N> = 0 extends 1 & T ? Y : N;
|
|
5040
|
+
type InfiniteScroll = {
|
|
5041
|
+
/** will be called when the user scrolls to the end of the list with the last item index as an argument. Return a promise to automatically show a loading spinner. */
|
|
5042
|
+
onEndReached: (index: number) => void | Promise<void>;
|
|
5043
|
+
/** The number of pixels from the bottom of the list to eagerly trigger `onEndReached`. The default is 500px. */
|
|
5044
|
+
endOffsetPx?: number;
|
|
5045
|
+
};
|
|
5011
5046
|
|
|
5012
|
-
type
|
|
5013
|
-
type
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5047
|
+
type CompanionPosition = "leading" | "trailing";
|
|
5048
|
+
type CompanionContent = MaybeFn<ReactNode>;
|
|
5049
|
+
/** Object form of `GridDataRow.companion` — omit `position` to default to `"trailing"`. */
|
|
5050
|
+
type CompanionConfig = {
|
|
5051
|
+
position?: CompanionPosition;
|
|
5052
|
+
content: CompanionContent;
|
|
5053
|
+
};
|
|
5054
|
+
/** Full-width companion content for a data row; plain content defaults to trailing. */
|
|
5055
|
+
type GridRowCompanion = CompanionContent | CompanionConfig;
|
|
5056
|
+
|
|
5057
|
+
type ResizedWidths = Record<string, number>;
|
|
5058
|
+
|
|
5059
|
+
/**
|
|
5060
|
+
* Manages loading/saving our currently-collapsed rows to session storage.
|
|
5061
|
+
*
|
|
5062
|
+
* This is useful for pages that the user has to go in-out/out-of a lot, and
|
|
5063
|
+
* want it to restore, as much as possible, like their previous visit. Granted,
|
|
5064
|
+
* we try to superdrawer most of these experiences to avoid the user having to
|
|
5065
|
+
* jump off-page.
|
|
5066
|
+
*
|
|
5067
|
+
* Unlike most of our other states, this is not directly reactive/an observable,
|
|
5068
|
+
* although we do reactive to collapsedRows changing to persist the new state.
|
|
5069
|
+
*/
|
|
5070
|
+
declare class RowStorage<R extends Kinded> {
|
|
5071
|
+
private states;
|
|
5072
|
+
private historicalIds;
|
|
5073
|
+
constructor(states: RowStates<R>);
|
|
5074
|
+
load(persistCollapse: string): void;
|
|
5075
|
+
/** Once the first real-data load is done, we ignore historical ids so that we prefer any new data's `initCollapsed`. */
|
|
5076
|
+
done(): void;
|
|
5024
5077
|
/**
|
|
5025
|
-
*
|
|
5026
|
-
*
|
|
5078
|
+
* Returns if this row had been collapsed.
|
|
5079
|
+
*
|
|
5080
|
+
* Technically we return `undefined` if a) there is no persisted state for this row, or b) we are
|
|
5081
|
+
* past the first real-data load, and thus should prefer new incoming rows' `initCollapsed` flag.
|
|
5027
5082
|
*/
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
nested?: boolean;
|
|
5031
|
-
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
5032
|
-
__storyState?: {
|
|
5033
|
-
hovered?: boolean;
|
|
5034
|
-
focusVisible?: boolean;
|
|
5035
|
-
pressed?: boolean;
|
|
5036
|
-
};
|
|
5037
|
-
} & BeamFocusableProps;
|
|
5038
|
-
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
5039
|
-
declare function getNavLinkStyles(variant: NavLinkVariant, nested?: boolean): {
|
|
5040
|
-
baseStyles: {
|
|
5041
|
-
fontWeight: csstype.Property.FontWeight | undefined;
|
|
5042
|
-
fontSize: csstype.Property.FontSize<string | 0> | undefined;
|
|
5043
|
-
lineHeight: csstype.Property.LineHeight<string | 0> | undefined;
|
|
5044
|
-
__kind: "buildtime";
|
|
5045
|
-
accentColor?: csstype.Property.AccentColor | undefined;
|
|
5046
|
-
alignContent?: csstype.Property.AlignContent | undefined;
|
|
5047
|
-
alignItems?: csstype.Property.AlignItems | undefined;
|
|
5048
|
-
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
5049
|
-
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
5050
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
5051
|
-
anchorName?: csstype.Property.AnchorName | undefined;
|
|
5052
|
-
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
5053
|
-
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
5054
|
-
animationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5055
|
-
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5056
|
-
animationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5057
|
-
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5058
|
-
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5059
|
-
animationName?: csstype.Property.AnimationName | undefined;
|
|
5060
|
-
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5061
|
-
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | 0> | undefined;
|
|
5062
|
-
animationRangeStart?: csstype.Property.AnimationRangeStart<string | 0> | undefined;
|
|
5063
|
-
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
5064
|
-
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5065
|
-
appearance?: csstype.Property.Appearance | undefined;
|
|
5066
|
-
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
5067
|
-
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
5068
|
-
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5069
|
-
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
5070
|
-
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
5071
|
-
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5072
|
-
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
5073
|
-
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
5074
|
-
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5075
|
-
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | 0> | undefined;
|
|
5076
|
-
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | 0> | undefined;
|
|
5077
|
-
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
5078
|
-
backgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5079
|
-
baselineShift?: csstype.Property.BaselineShift<string | 0> | undefined;
|
|
5080
|
-
blockSize?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
5081
|
-
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
5082
|
-
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
5083
|
-
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | 0> | undefined;
|
|
5084
|
-
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
5085
|
-
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
5086
|
-
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | 0> | undefined;
|
|
5087
|
-
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
5088
|
-
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5089
|
-
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5090
|
-
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
5091
|
-
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | 0> | undefined;
|
|
5092
|
-
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
5093
|
-
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | 0> | undefined;
|
|
5094
|
-
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | 0> | undefined;
|
|
5095
|
-
borderImageOutset?: csstype.Property.BorderImageOutset<string | 0> | undefined;
|
|
5096
|
-
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
5097
|
-
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
5098
|
-
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
5099
|
-
borderImageWidth?: csstype.Property.BorderImageWidth<string | 0> | undefined;
|
|
5100
|
-
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
5101
|
-
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
5102
|
-
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
5103
|
-
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
5104
|
-
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
5105
|
-
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | 0> | undefined;
|
|
5106
|
-
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
5107
|
-
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
5108
|
-
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | 0> | undefined;
|
|
5109
|
-
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
5110
|
-
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
5111
|
-
borderRightWidth?: csstype.Property.BorderRightWidth<string | 0> | undefined;
|
|
5112
|
-
borderSpacing?: csstype.Property.BorderSpacing<string | 0> | undefined;
|
|
5113
|
-
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | 0> | undefined;
|
|
5114
|
-
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | 0> | undefined;
|
|
5115
|
-
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
5116
|
-
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5117
|
-
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5118
|
-
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
5119
|
-
borderTopWidth?: csstype.Property.BorderTopWidth<string | 0> | undefined;
|
|
5120
|
-
bottom?: csstype.Property.Bottom<string | 0> | undefined;
|
|
5121
|
-
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
5122
|
-
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5123
|
-
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5124
|
-
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
5125
|
-
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
5126
|
-
breakInside?: csstype.Property.BreakInside | undefined;
|
|
5127
|
-
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
5128
|
-
caretColor?: csstype.Property.CaretColor | undefined;
|
|
5129
|
-
caretShape?: csstype.Property.CaretShape | undefined;
|
|
5130
|
-
clear?: csstype.Property.Clear | undefined;
|
|
5131
|
-
clipPath?: csstype.Property.ClipPath | undefined;
|
|
5132
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
5133
|
-
color?: csstype.Property.Color | undefined;
|
|
5134
|
-
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5135
|
-
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
5136
|
-
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
5137
|
-
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
5138
|
-
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
5139
|
-
columnGap?: csstype.Property.ColumnGap<string | 0> | undefined;
|
|
5140
|
-
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5141
|
-
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5142
|
-
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5143
|
-
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
5144
|
-
columnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5145
|
-
contain?: csstype.Property.Contain | undefined;
|
|
5146
|
-
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | 0> | undefined;
|
|
5147
|
-
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | 0> | undefined;
|
|
5148
|
-
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | 0> | undefined;
|
|
5149
|
-
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | 0> | undefined;
|
|
5150
|
-
containerName?: csstype.Property.ContainerName | undefined;
|
|
5151
|
-
containerType?: csstype.Property.ContainerType | undefined;
|
|
5152
|
-
content?: csstype.Property.Content | undefined;
|
|
5153
|
-
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
5154
|
-
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
5155
|
-
counterReset?: csstype.Property.CounterReset | undefined;
|
|
5156
|
-
counterSet?: csstype.Property.CounterSet | undefined;
|
|
5157
|
-
cursor?: csstype.Property.Cursor | undefined;
|
|
5158
|
-
cx?: csstype.Property.Cx<string | 0> | undefined;
|
|
5159
|
-
cy?: csstype.Property.Cy<string | 0> | undefined;
|
|
5160
|
-
d?: csstype.Property.D | undefined;
|
|
5161
|
-
direction?: csstype.Property.Direction | undefined;
|
|
5162
|
-
display?: csstype.Property.Display | undefined;
|
|
5163
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
5164
|
-
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
5165
|
-
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
5166
|
-
fill?: csstype.Property.Fill | undefined;
|
|
5167
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
5168
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
5169
|
-
filter?: csstype.Property.Filter | undefined;
|
|
5170
|
-
flexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
5171
|
-
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5172
|
-
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
5173
|
-
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
5174
|
-
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
5175
|
-
float?: csstype.Property.Float | undefined;
|
|
5176
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
5177
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
5178
|
-
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
5179
|
-
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5180
|
-
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
5181
|
-
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
5182
|
-
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
5183
|
-
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
5184
|
-
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
5185
|
-
fontSmooth?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5186
|
-
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
5187
|
-
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
5188
|
-
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
5189
|
-
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
5190
|
-
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
5191
|
-
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
5192
|
-
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
5193
|
-
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
5194
|
-
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
5195
|
-
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
5196
|
-
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
5197
|
-
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
5198
|
-
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
5199
|
-
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
5200
|
-
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
5201
|
-
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
5202
|
-
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
5203
|
-
gridAutoColumns?: csstype.Property.GridAutoColumns<string | 0> | undefined;
|
|
5204
|
-
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
5205
|
-
gridAutoRows?: csstype.Property.GridAutoRows<string | 0> | undefined;
|
|
5206
|
-
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
5207
|
-
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
5208
|
-
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
5209
|
-
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
5210
|
-
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
5211
|
-
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | 0> | undefined;
|
|
5212
|
-
gridTemplateRows?: csstype.Property.GridTemplateRows<string | 0> | undefined;
|
|
5213
|
-
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
5214
|
-
height?: csstype.Property.Height<string | 0> | undefined;
|
|
5215
|
-
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
5216
|
-
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
5217
|
-
hyphens?: csstype.Property.Hyphens | undefined;
|
|
5218
|
-
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
5219
|
-
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
5220
|
-
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
5221
|
-
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
5222
|
-
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
5223
|
-
inlineSize?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
5224
|
-
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
5225
|
-
insetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
5226
|
-
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
5227
|
-
insetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
5228
|
-
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
5229
|
-
isolation?: csstype.Property.Isolation | undefined;
|
|
5230
|
-
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
5231
|
-
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
5232
|
-
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
5233
|
-
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
5234
|
-
left?: csstype.Property.Left<string | 0> | undefined;
|
|
5235
|
-
letterSpacing?: csstype.Property.LetterSpacing<string | 0> | undefined;
|
|
5236
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
5237
|
-
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
5238
|
-
lineHeightStep?: csstype.Property.LineHeightStep<string | 0> | undefined;
|
|
5239
|
-
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
5240
|
-
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
5241
|
-
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
5242
|
-
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | 0> | undefined;
|
|
5243
|
-
marginBlockStart?: csstype.Property.MarginBlockStart<string | 0> | undefined;
|
|
5244
|
-
marginBottom?: csstype.Property.MarginBottom<string | 0> | undefined;
|
|
5245
|
-
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5246
|
-
marginInlineStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5247
|
-
marginLeft?: csstype.Property.MarginLeft<string | 0> | undefined;
|
|
5248
|
-
marginRight?: csstype.Property.MarginRight<string | 0> | undefined;
|
|
5249
|
-
marginTop?: csstype.Property.MarginTop<string | 0> | undefined;
|
|
5250
|
-
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
5251
|
-
marker?: csstype.Property.Marker | undefined;
|
|
5252
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
5253
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
5254
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
5255
|
-
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
5256
|
-
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
5257
|
-
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
5258
|
-
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
5259
|
-
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
5260
|
-
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
5261
|
-
maskClip?: csstype.Property.MaskClip | undefined;
|
|
5262
|
-
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
5263
|
-
maskImage?: csstype.Property.MaskImage | undefined;
|
|
5264
|
-
maskMode?: csstype.Property.MaskMode | undefined;
|
|
5265
|
-
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
5266
|
-
maskPosition?: csstype.Property.MaskPosition<string | 0> | undefined;
|
|
5267
|
-
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
5268
|
-
maskSize?: csstype.Property.MaskSize<string | 0> | undefined;
|
|
5269
|
-
maskType?: csstype.Property.MaskType | undefined;
|
|
5270
|
-
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
5271
|
-
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
5272
|
-
mathShift?: csstype.Property.MathShift | undefined;
|
|
5273
|
-
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
5274
|
-
maxBlockSize?: csstype.Property.MaxBlockSize<string | 0> | undefined;
|
|
5275
|
-
maxHeight?: csstype.Property.MaxHeight<string | 0> | undefined;
|
|
5276
|
-
maxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
5277
|
-
maxLines?: csstype.Property.MaxLines | undefined;
|
|
5278
|
-
maxWidth?: csstype.Property.MaxWidth<string | 0> | undefined;
|
|
5279
|
-
minBlockSize?: csstype.Property.MinBlockSize<string | 0> | undefined;
|
|
5280
|
-
minHeight?: csstype.Property.MinHeight<string | 0> | undefined;
|
|
5281
|
-
minInlineSize?: csstype.Property.MinInlineSize<string | 0> | undefined;
|
|
5282
|
-
minWidth?: csstype.Property.MinWidth<string | 0> | undefined;
|
|
5283
|
-
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
5284
|
-
motionDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
5285
|
-
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
5286
|
-
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
5287
|
-
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
5288
|
-
objectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
5289
|
-
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
5290
|
-
offsetAnchor?: csstype.Property.OffsetAnchor<string | 0> | undefined;
|
|
5291
|
-
offsetDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
5292
|
-
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
5293
|
-
offsetPosition?: csstype.Property.OffsetPosition<string | 0> | undefined;
|
|
5294
|
-
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
5295
|
-
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
5296
|
-
opacity?: csstype.Property.Opacity | undefined;
|
|
5297
|
-
order?: csstype.Property.Order | undefined;
|
|
5298
|
-
orphans?: csstype.Property.Orphans | undefined;
|
|
5299
|
-
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
5300
|
-
outlineOffset?: csstype.Property.OutlineOffset<string | 0> | undefined;
|
|
5301
|
-
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
5302
|
-
outlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
5303
|
-
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
5304
|
-
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
5305
|
-
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
5306
|
-
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | 0> | undefined;
|
|
5307
|
-
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
5308
|
-
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
5309
|
-
overflowX?: csstype.Property.OverflowX | undefined;
|
|
5310
|
-
overflowY?: csstype.Property.OverflowY | undefined;
|
|
5311
|
-
overlay?: csstype.Property.Overlay | undefined;
|
|
5312
|
-
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
5313
|
-
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
5314
|
-
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
5315
|
-
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
5316
|
-
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | 0> | undefined;
|
|
5317
|
-
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | 0> | undefined;
|
|
5318
|
-
paddingBottom?: csstype.Property.PaddingBottom<string | 0> | undefined;
|
|
5319
|
-
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5320
|
-
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5321
|
-
paddingLeft?: csstype.Property.PaddingLeft<string | 0> | undefined;
|
|
5322
|
-
paddingRight?: csstype.Property.PaddingRight<string | 0> | undefined;
|
|
5323
|
-
paddingTop?: csstype.Property.PaddingTop<string | 0> | undefined;
|
|
5324
|
-
page?: csstype.Property.Page | undefined;
|
|
5325
|
-
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
5326
|
-
perspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5327
|
-
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5328
|
-
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
5329
|
-
position?: csstype.Property.Position | undefined;
|
|
5330
|
-
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
5331
|
-
positionArea?: csstype.Property.PositionArea | undefined;
|
|
5332
|
-
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
5333
|
-
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
5334
|
-
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
5335
|
-
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5336
|
-
quotes?: csstype.Property.Quotes | undefined;
|
|
5337
|
-
r?: csstype.Property.R<string | 0> | undefined;
|
|
5338
|
-
resize?: csstype.Property.Resize | undefined;
|
|
5339
|
-
right?: csstype.Property.Right<string | 0> | undefined;
|
|
5340
|
-
rotate?: csstype.Property.Rotate | undefined;
|
|
5341
|
-
rowGap?: csstype.Property.RowGap<string | 0> | undefined;
|
|
5342
|
-
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
5343
|
-
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
5344
|
-
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
5345
|
-
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
5346
|
-
rx?: csstype.Property.Rx<string | 0> | undefined;
|
|
5347
|
-
ry?: csstype.Property.Ry<string | 0> | undefined;
|
|
5348
|
-
scale?: csstype.Property.Scale | undefined;
|
|
5349
|
-
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
5350
|
-
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
5351
|
-
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | 0> | undefined;
|
|
5352
|
-
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | 0> | undefined;
|
|
5353
|
-
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
5354
|
-
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | 0> | undefined;
|
|
5355
|
-
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | 0> | undefined;
|
|
5356
|
-
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
5357
|
-
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
5358
|
-
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
5359
|
-
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | 0> | undefined;
|
|
5360
|
-
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | 0> | undefined;
|
|
5361
|
-
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | 0> | undefined;
|
|
5362
|
-
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | 0> | undefined;
|
|
5363
|
-
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | 0> | undefined;
|
|
5364
|
-
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | 0> | undefined;
|
|
5365
|
-
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | 0> | undefined;
|
|
5366
|
-
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | 0> | undefined;
|
|
5367
|
-
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
5368
|
-
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
5369
|
-
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
5370
|
-
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
5371
|
-
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
5372
|
-
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
5373
|
-
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
5374
|
-
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
5375
|
-
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
5376
|
-
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
5377
|
-
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
5378
|
-
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
5379
|
-
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
5380
|
-
shapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
5381
|
-
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
5382
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
5383
|
-
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
5384
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
5385
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
5386
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
5387
|
-
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
5388
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | 0> | undefined;
|
|
5389
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | 0> | undefined;
|
|
5390
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
5391
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
5392
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
5393
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
5394
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | 0> | undefined;
|
|
5395
|
-
tabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5396
|
-
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
5397
|
-
textAlign?: csstype.Property.TextAlign | undefined;
|
|
5398
|
-
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
5399
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
5400
|
-
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
5401
|
-
textBox?: csstype.Property.TextBox | undefined;
|
|
5402
|
-
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
5403
|
-
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
5404
|
-
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
5405
|
-
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5406
|
-
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5407
|
-
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
5408
|
-
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
5409
|
-
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5410
|
-
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | 0> | undefined;
|
|
5411
|
-
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
5412
|
-
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
5413
|
-
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
5414
|
-
textIndent?: csstype.Property.TextIndent<string | 0> | undefined;
|
|
5415
|
-
textJustify?: csstype.Property.TextJustify | undefined;
|
|
5416
|
-
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
5417
|
-
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5418
|
-
textRendering?: csstype.Property.TextRendering | undefined;
|
|
5419
|
-
textShadow?: csstype.Property.TextShadow | undefined;
|
|
5420
|
-
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5421
|
-
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
5422
|
-
textTransform?: csstype.Property.TextTransform | undefined;
|
|
5423
|
-
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | 0> | undefined;
|
|
5424
|
-
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
5425
|
-
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
5426
|
-
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
5427
|
-
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
5428
|
-
top?: csstype.Property.Top<string | 0> | undefined;
|
|
5429
|
-
touchAction?: csstype.Property.TouchAction | undefined;
|
|
5430
|
-
transform?: csstype.Property.Transform | undefined;
|
|
5431
|
-
transformBox?: csstype.Property.TransformBox | undefined;
|
|
5432
|
-
transformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5433
|
-
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5434
|
-
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
5435
|
-
transitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5436
|
-
transitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5437
|
-
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5438
|
-
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5439
|
-
translate?: csstype.Property.Translate<string | 0> | undefined;
|
|
5440
|
-
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
5441
|
-
userSelect?: csstype.Property.UserSelect | undefined;
|
|
5442
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
5443
|
-
verticalAlign?: csstype.Property.VerticalAlign<string | 0> | undefined;
|
|
5444
|
-
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
5445
|
-
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | 0> | undefined;
|
|
5446
|
-
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
5447
|
-
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
5448
|
-
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
5449
|
-
visibility?: csstype.Property.Visibility | undefined;
|
|
5450
|
-
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
5451
|
-
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
5452
|
-
widows?: csstype.Property.Widows | undefined;
|
|
5453
|
-
width?: csstype.Property.Width<string | 0> | undefined;
|
|
5454
|
-
willChange?: csstype.Property.WillChange | undefined;
|
|
5455
|
-
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
5456
|
-
wordSpacing?: csstype.Property.WordSpacing<string | 0> | undefined;
|
|
5457
|
-
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
5458
|
-
writingMode?: csstype.Property.WritingMode | undefined;
|
|
5459
|
-
x?: csstype.Property.X<string | 0> | undefined;
|
|
5460
|
-
y?: csstype.Property.Y<string | 0> | undefined;
|
|
5461
|
-
zIndex?: csstype.Property.ZIndex | undefined;
|
|
5462
|
-
zoom?: csstype.Property.Zoom | undefined;
|
|
5463
|
-
all?: csstype.Property.All | undefined;
|
|
5464
|
-
animation?: csstype.Property.Animation<string> | undefined;
|
|
5465
|
-
animationRange?: csstype.Property.AnimationRange<string | 0> | undefined;
|
|
5466
|
-
background?: csstype.Property.Background<string | 0> | undefined;
|
|
5467
|
-
backgroundPosition?: csstype.Property.BackgroundPosition<string | 0> | undefined;
|
|
5468
|
-
border?: csstype.Property.Border<string | 0> | undefined;
|
|
5469
|
-
borderBlock?: csstype.Property.BorderBlock<string | 0> | undefined;
|
|
5470
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
5471
|
-
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | 0> | undefined;
|
|
5472
|
-
borderBlockStart?: csstype.Property.BorderBlockStart<string | 0> | undefined;
|
|
5473
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
5474
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | 0> | undefined;
|
|
5475
|
-
borderBottom?: csstype.Property.BorderBottom<string | 0> | undefined;
|
|
5476
|
-
borderColor?: csstype.Property.BorderColor | undefined;
|
|
5477
|
-
borderImage?: csstype.Property.BorderImage | undefined;
|
|
5478
|
-
borderInline?: csstype.Property.BorderInline<string | 0> | undefined;
|
|
5479
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
5480
|
-
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | 0> | undefined;
|
|
5481
|
-
borderInlineStart?: csstype.Property.BorderInlineStart<string | 0> | undefined;
|
|
5482
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
5483
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | 0> | undefined;
|
|
5484
|
-
borderLeft?: csstype.Property.BorderLeft<string | 0> | undefined;
|
|
5485
|
-
borderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5486
|
-
borderRight?: csstype.Property.BorderRight<string | 0> | undefined;
|
|
5487
|
-
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
5488
|
-
borderTop?: csstype.Property.BorderTop<string | 0> | undefined;
|
|
5489
|
-
borderWidth?: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
5490
|
-
caret?: csstype.Property.Caret | undefined;
|
|
5491
|
-
columnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5492
|
-
columns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5493
|
-
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | 0> | undefined;
|
|
5494
|
-
container?: csstype.Property.Container | undefined;
|
|
5495
|
-
flex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5496
|
-
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
5497
|
-
font?: csstype.Property.Font | undefined;
|
|
5498
|
-
gap?: csstype.Property.Gap<string | 0> | undefined;
|
|
5499
|
-
grid?: csstype.Property.Grid | undefined;
|
|
5500
|
-
gridArea?: csstype.Property.GridArea | undefined;
|
|
5501
|
-
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
5502
|
-
gridRow?: csstype.Property.GridRow | undefined;
|
|
5503
|
-
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
5504
|
-
inset?: csstype.Property.Inset<string | 0> | undefined;
|
|
5505
|
-
insetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
5506
|
-
insetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
5507
|
-
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
5508
|
-
listStyle?: csstype.Property.ListStyle | undefined;
|
|
5509
|
-
margin?: csstype.Property.Margin<string | 0> | undefined;
|
|
5510
|
-
marginBlock?: csstype.Property.MarginBlock<string | 0> | undefined;
|
|
5511
|
-
marginInline?: csstype.Property.MarginInline<string | 0> | undefined;
|
|
5512
|
-
mask?: csstype.Property.Mask<string | 0> | undefined;
|
|
5513
|
-
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
5514
|
-
motion?: csstype.Property.Offset<string | 0> | undefined;
|
|
5515
|
-
offset?: csstype.Property.Offset<string | 0> | undefined;
|
|
5516
|
-
outline?: csstype.Property.Outline<string | 0> | undefined;
|
|
5517
|
-
overflow?: csstype.Property.Overflow | undefined;
|
|
5518
|
-
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
5519
|
-
padding?: csstype.Property.Padding<string | 0> | undefined;
|
|
5520
|
-
paddingBlock?: csstype.Property.PaddingBlock<string | 0> | undefined;
|
|
5521
|
-
paddingInline?: csstype.Property.PaddingInline<string | 0> | undefined;
|
|
5522
|
-
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
5523
|
-
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
5524
|
-
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
5525
|
-
positionTry?: csstype.Property.PositionTry | undefined;
|
|
5526
|
-
scrollMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
5527
|
-
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | 0> | undefined;
|
|
5528
|
-
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | 0> | undefined;
|
|
5529
|
-
scrollPadding?: csstype.Property.ScrollPadding<string | 0> | undefined;
|
|
5530
|
-
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | 0> | undefined;
|
|
5531
|
-
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | 0> | undefined;
|
|
5532
|
-
scrollSnapMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
5533
|
-
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
5534
|
-
textDecoration?: csstype.Property.TextDecoration<string | 0> | undefined;
|
|
5535
|
-
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
5536
|
-
textWrap?: csstype.Property.TextWrap | undefined;
|
|
5537
|
-
transition?: csstype.Property.Transition<string> | undefined;
|
|
5538
|
-
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
5539
|
-
MozAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5540
|
-
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5541
|
-
MozAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5542
|
-
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5543
|
-
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5544
|
-
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5545
|
-
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5546
|
-
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5547
|
-
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
5548
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5549
|
-
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
5550
|
-
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
5551
|
-
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
5552
|
-
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
5553
|
-
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
5554
|
-
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
5555
|
-
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
5556
|
-
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
5557
|
-
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
5558
|
-
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
5559
|
-
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5560
|
-
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5561
|
-
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5562
|
-
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5563
|
-
MozColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5564
|
-
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
5565
|
-
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5566
|
-
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
5567
|
-
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
5568
|
-
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5569
|
-
MozMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5570
|
-
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
5571
|
-
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5572
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | 0> | undefined;
|
|
5573
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | 0> | undefined;
|
|
5574
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | 0> | undefined;
|
|
5575
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | 0> | undefined;
|
|
5576
|
-
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5577
|
-
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5578
|
-
MozPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5579
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5580
|
-
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
5581
|
-
MozTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5582
|
-
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
5583
|
-
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5584
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
5585
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5586
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5587
|
-
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
5588
|
-
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
5589
|
-
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
5590
|
-
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
5591
|
-
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
5592
|
-
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
5593
|
-
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
5594
|
-
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
5595
|
-
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
5596
|
-
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
5597
|
-
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
5598
|
-
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
5599
|
-
msFilter?: csstype.Property.MsFilter | undefined;
|
|
5600
|
-
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5601
|
-
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
5602
|
-
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
5603
|
-
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
5604
|
-
msGridColumns?: csstype.Property.MsGridColumns<string | 0> | undefined;
|
|
5605
|
-
msGridRows?: csstype.Property.MsGridRows<string | 0> | undefined;
|
|
5606
|
-
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
5607
|
-
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
5608
|
-
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
5609
|
-
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | 0> | undefined;
|
|
5610
|
-
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
5611
|
-
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
5612
|
-
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5613
|
-
msOrder?: csstype.Property.Order | undefined;
|
|
5614
|
-
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
5615
|
-
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
5616
|
-
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
5617
|
-
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
5618
|
-
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | 0> | undefined;
|
|
5619
|
-
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | 0> | undefined;
|
|
5620
|
-
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | 0> | undefined;
|
|
5621
|
-
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | 0> | undefined;
|
|
5622
|
-
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
5623
|
-
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
5624
|
-
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
5625
|
-
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
5626
|
-
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
5627
|
-
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
5628
|
-
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
5629
|
-
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
5630
|
-
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
5631
|
-
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
5632
|
-
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
5633
|
-
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
5634
|
-
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
5635
|
-
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
5636
|
-
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
5637
|
-
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5638
|
-
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
5639
|
-
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
5640
|
-
msTransform?: csstype.Property.Transform | undefined;
|
|
5641
|
-
msTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5642
|
-
msTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5643
|
-
msTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5644
|
-
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5645
|
-
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5646
|
-
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
5647
|
-
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
5648
|
-
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
5649
|
-
msWrapMargin?: csstype.Property.MsWrapMargin<string | 0> | undefined;
|
|
5650
|
-
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
5651
|
-
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
5652
|
-
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
5653
|
-
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
5654
|
-
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
5655
|
-
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5656
|
-
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5657
|
-
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5658
|
-
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5659
|
-
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5660
|
-
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5661
|
-
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5662
|
-
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5663
|
-
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
5664
|
-
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
5665
|
-
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5666
|
-
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5667
|
-
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5668
|
-
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5669
|
-
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
5670
|
-
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
5671
|
-
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | 0> | undefined;
|
|
5672
|
-
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5673
|
-
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5674
|
-
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
5675
|
-
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5676
|
-
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5677
|
-
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
5678
|
-
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | 0> | undefined;
|
|
5679
|
-
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5680
|
-
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5681
|
-
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
5682
|
-
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
5683
|
-
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
5684
|
-
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5685
|
-
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5686
|
-
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5687
|
-
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
5688
|
-
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5689
|
-
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
5690
|
-
WebkitFlexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
5691
|
-
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5692
|
-
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
5693
|
-
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
5694
|
-
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
5695
|
-
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5696
|
-
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
5697
|
-
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5698
|
-
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
5699
|
-
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
5700
|
-
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
5701
|
-
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
5702
|
-
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
5703
|
-
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5704
|
-
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
5705
|
-
WebkitLogicalHeight?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
5706
|
-
WebkitLogicalWidth?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
5707
|
-
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5708
|
-
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5709
|
-
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
5710
|
-
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
5711
|
-
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
5712
|
-
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
5713
|
-
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
5714
|
-
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
5715
|
-
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
5716
|
-
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
5717
|
-
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
5718
|
-
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
5719
|
-
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | 0> | undefined;
|
|
5720
|
-
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | 0> | undefined;
|
|
5721
|
-
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | 0> | undefined;
|
|
5722
|
-
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
5723
|
-
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
5724
|
-
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
5725
|
-
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | 0> | undefined;
|
|
5726
|
-
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
5727
|
-
WebkitOrder?: csstype.Property.Order | undefined;
|
|
5728
|
-
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
5729
|
-
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5730
|
-
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5731
|
-
WebkitPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5732
|
-
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5733
|
-
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5734
|
-
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
5735
|
-
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
5736
|
-
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
5737
|
-
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
5738
|
-
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
5739
|
-
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5740
|
-
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5741
|
-
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
5742
|
-
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5743
|
-
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
5744
|
-
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
5745
|
-
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
5746
|
-
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
5747
|
-
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
5748
|
-
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5749
|
-
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
5750
|
-
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | 0> | undefined;
|
|
5751
|
-
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
5752
|
-
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
5753
|
-
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
5754
|
-
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5755
|
-
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5756
|
-
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5757
|
-
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5758
|
-
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5759
|
-
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5760
|
-
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
5761
|
-
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
5762
|
-
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
5763
|
-
MozAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5764
|
-
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5765
|
-
MozColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5766
|
-
MozColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5767
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | 0> | undefined;
|
|
5768
|
-
MozTransition?: csstype.Property.Transition<string> | undefined;
|
|
5769
|
-
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
5770
|
-
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
5771
|
-
msFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5772
|
-
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
5773
|
-
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
5774
|
-
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
5775
|
-
msTransition?: csstype.Property.Transition<string> | undefined;
|
|
5776
|
-
WebkitAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5777
|
-
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | 0> | undefined;
|
|
5778
|
-
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5779
|
-
WebkitBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5780
|
-
WebkitColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5781
|
-
WebkitColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5782
|
-
WebkitFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5783
|
-
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
5784
|
-
WebkitMask?: csstype.Property.WebkitMask<string | 0> | undefined;
|
|
5785
|
-
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
5786
|
-
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
5787
|
-
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | 0> | undefined;
|
|
5788
|
-
WebkitTransition?: csstype.Property.Transition<string> | undefined;
|
|
5789
|
-
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5790
|
-
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5791
|
-
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5792
|
-
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5793
|
-
boxLines?: csstype.Property.BoxLines | undefined;
|
|
5794
|
-
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5795
|
-
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5796
|
-
boxPack?: csstype.Property.BoxPack | undefined;
|
|
5797
|
-
clip?: csstype.Property.Clip | undefined;
|
|
5798
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
5799
|
-
gridColumnGap?: csstype.Property.GridColumnGap<string | 0> | undefined;
|
|
5800
|
-
gridGap?: csstype.Property.GridGap<string | 0> | undefined;
|
|
5801
|
-
gridRowGap?: csstype.Property.GridRowGap<string | 0> | undefined;
|
|
5802
|
-
imeMode?: csstype.Property.ImeMode | undefined;
|
|
5803
|
-
insetArea?: csstype.Property.PositionArea | undefined;
|
|
5804
|
-
offsetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
5805
|
-
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
5806
|
-
offsetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
5807
|
-
offsetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
5808
|
-
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
5809
|
-
offsetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
5810
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
5811
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
5812
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
5813
|
-
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
5814
|
-
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | 0> | undefined;
|
|
5815
|
-
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | 0> | undefined;
|
|
5816
|
-
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
5817
|
-
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
5818
|
-
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
5819
|
-
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
5820
|
-
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5821
|
-
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5822
|
-
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5823
|
-
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5824
|
-
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
5825
|
-
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5826
|
-
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5827
|
-
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5828
|
-
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5829
|
-
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
5830
|
-
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
5831
|
-
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5832
|
-
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5833
|
-
MozBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5834
|
-
MozBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5835
|
-
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5836
|
-
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5837
|
-
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5838
|
-
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5839
|
-
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5840
|
-
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5841
|
-
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5842
|
-
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5843
|
-
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5844
|
-
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5845
|
-
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5846
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
5847
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
5848
|
-
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
5849
|
-
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
5850
|
-
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
5851
|
-
MozOutline?: csstype.Property.Outline<string | 0> | undefined;
|
|
5852
|
-
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
5853
|
-
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
5854
|
-
MozOutlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
5855
|
-
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
5856
|
-
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5857
|
-
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5858
|
-
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5859
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5860
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5861
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5862
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5863
|
-
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
5864
|
-
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
5865
|
-
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
5866
|
-
OAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5867
|
-
OAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5868
|
-
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5869
|
-
OAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5870
|
-
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5871
|
-
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5872
|
-
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5873
|
-
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5874
|
-
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5875
|
-
OBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5876
|
-
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5877
|
-
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
5878
|
-
OObjectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
5879
|
-
OTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5880
|
-
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5881
|
-
OTransform?: csstype.Property.Transform | undefined;
|
|
5882
|
-
OTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5883
|
-
OTransition?: csstype.Property.Transition<string> | undefined;
|
|
5884
|
-
OTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5885
|
-
OTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5886
|
-
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5887
|
-
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5888
|
-
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5889
|
-
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5890
|
-
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5891
|
-
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5892
|
-
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
5893
|
-
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5894
|
-
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5895
|
-
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5896
|
-
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
5897
|
-
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
5898
|
-
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
5899
|
-
};
|
|
5900
|
-
hoverStyles: Properties;
|
|
5901
|
-
disabledStyles: Properties;
|
|
5902
|
-
focusRingStyles: Properties;
|
|
5903
|
-
activeStyles: Properties;
|
|
5904
|
-
pressedStyles: Properties;
|
|
5905
|
-
};
|
|
5906
|
-
|
|
5907
|
-
type TextButtonTriggerProps = Pick<ButtonProps, "label" | "variant" | "size" | "icon">;
|
|
5908
|
-
type IconButtonTriggerProps = Pick<IconButtonProps, "icon" | "color" | "compact" | "inc" | "variant">;
|
|
5909
|
-
type AvatarButtonTriggerProps = Pick<AvatarButtonProps, "src" | "name" | "size" | "preventTooltip">;
|
|
5910
|
-
type NavLinkButtonTriggerProps = {
|
|
5911
|
-
navLabel: string;
|
|
5912
|
-
} & Pick<NavLinkProps, "active" | "variant" | "icon">;
|
|
5913
|
-
type OverlayTriggerProps = {
|
|
5914
|
-
trigger: TextButtonTriggerProps | IconButtonTriggerProps | AvatarButtonTriggerProps | NavLinkButtonTriggerProps;
|
|
5915
|
-
/** Defaults to "left" */
|
|
5916
|
-
placement?: "left" | "right";
|
|
5917
|
-
/** Whether the Button is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
5918
|
-
disabled?: boolean | ReactNode;
|
|
5919
|
-
/** Text to be shown via a tooltip when the user hovers over the button */
|
|
5920
|
-
tooltip?: ReactNode;
|
|
5921
|
-
/** The component to be shown within the overlay */
|
|
5922
|
-
children: ReactElement;
|
|
5923
|
-
/** Props returned by the useMenuTrigger hook to be passed to the button element */
|
|
5924
|
-
menuTriggerProps: AriaButtonProps;
|
|
5925
|
-
/** Ref for the button element */
|
|
5926
|
-
buttonRef: MutableRefObject<HTMLButtonElement | null>;
|
|
5927
|
-
/** Result of the useMenuTriggerState hook */
|
|
5928
|
-
state: MenuTriggerState;
|
|
5929
|
-
/** Prop set the style of the button element */
|
|
5930
|
-
variant?: ButtonVariant;
|
|
5931
|
-
hideEndAdornment?: boolean;
|
|
5932
|
-
showActiveBorder?: boolean;
|
|
5933
|
-
};
|
|
5083
|
+
wasCollapsed(id: string): boolean | undefined;
|
|
5084
|
+
}
|
|
5934
5085
|
|
|
5935
|
-
type
|
|
5936
|
-
|
|
5937
|
-
|
|
5938
|
-
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
|
|
5955
|
-
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5086
|
+
type SelectedState = "checked" | "unchecked" | "partial";
|
|
5087
|
+
/**
|
|
5088
|
+
* Stores the collapsed & selected state of rows.
|
|
5089
|
+
*
|
|
5090
|
+
* I.e. this implements "collapse parent" --> "hides children", and
|
|
5091
|
+
* "select parent" --> "select parent + children".
|
|
5092
|
+
*
|
|
5093
|
+
* There should be a single, stable `RowStateStore` instance per `GridTable`, so
|
|
5094
|
+
* that children don't have to re-render even as we incrementally add/remove rows
|
|
5095
|
+
* to the table (i.e. the top-level rows identity changes, but each row within it
|
|
5096
|
+
* may not).
|
|
5097
|
+
*
|
|
5098
|
+
* We use mobx ObservableSets/ObservableMaps to drive granular re-rendering of rows/cells
|
|
5099
|
+
* that need to change their toggle/select on/off in response to parent/child
|
|
5100
|
+
* changes.
|
|
5101
|
+
*/
|
|
5102
|
+
declare class TableState<R extends Kinded> {
|
|
5103
|
+
private persistCollapse;
|
|
5104
|
+
private rows;
|
|
5105
|
+
columns: GridColumnWithId<R>[];
|
|
5106
|
+
readonly api: GridTableApi<R>;
|
|
5107
|
+
private readonly rowStates;
|
|
5108
|
+
private readonly columnStates;
|
|
5109
|
+
activeRowId: string | undefined;
|
|
5110
|
+
activeCellId: string | undefined;
|
|
5111
|
+
/** Stores the current client-side type-ahead search/filter. */
|
|
5112
|
+
search: string[];
|
|
5113
|
+
/** Stores whether CSVs should have some prefix rows. */
|
|
5114
|
+
csvPrefixRows: string[][] | undefined;
|
|
5115
|
+
sortConfig: GridSortConfig | undefined;
|
|
5116
|
+
sort: SortState;
|
|
5117
|
+
private initialSortState;
|
|
5118
|
+
private onSort;
|
|
5119
|
+
onRowSelect: OnRowSelect<any> | undefined;
|
|
5120
|
+
/**
|
|
5121
|
+
* Creates the `RowState` for a given `GridTable`.
|
|
5122
|
+
*/
|
|
5123
|
+
constructor(api: GridTableApi<any>);
|
|
5124
|
+
loadCollapse(persistCollapse: string): void;
|
|
5125
|
+
initSortState(sortConfig: GridSortConfig | undefined, columns: GridColumnWithId<R>[]): void;
|
|
5126
|
+
setSortKey(clickedColumnId: string): void;
|
|
5127
|
+
get sortState(): SortState | undefined;
|
|
5128
|
+
/** Returns a client-side sort function, if applicable. */
|
|
5129
|
+
get sortFn(): ((a: RowState<R>, b: RowState<R>) => number) | undefined;
|
|
5130
|
+
setRows(rows: GridDataRow<R>[]): void;
|
|
5131
|
+
setColumns(columns: GridColumnWithId<R>[], visibleColumnsStorageKey: string | undefined): void;
|
|
5132
|
+
setSearch(search: string | undefined): void;
|
|
5133
|
+
setCsvPrefixRows(csvPrefixRows: string[][] | undefined): void;
|
|
5134
|
+
get visibleRows(): RowState<R>[];
|
|
5135
|
+
/** Returns visible columns, i.e. those that are visible + any expanded children. */
|
|
5136
|
+
get visibleColumns(): GridColumnWithId<R>[];
|
|
5137
|
+
/** Returns visible columns, i.e. those that are visible + any expanded children. */
|
|
5138
|
+
get visibleCsvColumns(): GridColumnWithId<R>[];
|
|
5139
|
+
/** Implements GridTableApi.visibleColumnIds. */
|
|
5140
|
+
get visibleColumnIds(): string[];
|
|
5141
|
+
setVisibleColumns(ids: string[]): void;
|
|
5142
|
+
get expandedColumnIds(): string[];
|
|
5143
|
+
isExpandedColumn(columnId: string): boolean;
|
|
5144
|
+
toggleExpandedColumn(columnId: string): void;
|
|
5145
|
+
numberOfExpandedChildren(columnId: string): number;
|
|
5146
|
+
loadExpandedColumns(columnId: string): Promise<void>;
|
|
5147
|
+
/**
|
|
5148
|
+
* Returns selected data rows (non-header, non-totals, etc.), ignoring rows that
|
|
5149
|
+
* have `row.selectable !== false`.
|
|
5150
|
+
*/
|
|
5151
|
+
get selectedRows(): RowState<R>[];
|
|
5152
|
+
/** Returns kept group row, with the latest kept children, if any. */
|
|
5153
|
+
get keptRowGroup(): GridDataRow<R>;
|
|
5154
|
+
/** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
|
|
5155
|
+
get keptRows(): GridDataRow<R>[];
|
|
5156
|
+
getSelected(id: string): SelectedState;
|
|
5157
|
+
selectRow(id: string, selected: boolean): void;
|
|
5158
|
+
get collapsedIds(): string[];
|
|
5159
|
+
isCollapsed(id: string): boolean;
|
|
5160
|
+
toggleCollapsed(id: string): void;
|
|
5161
|
+
/** Returns rows pinned to the top, as RowStates for rendering. */
|
|
5162
|
+
get pinnedRows(): RowState<R>[];
|
|
5163
|
+
isPinnedRow(id: string): boolean;
|
|
5164
|
+
pinRow(id: string): void;
|
|
5165
|
+
unpinRow(id: string): void;
|
|
5166
|
+
togglePinned(id: string): void;
|
|
5167
|
+
deleteRows(ids: string[]): void;
|
|
5168
|
+
maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
|
|
5169
|
+
}
|
|
5170
|
+
/** Provides a context for rows to access their table's `TableState`. */
|
|
5171
|
+
declare const TableStateContext: React__default.Context<{
|
|
5172
|
+
tableState: TableState<any>;
|
|
5173
|
+
tableContainerRef?: React__default.MutableRefObject<HTMLElement | null>;
|
|
5174
|
+
}>;
|
|
5175
|
+
type ColumnSort = {
|
|
5176
|
+
columnId: string;
|
|
5177
|
+
direction: Direction;
|
|
5971
5178
|
};
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
type TagPropsBase<X> = {
|
|
5977
|
-
text: ReactNode;
|
|
5978
|
-
type?: TagType;
|
|
5979
|
-
/** Defaults to "primary". Secondary is intended for use in TagGroup. */
|
|
5980
|
-
variant?: TagVariant;
|
|
5981
|
-
xss?: X;
|
|
5982
|
-
/** A tooltip will automatically be displayed if the text is truncated. Set to true to prevent this behavior.
|
|
5983
|
-
* @default false */
|
|
5984
|
-
preventTooltip?: boolean;
|
|
5179
|
+
type SortState = {
|
|
5180
|
+
current?: ColumnSort;
|
|
5181
|
+
/** The persistent sort is always applied first, i.e. for schedules, probably. */
|
|
5182
|
+
persistent?: ColumnSort;
|
|
5985
5183
|
};
|
|
5986
|
-
|
|
5987
|
-
type TagProps<X> = TagPropsBase<X> & ({
|
|
5988
|
-
iconOnly?: false;
|
|
5989
|
-
icon?: IconKey;
|
|
5990
|
-
} | {
|
|
5991
|
-
iconOnly: true;
|
|
5992
|
-
icon: IconKey;
|
|
5993
|
-
});
|
|
5994
|
-
/** Tag used for indicating a status */
|
|
5995
|
-
declare function Tag<X extends Only<Xss<TagXss>, X>>(props: TagProps<X>): JSX.Element;
|
|
5184
|
+
type SortOn = "client" | "server" | undefined;
|
|
5996
5185
|
|
|
5997
|
-
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
5186
|
+
/**
|
|
5187
|
+
* Manages our tree of observable RowStates that manage each GridDataRow's behavior.
|
|
5188
|
+
*/
|
|
5189
|
+
declare class RowStates<R extends Kinded> {
|
|
5190
|
+
private map;
|
|
5191
|
+
readonly table: TableState<R>;
|
|
5192
|
+
readonly storage: RowStorage<R>;
|
|
5193
|
+
private readonly header;
|
|
5194
|
+
private keptGroupRow;
|
|
5195
|
+
/** The first level of rows, i.e. not the header (or kept group), but the totals + top-level children. */
|
|
5196
|
+
private topRows;
|
|
5197
|
+
constructor(table: TableState<R>);
|
|
5198
|
+
/** Returns a flat list of all of our RowStates. */
|
|
5199
|
+
get allStates(): RowState<R>[];
|
|
5200
|
+
/** Returns the `RowState` for the given `id`. We should probably require `kind`. */
|
|
5201
|
+
get(id: string): RowState<R>;
|
|
6010
5202
|
/**
|
|
6011
|
-
*
|
|
6012
|
-
*
|
|
5203
|
+
* Merge a new set of `rows` prop into our state.
|
|
5204
|
+
*
|
|
5205
|
+
* Any missing rows are marked as `wasRemoved` so we can consider them "kept" if they're also selected.
|
|
6013
5206
|
*/
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
|
|
6025
|
-
|
|
6026
|
-
|
|
6027
|
-
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
});
|
|
6036
|
-
type CardTitleSlot = CardSlotBase<"title"> & {
|
|
6037
|
-
text: string;
|
|
6038
|
-
};
|
|
6039
|
-
type CardEyebrowSlot = CardSlotBase<"eyebrow"> & {
|
|
6040
|
-
text: string;
|
|
6041
|
-
};
|
|
6042
|
-
type CardBadgeSlot = CardSlotBase<"badge"> & {
|
|
6043
|
-
text: string;
|
|
6044
|
-
tags?: CardBadgeTag[];
|
|
6045
|
-
};
|
|
6046
|
-
type CardStatusSlot = CardSlotBase<"status"> & {
|
|
6047
|
-
tag: CardTag;
|
|
6048
|
-
};
|
|
6049
|
-
type CardDataBlockSlot = CardSlotBase<"dataBlock"> & {
|
|
6050
|
-
label: string;
|
|
6051
|
-
value: ReactNode | string | number;
|
|
6052
|
-
};
|
|
6053
|
-
type CardProgressSlot = CardSlotBase<"progress"> & {
|
|
6054
|
-
value: number;
|
|
6055
|
-
};
|
|
6056
|
-
type CardSlot = CardTitleSlot | CardEyebrowSlot | CardBadgeSlot | CardStatusSlot | CardDataBlockSlot | CardProgressSlot;
|
|
6057
|
-
declare function cardTitleSlot(text: string): CardTitleSlot;
|
|
6058
|
-
declare function cardEyebrowSlot(text: string): CardEyebrowSlot;
|
|
6059
|
-
declare function cardBadgeSlot(text: string, tags?: CardBadgeTag[]): CardBadgeSlot;
|
|
6060
|
-
declare function cardStatusSlot(tag: CardTag): CardStatusSlot;
|
|
6061
|
-
declare function cardDataBlockSlot(props: {
|
|
6062
|
-
label: string;
|
|
6063
|
-
value: ReactNode | string | number;
|
|
6064
|
-
}): CardDataBlockSlot;
|
|
6065
|
-
declare function cardProgressSlot(value: number): CardProgressSlot;
|
|
5207
|
+
setRows(rows: GridDataRow<R>[]): void;
|
|
5208
|
+
/** Fully delete `ids`, so they don't show up in kept rows anymore. */
|
|
5209
|
+
delete(ids: string[]): void;
|
|
5210
|
+
/** Implements special collapse behavior, which is just the header's collapse/uncollapse. */
|
|
5211
|
+
toggleCollapsed(id: string): void;
|
|
5212
|
+
get visibleRows(): RowState<R>[];
|
|
5213
|
+
/** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
|
|
5214
|
+
get keptRows(): RowState<R>[];
|
|
5215
|
+
get collapsedRows(): RowState<R>[];
|
|
5216
|
+
/**
|
|
5217
|
+
* Returns rows pinned to the top at runtime.
|
|
5218
|
+
*
|
|
5219
|
+
* Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
|
|
5220
|
+
* current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
|
|
5221
|
+
*/
|
|
5222
|
+
get pinnedRows(): RowState<R>[];
|
|
5223
|
+
private createHeaderRow;
|
|
5224
|
+
/** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
|
|
5225
|
+
private createKeptGroupRow;
|
|
5226
|
+
maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
|
|
5227
|
+
}
|
|
6066
5228
|
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
|
|
6079
|
-
|
|
5229
|
+
declare enum DraggedOver {
|
|
5230
|
+
None = 0,
|
|
5231
|
+
Above = 1,// In this case this means higher on the screen which means a lower y value and a lower row index
|
|
5232
|
+
Below = 2
|
|
5233
|
+
}
|
|
5234
|
+
/**
|
|
5235
|
+
* A reactive/observable state of each GridDataRow's current behavior.
|
|
5236
|
+
*
|
|
5237
|
+
* We set up the RowStates in a tree, just like GridDataRow, to make business logic
|
|
5238
|
+
* that uses parent/children easier to write, i.e. selected-ness and collapsed-ness.
|
|
5239
|
+
*/
|
|
5240
|
+
declare class RowState<R extends Kinded> {
|
|
5241
|
+
private states;
|
|
5242
|
+
parent: RowState<R> | undefined;
|
|
5243
|
+
/** Our row, not actually observed, b/c each `createRows` calc creates unstable rows. */
|
|
5244
|
+
private _row;
|
|
5245
|
+
/** Our data, only ref observed, so we don't crawl into GraphQL fragments. */
|
|
5246
|
+
private _data;
|
|
5247
|
+
/** Our children row states, as of the latest `props.rows`, without any filtering applied. */
|
|
5248
|
+
children: RowState<R>[] | undefined;
|
|
5249
|
+
/** Whether we are *directly* selected. */
|
|
5250
|
+
selected: boolean;
|
|
5251
|
+
/** Whether we are collapsed. */
|
|
5252
|
+
collapsed: boolean;
|
|
5253
|
+
/**
|
|
5254
|
+
* Whether this row is pinned to the top at runtime — distinct from the declarative `row.fixedSort`,
|
|
5255
|
+
* which only reorders within a group. Boolean for now; maybe someday we implement bottom pinning,
|
|
5256
|
+
* at which point this would become `"top" | "bottom"`.
|
|
5257
|
+
*/
|
|
5258
|
+
pinned: boolean;
|
|
5259
|
+
/** Whether we are dragged over. */
|
|
5260
|
+
isDraggedOver: DraggedOver;
|
|
5261
|
+
/**
|
|
5262
|
+
* Whether our `row` had been in `props.rows`, but then removed _while being
|
|
5263
|
+
* selected_, i.e. potentially by server-side filters.
|
|
5264
|
+
*
|
|
5265
|
+
* We have had a large foot-gun where users "select a row", change the filters,
|
|
5266
|
+
* the row disappears (filtered out), and the user clicks "Go!", but the table
|
|
5267
|
+
* thinks their previously-selected row is gone (b/c it's not in view), and
|
|
5268
|
+
* then the row is inappropriately deleted/unassociated/etc. (b/c in the user's
|
|
5269
|
+
* head, it is "still selected").
|
|
5270
|
+
*
|
|
5271
|
+
* To avoid this, we by default keep selected rows, as "kept rows", to make
|
|
5272
|
+
* extra sure the user wants them to go away.
|
|
5273
|
+
*
|
|
5274
|
+
* Soft-deleted rows are rows that were removed from `props.rows` (i.e. we
|
|
5275
|
+
* suspect are just hidden by a changed server-side-filter), and hard-deleted
|
|
5276
|
+
* rows are rows the page called `api.deleteRow` and confirmed it should be
|
|
5277
|
+
* actively removed.
|
|
5278
|
+
*/
|
|
5279
|
+
removed: false | "soft" | "hard";
|
|
5280
|
+
private isCalculatingDirectMatch;
|
|
5281
|
+
constructor(states: RowStates<R>, parent: RowState<R> | undefined, row: GridDataRow<R>);
|
|
5282
|
+
/** Returns a stable-ish row identity that will only change if our `data` changes. */
|
|
5283
|
+
get row(): GridDataRow<R>;
|
|
5284
|
+
/** Accepts a new unstable row, i.e. each `createRows` creates a new row literal. */
|
|
5285
|
+
set row(row: GridDataRow<R>);
|
|
5286
|
+
/**
|
|
5287
|
+
* Whether we match a client-side filter; true if no filter is in place.
|
|
5288
|
+
*
|
|
5289
|
+
* We should try and keep this based solely on "does/does not match the filter",
|
|
5290
|
+
* and do any overrides for things like pinning/kept rows/etc. elsewhere.
|
|
5291
|
+
*/
|
|
5292
|
+
get isMatched(): boolean;
|
|
5293
|
+
/**
|
|
5294
|
+
* Whether we are effectively selected, for `GridTableApi.getSelectedRows`.
|
|
5295
|
+
*
|
|
5296
|
+
* Note that we don't use "I'm selected || my parent is selected" logic here, because whether a child is selected
|
|
5297
|
+
* is actually based on whether it was _visible at the time the parent was selected_. So, we can't just assume
|
|
5298
|
+
* "a parent being selected means the child is also selected", and instead parents have to push selected-ness down
|
|
5299
|
+
* to their visible children explicitly.
|
|
5300
|
+
*/
|
|
5301
|
+
get isSelected(): boolean;
|
|
5302
|
+
/** The UI state for checked/unchecked + "partially checked" for parents. */
|
|
5303
|
+
get selectedState(): SelectedState;
|
|
5304
|
+
/**
|
|
5305
|
+
* A special SelectedState that "sees through"/ignores inferSelectedState, so the header works.
|
|
5306
|
+
*
|
|
5307
|
+
* I.e. a row might have `inferSelectedState: false`, so is showing unchecked, but the header
|
|
5308
|
+
* wants to show partial-ness whenever any given child is selected.
|
|
5309
|
+
*/
|
|
5310
|
+
get selectedStateForHeader(): SelectedState;
|
|
5311
|
+
/**
|
|
5312
|
+
* Called to explicitly select/unselect this row.
|
|
5313
|
+
*
|
|
5314
|
+
* This could be either because the user clicked directly on us, or because we're a visible
|
|
5315
|
+
* child of a selected parent row.
|
|
5316
|
+
*/
|
|
5317
|
+
select(selected: boolean): void;
|
|
5318
|
+
/** Marks the row as removed from `props.rows`, to potentially become kept. */
|
|
5319
|
+
markRemoved(): void;
|
|
5320
|
+
toggleCollapsed(): void;
|
|
5321
|
+
/** Pin/unpin this row at runtime. */
|
|
5322
|
+
setPinned(pinned: boolean): void;
|
|
5323
|
+
/** Toggle this row's runtime pin. */
|
|
5324
|
+
togglePinned(): void;
|
|
5325
|
+
/** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
|
|
5326
|
+
get isKept(): boolean;
|
|
5327
|
+
get isLastKeptRow(): boolean;
|
|
5328
|
+
get key(): string;
|
|
5329
|
+
get kind(): string;
|
|
5330
|
+
get isActive(): boolean;
|
|
5331
|
+
get level(): number;
|
|
5332
|
+
private get inferSelectedState();
|
|
5333
|
+
/** Returns this row and, if we're not collapsed, our children. */
|
|
5334
|
+
get selfAndMaybeChildren(): RowState<R>[];
|
|
5335
|
+
private get visibleChildren();
|
|
5336
|
+
private get visibleDirectlyMatchedChildren();
|
|
5337
|
+
/** The `visibleChildren`, but with the current sort config applied. */
|
|
5338
|
+
private get visibleSortedChildren();
|
|
5339
|
+
private get hasSelectableChildren();
|
|
6080
5340
|
/**
|
|
6081
|
-
*
|
|
5341
|
+
* Returns whether this row should act like a parent.
|
|
5342
|
+
*
|
|
5343
|
+
* This means "has children" and "does not have inferSelectedState: false"
|
|
5344
|
+
* set. I.e. `inferSelectedState: false` allows a parent with children to
|
|
5345
|
+
* still act as its own selectable identity.
|
|
5346
|
+
*
|
|
5347
|
+
* We also check `children.length > 0`, because sometimes pages will calc a
|
|
5348
|
+
* row's children as `children = someList.map(...)`, and if the list is empty,
|
|
5349
|
+
* they want the row to be selectable.
|
|
6082
5350
|
*/
|
|
6083
|
-
|
|
5351
|
+
private get isParent();
|
|
5352
|
+
/**
|
|
5353
|
+
* Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
|
|
5354
|
+
*
|
|
5355
|
+
* Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
|
|
5356
|
+
* (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
|
|
5357
|
+
*/
|
|
5358
|
+
private get isAlwaysVisible();
|
|
5359
|
+
get api(): GridRowApi<R>;
|
|
5360
|
+
get isReservedKind(): boolean;
|
|
5361
|
+
/** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
|
|
5362
|
+
private get hasDirectlyMatchedChildren();
|
|
5363
|
+
/** A dedicated method to "looking up" recursively, to avoid loops in `isMatched`. */
|
|
5364
|
+
private get hasDirectlyMatchedParent();
|
|
5365
|
+
private get isDirectlyMatched();
|
|
5366
|
+
}
|
|
5367
|
+
|
|
5368
|
+
type RowProps<R extends Kinded> = {
|
|
5369
|
+
as: RenderAs;
|
|
5370
|
+
rs: RowState<R>;
|
|
5371
|
+
style: GridStyle;
|
|
5372
|
+
rowStyles: RowStyles<R> | undefined;
|
|
5373
|
+
columnSizes: string[];
|
|
5374
|
+
getCount: (id: string) => object;
|
|
5375
|
+
cellHighlight: boolean;
|
|
5376
|
+
omitRowHover: boolean;
|
|
5377
|
+
hasExpandableHeader: boolean;
|
|
5378
|
+
isFirstHeadRow: boolean;
|
|
5379
|
+
isFirstBodyRow: boolean;
|
|
5380
|
+
isLastBodyRow: boolean;
|
|
5381
|
+
/** When true, a trailing companion sits under this row — suppress the bottom separator. */
|
|
5382
|
+
hasTrailingCompanion?: boolean;
|
|
5383
|
+
resizedWidths: ResizedWidths;
|
|
5384
|
+
setResizedWidth: (columnId: string, width: number, columnIndex: number) => void;
|
|
5385
|
+
disableColumnResizing: boolean;
|
|
5386
|
+
calculatePreviewWidth: (columnId: string, newWidth: number, columnIndex: number) => number;
|
|
5387
|
+
onDragStart?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
5388
|
+
onDragEnd?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
5389
|
+
onDrop?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
5390
|
+
onDragEnter?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
5391
|
+
onDragOver?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
6084
5392
|
};
|
|
5393
|
+
declare function RowImpl<R extends Kinded, S>(props: RowProps<R>): ReactElement;
|
|
6085
5394
|
/**
|
|
6086
|
-
*
|
|
5395
|
+
* Memoizes rows so that re-rendering the table doesn't re-render every single row.
|
|
6087
5396
|
*
|
|
6088
|
-
*
|
|
5397
|
+
* We used to have a custom `propsAreEqual` method that would only compare `props.rows`
|
|
5398
|
+
* on the `data` attribute, b/c our `createRows` methods do not create stable row identities;
|
|
5399
|
+
* i.e. if one row changes, they all change.
|
|
5400
|
+
*
|
|
5401
|
+
* However, now RowState.row synthesizes a `row` that only reactively changes when
|
|
5402
|
+
* that row's `data` explicitly changes, so we no longer need a custom `propsAreEqual` here.
|
|
6089
5403
|
*/
|
|
6090
|
-
|
|
5404
|
+
declare const Row: typeof RowImpl;
|
|
5405
|
+
/** A specific kind of row, including the GridDataRow props. */
|
|
5406
|
+
type GridRowKind<R extends Kinded, P extends R["kind"]> = DiscriminateUnion<R, "kind", P> & {
|
|
5407
|
+
id: string;
|
|
5408
|
+
children: GridDataRow<R>[];
|
|
5409
|
+
selectable?: false;
|
|
5410
|
+
};
|
|
6091
5411
|
/**
|
|
6092
|
-
*
|
|
6093
|
-
*
|
|
6094
|
-
* The `S` generic is either:
|
|
5412
|
+
* The data for any row in the table, marked by `kind` so that each column knows how to render it.
|
|
6095
5413
|
*
|
|
6096
|
-
*
|
|
6097
|
-
*
|
|
5414
|
+
* Each `kind` should contain very little presentation logic, i.e. mostly just off-the-wire data from
|
|
5415
|
+
* a GraphQL query.
|
|
6098
5416
|
*
|
|
6099
|
-
*
|
|
6100
|
-
*
|
|
5417
|
+
* The presentation concerns instead mainly live in each GridColumn definition, which will format/render
|
|
5418
|
+
* each kind's data for that specific row+column (i.e. cell) combination.
|
|
6101
5419
|
*/
|
|
6102
|
-
type
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
level: number;
|
|
6109
|
-
expanded: boolean;
|
|
6110
|
-
}) => ReactNode | GridCellContent : (data: undefined, opts: {
|
|
6111
|
-
row: GridRowKind<R, K>;
|
|
6112
|
-
api: GridRowApi<R>;
|
|
6113
|
-
level: number;
|
|
6114
|
-
expanded: boolean;
|
|
6115
|
-
}) => ReactNode | GridCellContent);
|
|
6116
|
-
} & {
|
|
5420
|
+
type GridDataRow<R extends Kinded> = {
|
|
5421
|
+
kind: R["kind"];
|
|
5422
|
+
/** Combined with the `kind` to determine a table wide React key. */
|
|
5423
|
+
id: string;
|
|
5424
|
+
/** A list of parent/grand-parent ids for collapsing parent/child rows. */
|
|
5425
|
+
children?: GridDataRow<R>[];
|
|
6117
5426
|
/**
|
|
6118
|
-
*
|
|
6119
|
-
*
|
|
6120
|
-
* -
|
|
6121
|
-
*
|
|
5427
|
+
* Forces this row to sort to the first/last of its parent's children.
|
|
5428
|
+
*
|
|
5429
|
+
* By default, fixed-sorted rows are always shown/not filtered out; providing the
|
|
5430
|
+
* `filter: true` property allows them to be hidden while filtering. This is the
|
|
5431
|
+
* in-group ordering override, distinct from the runtime sticky "pin to top" feature
|
|
5432
|
+
* (`api.pinRow` / `pinColumn`).
|
|
6122
5433
|
*/
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
|
|
5434
|
+
fixedSort?: "first" | "last" | FixedSort;
|
|
5435
|
+
data: unknown;
|
|
5436
|
+
/** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
|
|
5437
|
+
initCollapsed?: boolean;
|
|
5438
|
+
/** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
|
|
5439
|
+
initSelected?: boolean;
|
|
5440
|
+
/** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
|
|
5441
|
+
initPinned?: boolean;
|
|
5442
|
+
/** Whether row can be selected */
|
|
5443
|
+
selectable?: false;
|
|
5444
|
+
/** Whether this row should infer its selected state based on its children's selected state */
|
|
5445
|
+
inferSelectedState?: false;
|
|
5446
|
+
/** Whether this row is draggable, usually to allow drag & drop reordering of rows */
|
|
5447
|
+
draggable?: boolean;
|
|
5448
|
+
/** Image src for the row, to be used for card view */
|
|
5449
|
+
imgSrc?: string;
|
|
5450
|
+
/**
|
|
5451
|
+
* Full-width content rendered with this row (no separator between them).
|
|
5452
|
+
* Plain content / render fn defaults to `"trailing"`; use `{ position, content }` for `"leading"`.
|
|
6126
5453
|
*/
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
/** The column's default alignment for each cell. */
|
|
6131
|
-
align?: GridCellAlignment;
|
|
6132
|
-
/** Whether the column can be sorted (if client-side sorting). Defaults to true if sorting client-side. */
|
|
6133
|
-
clientSideSort?: boolean;
|
|
6134
|
-
/** This column's sort by value (if server-side sorting). */
|
|
6135
|
-
serverSideSortKey?: string;
|
|
6136
|
-
/** Allows the column to stay in place when the user scrolls horizontally */
|
|
6137
|
-
sticky?: "left" | "right";
|
|
6138
|
-
/** Draws a border on this column's left or right edge for every rendered cell. */
|
|
6139
|
-
border?: GridColumnBorder;
|
|
6140
|
-
/** Prevent column from supporting RowStyle.onClick/rowLink in order to avoid nested interactivity. Defaults to true */
|
|
6141
|
-
wrapAction?: false;
|
|
6142
|
-
/** Used as a signal to defer adding the row's level indentation styling */
|
|
6143
|
-
isAction?: true;
|
|
6144
|
-
/** Injected layout gutter column; excluded from content-column behavior (indent, resize, CSV). */
|
|
6145
|
-
isLayoutGutter?: true;
|
|
6146
|
-
/** Column id that will be used to generate an unique identifier for every row cell */
|
|
6147
|
-
id?: string;
|
|
6148
|
-
/** String identifier of the column. Typically the same text content as in column header. This is used to in things like the Edit Columns Button */
|
|
6149
|
-
name?: string;
|
|
6150
|
-
/** Flag that will allow to know which columns are hide-able */
|
|
6151
|
-
canHide?: boolean;
|
|
6152
|
-
/** Flag that will allow hide-able columns to be hidden on initial load */
|
|
6153
|
-
initHidden?: boolean;
|
|
6154
|
-
/** A list of columns that should only be shown when this column is "expanded" */
|
|
6155
|
-
expandColumns?: GridColumn<R>[] | (() => Promise<GridColumn<R>[]>);
|
|
6156
|
-
/** Determines whether the group should initially be expanded on load of the table */
|
|
6157
|
-
initExpanded?: boolean;
|
|
6158
|
-
/** Determines whether this column should be hidden when expanded (only the 'expandColumns' would show) */
|
|
6159
|
-
hideOnExpand?: boolean;
|
|
6160
|
-
/** Determines whether a column is csv-only or web-only. */
|
|
6161
|
-
showIn?: "csv" | "web";
|
|
6162
|
-
};
|
|
5454
|
+
companion?: GridRowCompanion;
|
|
5455
|
+
} & IfAny<R, AnyObject, DiscriminateUnion<R, "kind", R["kind"]>>;
|
|
5456
|
+
|
|
6163
5457
|
/**
|
|
6164
|
-
*
|
|
5458
|
+
* Allows a caller to ask for the currently shown rows, given the current sorting/filtering.
|
|
6165
5459
|
*
|
|
6166
|
-
*
|
|
6167
|
-
*
|
|
5460
|
+
* We will probably end up generalizing this into a GridTableApi that exposes more
|
|
5461
|
+
* actions i.e. scrolling to a row and selection state.
|
|
6168
5462
|
*/
|
|
6169
|
-
type
|
|
6170
|
-
|
|
6171
|
-
|
|
5463
|
+
type GridRowLookup<R extends Kinded> = {
|
|
5464
|
+
/** Returns both the immediate next/prev rows, as well as `[kind].next/prev` values, ignoring headers. */
|
|
5465
|
+
lookup(row: GridDataRow<R>, additionalFilter?: (row: GridDataRow<R>) => boolean): NextPrev<R> & {
|
|
5466
|
+
[P in R["kind"]]: NextPrev<DiscriminateUnion<R, "kind", P>>;
|
|
5467
|
+
};
|
|
5468
|
+
/** Returns the list of currently filtered/sorted rows, without headers. */
|
|
5469
|
+
currentList(): readonly GridDataRow<R>[];
|
|
5470
|
+
/**
|
|
5471
|
+
* Scroll's to the row with the given kind + id. Requires using `as=virtual`.
|
|
5472
|
+
* Will skip re-scrolling to a row if it's already visible.
|
|
5473
|
+
*/
|
|
5474
|
+
scrollTo(kind: R["kind"], id: string): void;
|
|
6172
5475
|
};
|
|
6173
|
-
|
|
5476
|
+
type NextPrev<R extends Kinded> = {
|
|
5477
|
+
next: GridDataRow<R> | undefined;
|
|
5478
|
+
prev: GridDataRow<R> | undefined;
|
|
5479
|
+
};
|
|
5480
|
+
declare function createRowLookup<R extends Kinded>(api: GridTableApiImpl<R>, virtuosoRef: MutableRefObject<VirtuosoHandle | null>, virtuosoRangeRef: MutableRefObject<ListRange | null>): GridRowLookup<R>;
|
|
5481
|
+
/** Optionally takes into consideration if a row is already in view before attempting to scroll to it. */
|
|
5482
|
+
declare function shouldSkipScrollTo(index: number, virtuosoRangeRef: MutableRefObject<ListRange | null>): boolean;
|
|
5483
|
+
|
|
6174
5484
|
/**
|
|
6175
|
-
*
|
|
6176
|
-
*
|
|
5485
|
+
* Creates an `api` handle to drive a `GridTable`.
|
|
5486
|
+
*
|
|
5487
|
+
* ```
|
|
5488
|
+
* const api = useGridTableApi<Row>();
|
|
5489
|
+
* const count = useComputed(() => api.getSelectedRows().length, [api]);
|
|
5490
|
+
* ...
|
|
5491
|
+
* return <GridTable api={api} />
|
|
5492
|
+
* ```
|
|
5493
|
+
*
|
|
5494
|
+
* This is very similar to a `useRef`, except that the parent function has
|
|
5495
|
+
* immediate access to `api` and can use it for `useComputed`, instead of
|
|
5496
|
+
* having to wait for `ref.current` to be set after the child `GridTable`
|
|
5497
|
+
* has run.
|
|
6177
5498
|
*/
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
5499
|
+
declare function useGridTableApi<R extends Kinded>(): GridTableApi<R>;
|
|
5500
|
+
/** Provides an imperative API for an application page to interact with the table. */
|
|
5501
|
+
type GridTableApi<R extends Kinded> = {
|
|
5502
|
+
/** Scrolls row `index` into view; only supported with `as=virtual` and after a `useEffect`.
|
|
5503
|
+
*
|
|
5504
|
+
* Defaults "smooth" behavior; Use {index, behavior: "auto"} for instant scroll in cases where grid table has many, many records and the scroll effect is undesirable.
|
|
5505
|
+
* */
|
|
5506
|
+
scrollToIndex(index: GridTableScrollOptions): void;
|
|
5507
|
+
/** Returns the currently-visible rows. */
|
|
5508
|
+
getVisibleRows(): GridDataRow<R>[];
|
|
5509
|
+
/** Returns the currently-visible rows of the given `kind`. */
|
|
5510
|
+
getVisibleRows<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
5511
|
+
/** Returns the ids of currently-selected rows. */
|
|
5512
|
+
getSelectedRowIds(): string[];
|
|
5513
|
+
getSelectedRowIds<K extends R["kind"]>(kind: K): string[];
|
|
5514
|
+
/** Returns the currently-selected rows. */
|
|
5515
|
+
getSelectedRows(): GridDataRow<R>[];
|
|
5516
|
+
/** Returns the currently-selected rows of the given `kind`. */
|
|
5517
|
+
getSelectedRows<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
5518
|
+
/** Set selected state of a row by id. */
|
|
5519
|
+
selectRow(id: string, selected?: boolean): void;
|
|
5520
|
+
/** De-selects all selected rows. */
|
|
5521
|
+
clearSelections(): void;
|
|
5522
|
+
/** Whether a row is currently collapsed. */
|
|
5523
|
+
isCollapsedRow(id: string): boolean;
|
|
5524
|
+
/** Toggle collapse state of a row by id. */
|
|
5525
|
+
toggleCollapsedRow(id: string): void;
|
|
5526
|
+
/** Whether a row is currently pinned to the top. */
|
|
5527
|
+
isPinnedRow(id: string): boolean;
|
|
5528
|
+
/** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
|
|
5529
|
+
pinRow(id: string): void;
|
|
5530
|
+
/** Removes a row's runtime pin. */
|
|
5531
|
+
unpinRow(id: string): void;
|
|
5532
|
+
/** Toggles a row's runtime pinned state. */
|
|
5533
|
+
togglePinnedRow(id: string): void;
|
|
5534
|
+
/** Returns the ids of currently pinned rows. */
|
|
5535
|
+
getPinnedRowIds(): string[];
|
|
5536
|
+
/** Sets the internal state of 'activeRowId' */
|
|
5537
|
+
setActiveRowId(id: string | undefined): void;
|
|
5538
|
+
/** Sets the internal state of 'activeCellId' */
|
|
5539
|
+
setActiveCellId(id: string | undefined): void;
|
|
5540
|
+
/** Deletes a row from the table, i.e. so it's not detected as kept. */
|
|
5541
|
+
deleteRows(ids: string[]): void;
|
|
5542
|
+
getVisibleColumnIds(): string[];
|
|
5543
|
+
setVisibleColumns(ids: string[]): void;
|
|
5544
|
+
resetColumnWidths(): void;
|
|
5545
|
+
/**
|
|
5546
|
+
* Triggers the table's current content to be downloaded as a CSV file.
|
|
5547
|
+
*
|
|
5548
|
+
* This currently assumes client-side pagination/sorting, i.e. we have the full dataset in memory.
|
|
5549
|
+
*/
|
|
5550
|
+
downloadToCsv(fileName: string): void;
|
|
5551
|
+
/**
|
|
5552
|
+
* Copies the table's current content to the clipboard.
|
|
5553
|
+
*
|
|
5554
|
+
* This currently assumes client-side pagination/sorting, i.e. we have the full dataset in memory.
|
|
5555
|
+
*/
|
|
5556
|
+
copyToClipboard(): Promise<void>;
|
|
6181
5557
|
};
|
|
6182
|
-
|
|
6183
|
-
type
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
5558
|
+
/** Adds per-row methods to the `api`, i.e. for getting currently-visible children. */
|
|
5559
|
+
type GridRowApi<R extends Kinded> = GridTableApi<R> & {
|
|
5560
|
+
getVisibleChildren(): GridDataRow<R>[];
|
|
5561
|
+
getVisibleChildren<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
5562
|
+
getSelectedChildren(): GridDataRow<R>[];
|
|
5563
|
+
getSelectedChildren<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6188
5564
|
};
|
|
5565
|
+
declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
|
|
5566
|
+
readonly tableState: TableState<R>;
|
|
5567
|
+
virtuosoRef: MutableRefObject<VirtuosoHandle | null>;
|
|
5568
|
+
virtuosoRangeRef: MutableRefObject<ListRange | null>;
|
|
5569
|
+
lookup: GridRowLookup<R>;
|
|
5570
|
+
resetColumnWidthsFn?: () => void;
|
|
5571
|
+
constructor();
|
|
5572
|
+
/** Called once by the GridTable when it takes ownership of this api instance. */
|
|
5573
|
+
init(persistCollapse: string | undefined, virtuosoRef: MutableRefObject<VirtuosoHandle | null>, virtuosoRangeRef: MutableRefObject<ListRange | null>): void;
|
|
5574
|
+
scrollToIndex(indexOrOptions: GridTableScrollOptions): void;
|
|
5575
|
+
getSelectedRowIds(kind?: string): string[];
|
|
5576
|
+
private getSelectedRowIdsImpl;
|
|
5577
|
+
getSelectedRows(kind?: string): any;
|
|
5578
|
+
private getSelectedRowsImpl;
|
|
5579
|
+
getVisibleRows(kind?: string): any;
|
|
5580
|
+
private getVisibleRowsImpl;
|
|
5581
|
+
getVisibleRowIds(kind?: string): any;
|
|
5582
|
+
private getVisibleRowIdsImpl;
|
|
5583
|
+
clearSelections(id?: string): void;
|
|
5584
|
+
setActiveRowId(id: string | undefined): void;
|
|
5585
|
+
setActiveCellId(id: string | undefined): void;
|
|
5586
|
+
selectRow(id: string, selected?: boolean): void;
|
|
5587
|
+
toggleCollapsedRow(id: string): void;
|
|
5588
|
+
isCollapsedRow(id: string): boolean;
|
|
5589
|
+
isPinnedRow(id: string): boolean;
|
|
5590
|
+
pinRow(id: string): void;
|
|
5591
|
+
unpinRow(id: string): void;
|
|
5592
|
+
togglePinnedRow(id: string): void;
|
|
5593
|
+
getPinnedRowIds(): string[];
|
|
5594
|
+
private getPinnedRowIdsImpl;
|
|
5595
|
+
setVisibleColumns(ids: string[]): void;
|
|
5596
|
+
getVisibleColumnIds(): string[];
|
|
5597
|
+
resetColumnWidths(): void;
|
|
5598
|
+
deleteRows(ids: string[]): void;
|
|
5599
|
+
downloadToCsv(fileName: string): void;
|
|
5600
|
+
copyToClipboard(): Promise<void>;
|
|
5601
|
+
generateCsvContent(): string[];
|
|
5602
|
+
}
|
|
6189
5603
|
|
|
6190
5604
|
type GridCellValue = number | string | Date | boolean | Temporal.PlainDate | Temporal.ZonedDateTime | null | undefined;
|
|
6191
5605
|
/**
|
|
@@ -6365,562 +5779,1184 @@ declare const condensedStyle: GridStyle;
|
|
|
6365
5779
|
* */
|
|
6366
5780
|
declare const cardStyle: GridStyle;
|
|
6367
5781
|
|
|
6368
|
-
type
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
5782
|
+
type InputStylePalette = "success" | "warning" | "caution" | "info";
|
|
5783
|
+
interface PresentationFieldProps {
|
|
5784
|
+
numberAlignment?: "left" | "right";
|
|
5785
|
+
/** Sets the label position or visibility. Defaults to "above" */
|
|
5786
|
+
labelStyle?: "inline" | "hidden" | "above" | "left";
|
|
5787
|
+
/** Defines the width property of the input field wrapper when using `labelStyle="left"`. */
|
|
5788
|
+
labelLeftFieldWidth?: number | string;
|
|
5789
|
+
labelSuffix?: LabelSuffixStyle;
|
|
5790
|
+
borderless?: boolean;
|
|
5791
|
+
borderOnHover?: boolean;
|
|
5792
|
+
compact?: boolean;
|
|
5793
|
+
typeScale?: Typography;
|
|
5794
|
+
visuallyDisabled?: false;
|
|
5795
|
+
errorInTooltip?: true;
|
|
5796
|
+
/** Allow the fields to grow to the width of its container. By default, fields will extend up to 550px */
|
|
5797
|
+
fullWidth?: boolean;
|
|
5798
|
+
/** 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 */
|
|
5799
|
+
inputStylePalette?: InputStylePalette;
|
|
5800
|
+
}
|
|
5801
|
+
type PresentationContextProps = {
|
|
5802
|
+
/** `inputStylePalette` omitted because it is too dependent on the individual field use case to be controlled at this level */
|
|
5803
|
+
fieldProps?: Omit<PresentationFieldProps, "inputStylePalette">;
|
|
5804
|
+
gridTableStyle?: GridStyle;
|
|
5805
|
+
wrap?: boolean;
|
|
6374
5806
|
};
|
|
6375
|
-
|
|
6376
|
-
type GridRowCompanion = CompanionContent | CompanionConfig;
|
|
6377
|
-
|
|
6378
|
-
type ResizedWidths = Record<string, number>;
|
|
6379
|
-
|
|
5807
|
+
declare function PresentationProvider(props: PropsWithChildren<PresentationContextProps>): JSX.Element;
|
|
6380
5808
|
/**
|
|
6381
|
-
*
|
|
6382
|
-
*
|
|
6383
|
-
* This is useful for pages that the user has to go in-out/out-of a lot, and
|
|
6384
|
-
* want it to restore, as much as possible, like their previous visit. Granted,
|
|
6385
|
-
* we try to superdrawer most of these experiences to avoid the user having to
|
|
6386
|
-
* jump off-page.
|
|
5809
|
+
* Label settings for required/optional fields.
|
|
6387
5810
|
*
|
|
6388
|
-
*
|
|
6389
|
-
*
|
|
5811
|
+
* We may want to just hard-code this behavior, so that it's very consistent,
|
|
5812
|
+
* but for now making it configurable.
|
|
6390
5813
|
*/
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
5814
|
+
type LabelSuffixStyle = {
|
|
5815
|
+
/** The suffix to use for required fields. */
|
|
5816
|
+
required?: string;
|
|
5817
|
+
/** The suffix to use for explicitly optional (i.e. `required=false`) fields. */
|
|
5818
|
+
optional?: string;
|
|
5819
|
+
};
|
|
5820
|
+
|
|
5821
|
+
/** Base Interfaced */
|
|
5822
|
+
interface BeamFocusableProps {
|
|
5823
|
+
/** Whether the element should receive focus on render. */
|
|
5824
|
+
autoFocus?: boolean;
|
|
5825
|
+
forceFocusStyles?: boolean;
|
|
5826
|
+
}
|
|
5827
|
+
interface BeamButtonProps {
|
|
6398
5828
|
/**
|
|
6399
|
-
*
|
|
5829
|
+
* Whether the interactive element is disabled.
|
|
6400
5830
|
*
|
|
6401
|
-
*
|
|
6402
|
-
* past the first real-data load, and thus should prefer new incoming rows' `initCollapsed` flag.
|
|
5831
|
+
* If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip.
|
|
6403
5832
|
*/
|
|
6404
|
-
|
|
5833
|
+
disabled?: boolean | ReactNode;
|
|
5834
|
+
/** If function, then it is the handler that is called when the press is released over the target. Otherwise if string, it is the URL path for the link */
|
|
5835
|
+
onClick: ((e: PressEvent) => void) | ((e: PressEvent) => Promise<void>) | string;
|
|
5836
|
+
/** Text to be shown via a tooltip when the user hovers over the button */
|
|
5837
|
+
tooltip?: ReactNode;
|
|
5838
|
+
/** Whether to open link in a new tab. This only effects the element if the `onClick` is a `string`/URL. */
|
|
5839
|
+
openInNew?: boolean;
|
|
5840
|
+
}
|
|
5841
|
+
type TextFieldXss = Xss<"textAlign" | "justifyContent" | "fontWeight" | "fontSize" | "lineHeight">;
|
|
5842
|
+
interface BeamTextFieldProps<X> extends BeamFocusableProps, PresentationFieldProps {
|
|
5843
|
+
/** Whether the field is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
5844
|
+
disabled?: boolean | ReactNode;
|
|
5845
|
+
errorMsg?: string;
|
|
5846
|
+
helperText?: string | ReactNode;
|
|
5847
|
+
/** Input label */
|
|
5848
|
+
label: string;
|
|
5849
|
+
/** Marks the field as required or optional, the default is assumed ambiguous/unknown. */
|
|
5850
|
+
required?: boolean;
|
|
5851
|
+
value: string | undefined;
|
|
5852
|
+
/** Value proposed by an AI model; puts the field in AI mode. */
|
|
5853
|
+
proposedValue?: string;
|
|
5854
|
+
/** Handler called when the interactive element state changes. */
|
|
5855
|
+
onChange: (value: string | undefined) => void;
|
|
5856
|
+
/** Called when the component loses focus, mostly for BoundTextField to use. */
|
|
5857
|
+
onBlur?: VoidFunction;
|
|
5858
|
+
onFocus?: VoidFunction;
|
|
5859
|
+
onEnter?: VoidFunction;
|
|
5860
|
+
/** Whether the field is readOnly. If a ReactNode, it's treated as a "readOnly reason" that's shown in a tooltip. */
|
|
5861
|
+
readOnly?: boolean | ReactNode;
|
|
5862
|
+
placeholder?: string;
|
|
5863
|
+
/** Styles overrides */
|
|
5864
|
+
xss?: X;
|
|
5865
|
+
}
|
|
5866
|
+
interface TextFieldInternalProps {
|
|
5867
|
+
/**
|
|
5868
|
+
* Denoting a field as 'compound' will remove existing borders on the returned field, including the 2px of height added by the borders.
|
|
5869
|
+
* It is expected that the caller reintroduces the border to achieve the expected field height and handles the custom border logic of a Compound Field
|
|
5870
|
+
* This is explicitly an internal property that is not exposed to any field's API.
|
|
5871
|
+
*/
|
|
5872
|
+
compound?: boolean;
|
|
5873
|
+
/** Forces focus styles for storybook purposes */
|
|
5874
|
+
forceFocus?: true;
|
|
5875
|
+
/** Forces hover styles for storybook purposes */
|
|
5876
|
+
forceHover?: boolean;
|
|
6405
5877
|
}
|
|
6406
5878
|
|
|
6407
|
-
type
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
|
|
6421
|
-
|
|
6422
|
-
|
|
6423
|
-
declare
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
|
|
6428
|
-
|
|
6429
|
-
|
|
6430
|
-
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
|
|
5879
|
+
type AvatarButtonProps = {
|
|
5880
|
+
menuTriggerProps?: AriaButtonProps;
|
|
5881
|
+
buttonRef?: RefObject<HTMLButtonElement>;
|
|
5882
|
+
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
5883
|
+
__storyState?: {
|
|
5884
|
+
hovered?: boolean;
|
|
5885
|
+
focusVisible?: boolean;
|
|
5886
|
+
pressed?: boolean;
|
|
5887
|
+
};
|
|
5888
|
+
} & AvatarProps & BeamButtonProps & BeamFocusableProps;
|
|
5889
|
+
declare function AvatarButton(props: AvatarButtonProps): JSX.Element;
|
|
5890
|
+
declare const hoverStyles: Pick<Properties, never> & {
|
|
5891
|
+
boxShadow: csstype.Property.BoxShadow | undefined;
|
|
5892
|
+
} & {
|
|
5893
|
+
readonly __kind: "buildtime";
|
|
5894
|
+
};
|
|
5895
|
+
declare const pressedOverlayCss: Pick<Properties, never> & {
|
|
5896
|
+
borderRadius: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5897
|
+
} & {
|
|
5898
|
+
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
5899
|
+
} & {
|
|
5900
|
+
width: csstype.Property.Width<string | 0> | undefined;
|
|
5901
|
+
} & {
|
|
5902
|
+
height: csstype.Property.Height<string | 0> | undefined;
|
|
5903
|
+
} & {
|
|
5904
|
+
position: csstype.Property.Position | undefined;
|
|
5905
|
+
} & {
|
|
5906
|
+
top: csstype.Property.Top<string | 0> | undefined;
|
|
5907
|
+
} & {
|
|
5908
|
+
left: csstype.Property.Left<string | 0> | undefined;
|
|
5909
|
+
} & {
|
|
5910
|
+
opacity: csstype.Property.Opacity | undefined;
|
|
5911
|
+
} & {
|
|
5912
|
+
pointerEvents: csstype.Property.PointerEvents | undefined;
|
|
5913
|
+
} & {
|
|
5914
|
+
readonly __kind: "buildtime";
|
|
5915
|
+
};
|
|
5916
|
+
|
|
5917
|
+
type ButtonProps = {
|
|
5918
|
+
label: ReactNode;
|
|
5919
|
+
variant?: ButtonVariant;
|
|
5920
|
+
size?: ButtonSize;
|
|
5921
|
+
icon?: IconProps["icon"] | null;
|
|
5922
|
+
/** Displays contents after the Button's label. Will be ignored for Buttons rendered as a link with an absolute URL */
|
|
5923
|
+
endAdornment?: ReactNode;
|
|
5924
|
+
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
5925
|
+
menuTriggerProps?: AriaButtonProps;
|
|
5926
|
+
buttonRef?: RefObject<HTMLElement>;
|
|
5927
|
+
/** Allow for setting "submit" | "button" | "reset" on button element */
|
|
5928
|
+
type?: ButtonHTMLAttributes<HTMLButtonElement>["type"];
|
|
5929
|
+
/** Denotes if this button is used to download a resource. Uses the anchor tag with the `download` attribute */
|
|
5930
|
+
download?: boolean;
|
|
5931
|
+
/** Additional text to further customize button during an async request is in progress. */
|
|
5932
|
+
labelInFlight?: string;
|
|
5933
|
+
/** Shows pressed/active styles (useful when a menu is open) */
|
|
5934
|
+
active?: boolean;
|
|
5935
|
+
} & BeamButtonProps & BeamFocusableProps;
|
|
5936
|
+
declare function Button(props: ButtonProps): JSX.Element;
|
|
5937
|
+
type ButtonSize = "sm" | "md" | "lg";
|
|
5938
|
+
type ButtonVariant = "ai" | "primary" | "secondary" | "secondaryBlack" | "tertiary" | "tertiaryDanger" | "caution" | "danger" | "quaternary" | "text" | "textSecondary";
|
|
5939
|
+
|
|
5940
|
+
type IconButtonVariant = "default" | "circle" | "outline";
|
|
5941
|
+
type IconButtonProps = {
|
|
5942
|
+
/** The icon to use within the button. */
|
|
5943
|
+
icon: IconProps["icon"];
|
|
5944
|
+
color?: BeamColor;
|
|
5945
|
+
bgColor?: BeamColor;
|
|
5946
|
+
/** The size of the icon, in increments, defaults to 3 which is 24px. */
|
|
5947
|
+
inc?: number;
|
|
5948
|
+
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
5949
|
+
menuTriggerProps?: AriaButtonProps;
|
|
5950
|
+
buttonRef?: RefObject<HTMLButtonElement>;
|
|
5951
|
+
/** Whether to show a 16x16px version of the IconButton */
|
|
5952
|
+
compact?: boolean;
|
|
5953
|
+
/** Visual variant of the button. Defaults to "default". */
|
|
5954
|
+
variant?: IconButtonVariant;
|
|
5955
|
+
/** Indicates that the button is active/selected */
|
|
5956
|
+
active?: boolean;
|
|
5957
|
+
/** Denotes if this button is used to download a resource. Uses the anchor tag with the `download` attribute */
|
|
5958
|
+
download?: boolean;
|
|
5959
|
+
/** Provides label for screen readers - Will become a required soon */
|
|
5960
|
+
label?: string;
|
|
6441
5961
|
/**
|
|
6442
|
-
*
|
|
5962
|
+
* By default the `label` is also surfaced as a hover tooltip. Set this to keep the `aria-label`
|
|
5963
|
+
* for screen readers without showing the tooltip. An explicit `tooltip` or disabled reason still shows.
|
|
6443
5964
|
*/
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
/**
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
numberOfExpandedChildren(columnId: string): number;
|
|
6467
|
-
loadExpandedColumns(columnId: string): Promise<void>;
|
|
5965
|
+
preventTooltip?: boolean;
|
|
5966
|
+
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
5967
|
+
__storyState?: {
|
|
5968
|
+
hovered?: boolean;
|
|
5969
|
+
focusVisible?: boolean;
|
|
5970
|
+
pressed?: boolean;
|
|
5971
|
+
};
|
|
5972
|
+
} & BeamButtonProps & BeamFocusableProps;
|
|
5973
|
+
declare function IconButton(props: IconButtonProps): JSX.Element;
|
|
5974
|
+
|
|
5975
|
+
type NavLinkVariant = "side" | "global";
|
|
5976
|
+
type NavLinkProps = {
|
|
5977
|
+
/** active indicates the user is on the current page */
|
|
5978
|
+
active?: boolean;
|
|
5979
|
+
disabled?: boolean;
|
|
5980
|
+
label: ReactNode;
|
|
5981
|
+
icon?: IconKey;
|
|
5982
|
+
variant: NavLinkVariant;
|
|
5983
|
+
openInNew?: boolean;
|
|
5984
|
+
/** HTML attributes to apply to the button element when it is being used to trigger a menu. */
|
|
5985
|
+
menuTriggerProps?: AriaButtonProps;
|
|
5986
|
+
buttonRef?: RefObject<HTMLElement>;
|
|
6468
5987
|
/**
|
|
6469
|
-
*
|
|
6470
|
-
*
|
|
5988
|
+
* When true with an `icon`, shows icon only but keeps `label` for accessibility
|
|
5989
|
+
* (visually hidden text). Used by SideNav when the rail is collapsed.
|
|
6471
5990
|
*/
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
|
|
6475
|
-
/**
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
5991
|
+
iconOnly?: boolean;
|
|
5992
|
+
onClick?: BeamButtonProps["onClick"];
|
|
5993
|
+
nested?: boolean;
|
|
5994
|
+
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
5995
|
+
__storyState?: {
|
|
5996
|
+
hovered?: boolean;
|
|
5997
|
+
focusVisible?: boolean;
|
|
5998
|
+
pressed?: boolean;
|
|
5999
|
+
};
|
|
6000
|
+
} & BeamFocusableProps;
|
|
6001
|
+
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
6002
|
+
declare function getNavLinkStyles(variant: NavLinkVariant, nested?: boolean): {
|
|
6003
|
+
baseStyles: {
|
|
6004
|
+
fontWeight: csstype.Property.FontWeight | undefined;
|
|
6005
|
+
fontSize: csstype.Property.FontSize<string | 0> | undefined;
|
|
6006
|
+
lineHeight: csstype.Property.LineHeight<string | 0> | undefined;
|
|
6007
|
+
__kind: "buildtime";
|
|
6008
|
+
accentColor?: csstype.Property.AccentColor | undefined;
|
|
6009
|
+
alignContent?: csstype.Property.AlignContent | undefined;
|
|
6010
|
+
alignItems?: csstype.Property.AlignItems | undefined;
|
|
6011
|
+
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
6012
|
+
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
6013
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
6014
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
6015
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
6016
|
+
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
6017
|
+
animationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
6018
|
+
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
6019
|
+
animationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
6020
|
+
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
6021
|
+
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
6022
|
+
animationName?: csstype.Property.AnimationName | undefined;
|
|
6023
|
+
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
6024
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | 0> | undefined;
|
|
6025
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | 0> | undefined;
|
|
6026
|
+
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
6027
|
+
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
6028
|
+
appearance?: csstype.Property.Appearance | undefined;
|
|
6029
|
+
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
6030
|
+
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
6031
|
+
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
6032
|
+
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
6033
|
+
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
6034
|
+
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
6035
|
+
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
6036
|
+
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
6037
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
6038
|
+
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | 0> | undefined;
|
|
6039
|
+
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | 0> | undefined;
|
|
6040
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
6041
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
6042
|
+
baselineShift?: csstype.Property.BaselineShift<string | 0> | undefined;
|
|
6043
|
+
blockSize?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
6044
|
+
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
6045
|
+
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
6046
|
+
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | 0> | undefined;
|
|
6047
|
+
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
6048
|
+
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
6049
|
+
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | 0> | undefined;
|
|
6050
|
+
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
6051
|
+
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
6052
|
+
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
6053
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
6054
|
+
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | 0> | undefined;
|
|
6055
|
+
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
6056
|
+
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | 0> | undefined;
|
|
6057
|
+
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | 0> | undefined;
|
|
6058
|
+
borderImageOutset?: csstype.Property.BorderImageOutset<string | 0> | undefined;
|
|
6059
|
+
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
6060
|
+
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
6061
|
+
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
6062
|
+
borderImageWidth?: csstype.Property.BorderImageWidth<string | 0> | undefined;
|
|
6063
|
+
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
6064
|
+
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
6065
|
+
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
6066
|
+
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
6067
|
+
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
6068
|
+
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | 0> | undefined;
|
|
6069
|
+
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
6070
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
6071
|
+
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | 0> | undefined;
|
|
6072
|
+
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
6073
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
6074
|
+
borderRightWidth?: csstype.Property.BorderRightWidth<string | 0> | undefined;
|
|
6075
|
+
borderSpacing?: csstype.Property.BorderSpacing<string | 0> | undefined;
|
|
6076
|
+
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | 0> | undefined;
|
|
6077
|
+
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | 0> | undefined;
|
|
6078
|
+
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
6079
|
+
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
6080
|
+
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
6081
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
6082
|
+
borderTopWidth?: csstype.Property.BorderTopWidth<string | 0> | undefined;
|
|
6083
|
+
bottom?: csstype.Property.Bottom<string | 0> | undefined;
|
|
6084
|
+
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
6085
|
+
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
6086
|
+
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
6087
|
+
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
6088
|
+
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
6089
|
+
breakInside?: csstype.Property.BreakInside | undefined;
|
|
6090
|
+
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
6091
|
+
caretColor?: csstype.Property.CaretColor | undefined;
|
|
6092
|
+
caretShape?: csstype.Property.CaretShape | undefined;
|
|
6093
|
+
clear?: csstype.Property.Clear | undefined;
|
|
6094
|
+
clipPath?: csstype.Property.ClipPath | undefined;
|
|
6095
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
6096
|
+
color?: csstype.Property.Color | undefined;
|
|
6097
|
+
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
6098
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
6099
|
+
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
6100
|
+
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
6101
|
+
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
6102
|
+
columnGap?: csstype.Property.ColumnGap<string | 0> | undefined;
|
|
6103
|
+
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
6104
|
+
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
6105
|
+
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
6106
|
+
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
6107
|
+
columnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
6108
|
+
contain?: csstype.Property.Contain | undefined;
|
|
6109
|
+
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | 0> | undefined;
|
|
6110
|
+
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | 0> | undefined;
|
|
6111
|
+
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | 0> | undefined;
|
|
6112
|
+
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | 0> | undefined;
|
|
6113
|
+
containerName?: csstype.Property.ContainerName | undefined;
|
|
6114
|
+
containerType?: csstype.Property.ContainerType | undefined;
|
|
6115
|
+
content?: csstype.Property.Content | undefined;
|
|
6116
|
+
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
6117
|
+
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
6118
|
+
counterReset?: csstype.Property.CounterReset | undefined;
|
|
6119
|
+
counterSet?: csstype.Property.CounterSet | undefined;
|
|
6120
|
+
cursor?: csstype.Property.Cursor | undefined;
|
|
6121
|
+
cx?: csstype.Property.Cx<string | 0> | undefined;
|
|
6122
|
+
cy?: csstype.Property.Cy<string | 0> | undefined;
|
|
6123
|
+
d?: csstype.Property.D | undefined;
|
|
6124
|
+
direction?: csstype.Property.Direction | undefined;
|
|
6125
|
+
display?: csstype.Property.Display | undefined;
|
|
6126
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
6127
|
+
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
6128
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
6129
|
+
fill?: csstype.Property.Fill | undefined;
|
|
6130
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
6131
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
6132
|
+
filter?: csstype.Property.Filter | undefined;
|
|
6133
|
+
flexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
6134
|
+
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
6135
|
+
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
6136
|
+
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
6137
|
+
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
6138
|
+
float?: csstype.Property.Float | undefined;
|
|
6139
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
6140
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
6141
|
+
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
6142
|
+
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
6143
|
+
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
6144
|
+
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
6145
|
+
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
6146
|
+
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
6147
|
+
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
6148
|
+
fontSmooth?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
6149
|
+
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
6150
|
+
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
6151
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
6152
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
6153
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
6154
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
6155
|
+
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
6156
|
+
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
6157
|
+
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
6158
|
+
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
6159
|
+
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
6160
|
+
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
6161
|
+
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
6162
|
+
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
6163
|
+
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
6164
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
6165
|
+
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
6166
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | 0> | undefined;
|
|
6167
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
6168
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | 0> | undefined;
|
|
6169
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
6170
|
+
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
6171
|
+
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
6172
|
+
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
6173
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
6174
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | 0> | undefined;
|
|
6175
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | 0> | undefined;
|
|
6176
|
+
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
6177
|
+
height?: csstype.Property.Height<string | 0> | undefined;
|
|
6178
|
+
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
6179
|
+
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
6180
|
+
hyphens?: csstype.Property.Hyphens | undefined;
|
|
6181
|
+
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
6182
|
+
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
6183
|
+
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
6184
|
+
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
6185
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
6186
|
+
inlineSize?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
6187
|
+
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
6188
|
+
insetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
6189
|
+
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
6190
|
+
insetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
6191
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
6192
|
+
isolation?: csstype.Property.Isolation | undefined;
|
|
6193
|
+
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
6194
|
+
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
6195
|
+
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
6196
|
+
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
6197
|
+
left?: csstype.Property.Left<string | 0> | undefined;
|
|
6198
|
+
letterSpacing?: csstype.Property.LetterSpacing<string | 0> | undefined;
|
|
6199
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
6200
|
+
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
6201
|
+
lineHeightStep?: csstype.Property.LineHeightStep<string | 0> | undefined;
|
|
6202
|
+
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
6203
|
+
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
6204
|
+
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
6205
|
+
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | 0> | undefined;
|
|
6206
|
+
marginBlockStart?: csstype.Property.MarginBlockStart<string | 0> | undefined;
|
|
6207
|
+
marginBottom?: csstype.Property.MarginBottom<string | 0> | undefined;
|
|
6208
|
+
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
6209
|
+
marginInlineStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
6210
|
+
marginLeft?: csstype.Property.MarginLeft<string | 0> | undefined;
|
|
6211
|
+
marginRight?: csstype.Property.MarginRight<string | 0> | undefined;
|
|
6212
|
+
marginTop?: csstype.Property.MarginTop<string | 0> | undefined;
|
|
6213
|
+
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
6214
|
+
marker?: csstype.Property.Marker | undefined;
|
|
6215
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
6216
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
6217
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
6218
|
+
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
6219
|
+
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
6220
|
+
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
6221
|
+
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
6222
|
+
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
6223
|
+
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
6224
|
+
maskClip?: csstype.Property.MaskClip | undefined;
|
|
6225
|
+
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
6226
|
+
maskImage?: csstype.Property.MaskImage | undefined;
|
|
6227
|
+
maskMode?: csstype.Property.MaskMode | undefined;
|
|
6228
|
+
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
6229
|
+
maskPosition?: csstype.Property.MaskPosition<string | 0> | undefined;
|
|
6230
|
+
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
6231
|
+
maskSize?: csstype.Property.MaskSize<string | 0> | undefined;
|
|
6232
|
+
maskType?: csstype.Property.MaskType | undefined;
|
|
6233
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
6234
|
+
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
6235
|
+
mathShift?: csstype.Property.MathShift | undefined;
|
|
6236
|
+
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
6237
|
+
maxBlockSize?: csstype.Property.MaxBlockSize<string | 0> | undefined;
|
|
6238
|
+
maxHeight?: csstype.Property.MaxHeight<string | 0> | undefined;
|
|
6239
|
+
maxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
6240
|
+
maxLines?: csstype.Property.MaxLines | undefined;
|
|
6241
|
+
maxWidth?: csstype.Property.MaxWidth<string | 0> | undefined;
|
|
6242
|
+
minBlockSize?: csstype.Property.MinBlockSize<string | 0> | undefined;
|
|
6243
|
+
minHeight?: csstype.Property.MinHeight<string | 0> | undefined;
|
|
6244
|
+
minInlineSize?: csstype.Property.MinInlineSize<string | 0> | undefined;
|
|
6245
|
+
minWidth?: csstype.Property.MinWidth<string | 0> | undefined;
|
|
6246
|
+
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
6247
|
+
motionDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
6248
|
+
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
6249
|
+
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
6250
|
+
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
6251
|
+
objectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
6252
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
6253
|
+
offsetAnchor?: csstype.Property.OffsetAnchor<string | 0> | undefined;
|
|
6254
|
+
offsetDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
6255
|
+
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
6256
|
+
offsetPosition?: csstype.Property.OffsetPosition<string | 0> | undefined;
|
|
6257
|
+
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
6258
|
+
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
6259
|
+
opacity?: csstype.Property.Opacity | undefined;
|
|
6260
|
+
order?: csstype.Property.Order | undefined;
|
|
6261
|
+
orphans?: csstype.Property.Orphans | undefined;
|
|
6262
|
+
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
6263
|
+
outlineOffset?: csstype.Property.OutlineOffset<string | 0> | undefined;
|
|
6264
|
+
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
6265
|
+
outlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
6266
|
+
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
6267
|
+
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
6268
|
+
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
6269
|
+
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | 0> | undefined;
|
|
6270
|
+
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
6271
|
+
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
6272
|
+
overflowX?: csstype.Property.OverflowX | undefined;
|
|
6273
|
+
overflowY?: csstype.Property.OverflowY | undefined;
|
|
6274
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
6275
|
+
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
6276
|
+
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
6277
|
+
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
6278
|
+
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
6279
|
+
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | 0> | undefined;
|
|
6280
|
+
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | 0> | undefined;
|
|
6281
|
+
paddingBottom?: csstype.Property.PaddingBottom<string | 0> | undefined;
|
|
6282
|
+
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
6283
|
+
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
6284
|
+
paddingLeft?: csstype.Property.PaddingLeft<string | 0> | undefined;
|
|
6285
|
+
paddingRight?: csstype.Property.PaddingRight<string | 0> | undefined;
|
|
6286
|
+
paddingTop?: csstype.Property.PaddingTop<string | 0> | undefined;
|
|
6287
|
+
page?: csstype.Property.Page | undefined;
|
|
6288
|
+
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
6289
|
+
perspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
6290
|
+
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
6291
|
+
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
6292
|
+
position?: csstype.Property.Position | undefined;
|
|
6293
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
6294
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
6295
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
6296
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
6297
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
6298
|
+
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
6299
|
+
quotes?: csstype.Property.Quotes | undefined;
|
|
6300
|
+
r?: csstype.Property.R<string | 0> | undefined;
|
|
6301
|
+
resize?: csstype.Property.Resize | undefined;
|
|
6302
|
+
right?: csstype.Property.Right<string | 0> | undefined;
|
|
6303
|
+
rotate?: csstype.Property.Rotate | undefined;
|
|
6304
|
+
rowGap?: csstype.Property.RowGap<string | 0> | undefined;
|
|
6305
|
+
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
6306
|
+
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
6307
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
6308
|
+
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
6309
|
+
rx?: csstype.Property.Rx<string | 0> | undefined;
|
|
6310
|
+
ry?: csstype.Property.Ry<string | 0> | undefined;
|
|
6311
|
+
scale?: csstype.Property.Scale | undefined;
|
|
6312
|
+
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
6313
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
6314
|
+
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | 0> | undefined;
|
|
6315
|
+
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | 0> | undefined;
|
|
6316
|
+
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
6317
|
+
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | 0> | undefined;
|
|
6318
|
+
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | 0> | undefined;
|
|
6319
|
+
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
6320
|
+
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
6321
|
+
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
6322
|
+
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | 0> | undefined;
|
|
6323
|
+
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | 0> | undefined;
|
|
6324
|
+
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | 0> | undefined;
|
|
6325
|
+
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | 0> | undefined;
|
|
6326
|
+
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | 0> | undefined;
|
|
6327
|
+
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | 0> | undefined;
|
|
6328
|
+
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | 0> | undefined;
|
|
6329
|
+
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | 0> | undefined;
|
|
6330
|
+
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
6331
|
+
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
6332
|
+
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
6333
|
+
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
6334
|
+
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
6335
|
+
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
6336
|
+
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
6337
|
+
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
6338
|
+
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
6339
|
+
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
6340
|
+
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
6341
|
+
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
6342
|
+
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
6343
|
+
shapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
6344
|
+
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
6345
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
6346
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
6347
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
6348
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
6349
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
6350
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
6351
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | 0> | undefined;
|
|
6352
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | 0> | undefined;
|
|
6353
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
6354
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
6355
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
6356
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
6357
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | 0> | undefined;
|
|
6358
|
+
tabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
6359
|
+
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
6360
|
+
textAlign?: csstype.Property.TextAlign | undefined;
|
|
6361
|
+
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
6362
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
6363
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
6364
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
6365
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
6366
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
6367
|
+
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
6368
|
+
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
6369
|
+
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
6370
|
+
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
6371
|
+
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
6372
|
+
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
6373
|
+
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | 0> | undefined;
|
|
6374
|
+
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
6375
|
+
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
6376
|
+
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
6377
|
+
textIndent?: csstype.Property.TextIndent<string | 0> | undefined;
|
|
6378
|
+
textJustify?: csstype.Property.TextJustify | undefined;
|
|
6379
|
+
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
6380
|
+
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
6381
|
+
textRendering?: csstype.Property.TextRendering | undefined;
|
|
6382
|
+
textShadow?: csstype.Property.TextShadow | undefined;
|
|
6383
|
+
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
6384
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
6385
|
+
textTransform?: csstype.Property.TextTransform | undefined;
|
|
6386
|
+
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | 0> | undefined;
|
|
6387
|
+
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
6388
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
6389
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
6390
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
6391
|
+
top?: csstype.Property.Top<string | 0> | undefined;
|
|
6392
|
+
touchAction?: csstype.Property.TouchAction | undefined;
|
|
6393
|
+
transform?: csstype.Property.Transform | undefined;
|
|
6394
|
+
transformBox?: csstype.Property.TransformBox | undefined;
|
|
6395
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
6396
|
+
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
6397
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
6398
|
+
transitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
6399
|
+
transitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
6400
|
+
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
6401
|
+
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
6402
|
+
translate?: csstype.Property.Translate<string | 0> | undefined;
|
|
6403
|
+
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
6404
|
+
userSelect?: csstype.Property.UserSelect | undefined;
|
|
6405
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
6406
|
+
verticalAlign?: csstype.Property.VerticalAlign<string | 0> | undefined;
|
|
6407
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
6408
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | 0> | undefined;
|
|
6409
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
6410
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
6411
|
+
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
6412
|
+
visibility?: csstype.Property.Visibility | undefined;
|
|
6413
|
+
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
6414
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
6415
|
+
widows?: csstype.Property.Widows | undefined;
|
|
6416
|
+
width?: csstype.Property.Width<string | 0> | undefined;
|
|
6417
|
+
willChange?: csstype.Property.WillChange | undefined;
|
|
6418
|
+
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
6419
|
+
wordSpacing?: csstype.Property.WordSpacing<string | 0> | undefined;
|
|
6420
|
+
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
6421
|
+
writingMode?: csstype.Property.WritingMode | undefined;
|
|
6422
|
+
x?: csstype.Property.X<string | 0> | undefined;
|
|
6423
|
+
y?: csstype.Property.Y<string | 0> | undefined;
|
|
6424
|
+
zIndex?: csstype.Property.ZIndex | undefined;
|
|
6425
|
+
zoom?: csstype.Property.Zoom | undefined;
|
|
6426
|
+
all?: csstype.Property.All | undefined;
|
|
6427
|
+
animation?: csstype.Property.Animation<string> | undefined;
|
|
6428
|
+
animationRange?: csstype.Property.AnimationRange<string | 0> | undefined;
|
|
6429
|
+
background?: csstype.Property.Background<string | 0> | undefined;
|
|
6430
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | 0> | undefined;
|
|
6431
|
+
border?: csstype.Property.Border<string | 0> | undefined;
|
|
6432
|
+
borderBlock?: csstype.Property.BorderBlock<string | 0> | undefined;
|
|
6433
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
6434
|
+
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | 0> | undefined;
|
|
6435
|
+
borderBlockStart?: csstype.Property.BorderBlockStart<string | 0> | undefined;
|
|
6436
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
6437
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | 0> | undefined;
|
|
6438
|
+
borderBottom?: csstype.Property.BorderBottom<string | 0> | undefined;
|
|
6439
|
+
borderColor?: csstype.Property.BorderColor | undefined;
|
|
6440
|
+
borderImage?: csstype.Property.BorderImage | undefined;
|
|
6441
|
+
borderInline?: csstype.Property.BorderInline<string | 0> | undefined;
|
|
6442
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
6443
|
+
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | 0> | undefined;
|
|
6444
|
+
borderInlineStart?: csstype.Property.BorderInlineStart<string | 0> | undefined;
|
|
6445
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
6446
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | 0> | undefined;
|
|
6447
|
+
borderLeft?: csstype.Property.BorderLeft<string | 0> | undefined;
|
|
6448
|
+
borderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
6449
|
+
borderRight?: csstype.Property.BorderRight<string | 0> | undefined;
|
|
6450
|
+
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
6451
|
+
borderTop?: csstype.Property.BorderTop<string | 0> | undefined;
|
|
6452
|
+
borderWidth?: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
6453
|
+
caret?: csstype.Property.Caret | undefined;
|
|
6454
|
+
columnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
6455
|
+
columns?: csstype.Property.Columns<string | 0> | undefined;
|
|
6456
|
+
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | 0> | undefined;
|
|
6457
|
+
container?: csstype.Property.Container | undefined;
|
|
6458
|
+
flex?: csstype.Property.Flex<string | 0> | undefined;
|
|
6459
|
+
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
6460
|
+
font?: csstype.Property.Font | undefined;
|
|
6461
|
+
gap?: csstype.Property.Gap<string | 0> | undefined;
|
|
6462
|
+
grid?: csstype.Property.Grid | undefined;
|
|
6463
|
+
gridArea?: csstype.Property.GridArea | undefined;
|
|
6464
|
+
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
6465
|
+
gridRow?: csstype.Property.GridRow | undefined;
|
|
6466
|
+
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
6467
|
+
inset?: csstype.Property.Inset<string | 0> | undefined;
|
|
6468
|
+
insetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
6469
|
+
insetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
6470
|
+
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
6471
|
+
listStyle?: csstype.Property.ListStyle | undefined;
|
|
6472
|
+
margin?: csstype.Property.Margin<string | 0> | undefined;
|
|
6473
|
+
marginBlock?: csstype.Property.MarginBlock<string | 0> | undefined;
|
|
6474
|
+
marginInline?: csstype.Property.MarginInline<string | 0> | undefined;
|
|
6475
|
+
mask?: csstype.Property.Mask<string | 0> | undefined;
|
|
6476
|
+
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
6477
|
+
motion?: csstype.Property.Offset<string | 0> | undefined;
|
|
6478
|
+
offset?: csstype.Property.Offset<string | 0> | undefined;
|
|
6479
|
+
outline?: csstype.Property.Outline<string | 0> | undefined;
|
|
6480
|
+
overflow?: csstype.Property.Overflow | undefined;
|
|
6481
|
+
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
6482
|
+
padding?: csstype.Property.Padding<string | 0> | undefined;
|
|
6483
|
+
paddingBlock?: csstype.Property.PaddingBlock<string | 0> | undefined;
|
|
6484
|
+
paddingInline?: csstype.Property.PaddingInline<string | 0> | undefined;
|
|
6485
|
+
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
6486
|
+
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
6487
|
+
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
6488
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
6489
|
+
scrollMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
6490
|
+
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | 0> | undefined;
|
|
6491
|
+
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | 0> | undefined;
|
|
6492
|
+
scrollPadding?: csstype.Property.ScrollPadding<string | 0> | undefined;
|
|
6493
|
+
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | 0> | undefined;
|
|
6494
|
+
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | 0> | undefined;
|
|
6495
|
+
scrollSnapMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
6496
|
+
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
6497
|
+
textDecoration?: csstype.Property.TextDecoration<string | 0> | undefined;
|
|
6498
|
+
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
6499
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
6500
|
+
transition?: csstype.Property.Transition<string> | undefined;
|
|
6501
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
6502
|
+
MozAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
6503
|
+
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
6504
|
+
MozAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
6505
|
+
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
6506
|
+
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
6507
|
+
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
6508
|
+
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
6509
|
+
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
6510
|
+
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
6511
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
6512
|
+
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
6513
|
+
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
6514
|
+
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
6515
|
+
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
6516
|
+
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
6517
|
+
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
6518
|
+
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
6519
|
+
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
6520
|
+
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
6521
|
+
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
6522
|
+
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
6523
|
+
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
6524
|
+
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
6525
|
+
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
6526
|
+
MozColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
6527
|
+
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
6528
|
+
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
6529
|
+
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
6530
|
+
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
6531
|
+
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
6532
|
+
MozMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
6533
|
+
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
6534
|
+
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
6535
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | 0> | undefined;
|
|
6536
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | 0> | undefined;
|
|
6537
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | 0> | undefined;
|
|
6538
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | 0> | undefined;
|
|
6539
|
+
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
6540
|
+
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
6541
|
+
MozPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
6542
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
6543
|
+
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
6544
|
+
MozTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
6545
|
+
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
6546
|
+
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
6547
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
6548
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
6549
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
6550
|
+
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
6551
|
+
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
6552
|
+
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
6553
|
+
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
6554
|
+
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
6555
|
+
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
6556
|
+
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
6557
|
+
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
6558
|
+
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
6559
|
+
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
6560
|
+
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
6561
|
+
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
6562
|
+
msFilter?: csstype.Property.MsFilter | undefined;
|
|
6563
|
+
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
6564
|
+
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
6565
|
+
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
6566
|
+
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
6567
|
+
msGridColumns?: csstype.Property.MsGridColumns<string | 0> | undefined;
|
|
6568
|
+
msGridRows?: csstype.Property.MsGridRows<string | 0> | undefined;
|
|
6569
|
+
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
6570
|
+
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
6571
|
+
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
6572
|
+
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | 0> | undefined;
|
|
6573
|
+
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
6574
|
+
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
6575
|
+
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
6576
|
+
msOrder?: csstype.Property.Order | undefined;
|
|
6577
|
+
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
6578
|
+
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
6579
|
+
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
6580
|
+
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
6581
|
+
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | 0> | undefined;
|
|
6582
|
+
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | 0> | undefined;
|
|
6583
|
+
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | 0> | undefined;
|
|
6584
|
+
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | 0> | undefined;
|
|
6585
|
+
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
6586
|
+
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
6587
|
+
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
6588
|
+
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
6589
|
+
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
6590
|
+
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
6591
|
+
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
6592
|
+
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
6593
|
+
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
6594
|
+
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
6595
|
+
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
6596
|
+
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
6597
|
+
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
6598
|
+
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
6599
|
+
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
6600
|
+
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
6601
|
+
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
6602
|
+
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
6603
|
+
msTransform?: csstype.Property.Transform | undefined;
|
|
6604
|
+
msTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
6605
|
+
msTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
6606
|
+
msTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
6607
|
+
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
6608
|
+
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
6609
|
+
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
6610
|
+
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
6611
|
+
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
6612
|
+
msWrapMargin?: csstype.Property.MsWrapMargin<string | 0> | undefined;
|
|
6613
|
+
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
6614
|
+
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
6615
|
+
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
6616
|
+
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
6617
|
+
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
6618
|
+
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
6619
|
+
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
6620
|
+
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
6621
|
+
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
6622
|
+
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
6623
|
+
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
6624
|
+
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
6625
|
+
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
6626
|
+
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
6627
|
+
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
6628
|
+
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
6629
|
+
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
6630
|
+
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
6631
|
+
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
6632
|
+
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
6633
|
+
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
6634
|
+
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | 0> | undefined;
|
|
6635
|
+
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
6636
|
+
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
6637
|
+
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
6638
|
+
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
6639
|
+
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
6640
|
+
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
6641
|
+
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | 0> | undefined;
|
|
6642
|
+
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
6643
|
+
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
6644
|
+
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
6645
|
+
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
6646
|
+
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
6647
|
+
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
6648
|
+
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
6649
|
+
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
6650
|
+
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
6651
|
+
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
6652
|
+
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
6653
|
+
WebkitFlexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
6654
|
+
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
6655
|
+
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
6656
|
+
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
6657
|
+
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
6658
|
+
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
6659
|
+
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
6660
|
+
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
6661
|
+
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
6662
|
+
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
6663
|
+
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
6664
|
+
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
6665
|
+
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
6666
|
+
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
6667
|
+
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
6668
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
6669
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
6670
|
+
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
6671
|
+
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
6672
|
+
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
6673
|
+
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
6674
|
+
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
6675
|
+
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
6676
|
+
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
6677
|
+
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
6678
|
+
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
6679
|
+
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
6680
|
+
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
6681
|
+
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
6682
|
+
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | 0> | undefined;
|
|
6683
|
+
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | 0> | undefined;
|
|
6684
|
+
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | 0> | undefined;
|
|
6685
|
+
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
6686
|
+
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
6687
|
+
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
6688
|
+
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | 0> | undefined;
|
|
6689
|
+
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
6690
|
+
WebkitOrder?: csstype.Property.Order | undefined;
|
|
6691
|
+
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
6692
|
+
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
6693
|
+
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
6694
|
+
WebkitPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
6695
|
+
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
6696
|
+
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
6697
|
+
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
6698
|
+
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
6699
|
+
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
6700
|
+
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
6701
|
+
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
6702
|
+
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
6703
|
+
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
6704
|
+
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
6705
|
+
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
6706
|
+
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
6707
|
+
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
6708
|
+
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
6709
|
+
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
6710
|
+
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
6711
|
+
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
6712
|
+
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
6713
|
+
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | 0> | undefined;
|
|
6714
|
+
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
6715
|
+
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
6716
|
+
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
6717
|
+
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
6718
|
+
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
6719
|
+
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
6720
|
+
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
6721
|
+
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
6722
|
+
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
6723
|
+
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
6724
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
6725
|
+
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
6726
|
+
MozAnimation?: csstype.Property.Animation<string> | undefined;
|
|
6727
|
+
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
6728
|
+
MozColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
6729
|
+
MozColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
6730
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | 0> | undefined;
|
|
6731
|
+
MozTransition?: csstype.Property.Transition<string> | undefined;
|
|
6732
|
+
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
6733
|
+
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
6734
|
+
msFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
6735
|
+
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
6736
|
+
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
6737
|
+
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
6738
|
+
msTransition?: csstype.Property.Transition<string> | undefined;
|
|
6739
|
+
WebkitAnimation?: csstype.Property.Animation<string> | undefined;
|
|
6740
|
+
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | 0> | undefined;
|
|
6741
|
+
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
6742
|
+
WebkitBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
6743
|
+
WebkitColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
6744
|
+
WebkitColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
6745
|
+
WebkitFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
6746
|
+
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
6747
|
+
WebkitMask?: csstype.Property.WebkitMask<string | 0> | undefined;
|
|
6748
|
+
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
6749
|
+
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
6750
|
+
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | 0> | undefined;
|
|
6751
|
+
WebkitTransition?: csstype.Property.Transition<string> | undefined;
|
|
6752
|
+
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
6753
|
+
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
6754
|
+
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
6755
|
+
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
6756
|
+
boxLines?: csstype.Property.BoxLines | undefined;
|
|
6757
|
+
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
6758
|
+
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
6759
|
+
boxPack?: csstype.Property.BoxPack | undefined;
|
|
6760
|
+
clip?: csstype.Property.Clip | undefined;
|
|
6761
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
6762
|
+
gridColumnGap?: csstype.Property.GridColumnGap<string | 0> | undefined;
|
|
6763
|
+
gridGap?: csstype.Property.GridGap<string | 0> | undefined;
|
|
6764
|
+
gridRowGap?: csstype.Property.GridRowGap<string | 0> | undefined;
|
|
6765
|
+
imeMode?: csstype.Property.ImeMode | undefined;
|
|
6766
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
6767
|
+
offsetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
6768
|
+
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
6769
|
+
offsetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
6770
|
+
offsetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
6771
|
+
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
6772
|
+
offsetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
6773
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
6774
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
6775
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
6776
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
6777
|
+
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | 0> | undefined;
|
|
6778
|
+
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | 0> | undefined;
|
|
6779
|
+
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
6780
|
+
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
6781
|
+
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
6782
|
+
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
6783
|
+
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
6784
|
+
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
6785
|
+
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
6786
|
+
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
6787
|
+
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
6788
|
+
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
6789
|
+
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
6790
|
+
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
6791
|
+
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
6792
|
+
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
6793
|
+
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
6794
|
+
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
6795
|
+
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
6796
|
+
MozBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
6797
|
+
MozBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
6798
|
+
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
6799
|
+
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
6800
|
+
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
6801
|
+
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
6802
|
+
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
6803
|
+
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
6804
|
+
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
6805
|
+
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
6806
|
+
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
6807
|
+
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
6808
|
+
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
6809
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
6810
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
6811
|
+
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
6812
|
+
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
6813
|
+
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
6814
|
+
MozOutline?: csstype.Property.Outline<string | 0> | undefined;
|
|
6815
|
+
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
6816
|
+
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
6817
|
+
MozOutlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
6818
|
+
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
6819
|
+
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
6820
|
+
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
6821
|
+
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
6822
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
6823
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
6824
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
6825
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
6826
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
6827
|
+
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
6828
|
+
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
6829
|
+
OAnimation?: csstype.Property.Animation<string> | undefined;
|
|
6830
|
+
OAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
6831
|
+
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
6832
|
+
OAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
6833
|
+
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
6834
|
+
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
6835
|
+
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
6836
|
+
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
6837
|
+
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
6838
|
+
OBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
6839
|
+
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
6840
|
+
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
6841
|
+
OObjectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
6842
|
+
OTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
6843
|
+
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
6844
|
+
OTransform?: csstype.Property.Transform | undefined;
|
|
6845
|
+
OTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
6846
|
+
OTransition?: csstype.Property.Transition<string> | undefined;
|
|
6847
|
+
OTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
6848
|
+
OTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
6849
|
+
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
6850
|
+
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
6851
|
+
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
6852
|
+
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
6853
|
+
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
6854
|
+
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
6855
|
+
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
6856
|
+
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
6857
|
+
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
6858
|
+
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
6859
|
+
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
6860
|
+
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
6861
|
+
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
6862
|
+
};
|
|
6863
|
+
hoverStyles: Properties;
|
|
6864
|
+
disabledStyles: Properties;
|
|
6865
|
+
focusRingStyles: Properties;
|
|
6866
|
+
activeStyles: Properties;
|
|
6867
|
+
pressedStyles: Properties;
|
|
6504
6868
|
};
|
|
6505
|
-
type SortOn = "client" | "server" | undefined;
|
|
6506
|
-
|
|
6507
|
-
/**
|
|
6508
|
-
* Manages our tree of observable RowStates that manage each GridDataRow's behavior.
|
|
6509
|
-
*/
|
|
6510
|
-
declare class RowStates<R extends Kinded> {
|
|
6511
|
-
private map;
|
|
6512
|
-
readonly table: TableState<R>;
|
|
6513
|
-
readonly storage: RowStorage<R>;
|
|
6514
|
-
private readonly header;
|
|
6515
|
-
private keptGroupRow;
|
|
6516
|
-
/** The first level of rows, i.e. not the header (or kept group), but the totals + top-level children. */
|
|
6517
|
-
private topRows;
|
|
6518
|
-
constructor(table: TableState<R>);
|
|
6519
|
-
/** Returns a flat list of all of our RowStates. */
|
|
6520
|
-
get allStates(): RowState<R>[];
|
|
6521
|
-
/** Returns the `RowState` for the given `id`. We should probably require `kind`. */
|
|
6522
|
-
get(id: string): RowState<R>;
|
|
6523
|
-
/**
|
|
6524
|
-
* Merge a new set of `rows` prop into our state.
|
|
6525
|
-
*
|
|
6526
|
-
* Any missing rows are marked as `wasRemoved` so we can consider them "kept" if they're also selected.
|
|
6527
|
-
*/
|
|
6528
|
-
setRows(rows: GridDataRow<R>[]): void;
|
|
6529
|
-
/** Fully delete `ids`, so they don't show up in kept rows anymore. */
|
|
6530
|
-
delete(ids: string[]): void;
|
|
6531
|
-
/** Implements special collapse behavior, which is just the header's collapse/uncollapse. */
|
|
6532
|
-
toggleCollapsed(id: string): void;
|
|
6533
|
-
get visibleRows(): RowState<R>[];
|
|
6534
|
-
/** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
|
|
6535
|
-
get keptRows(): RowState<R>[];
|
|
6536
|
-
get collapsedRows(): RowState<R>[];
|
|
6537
|
-
/**
|
|
6538
|
-
* Returns rows pinned to the top at runtime.
|
|
6539
|
-
*
|
|
6540
|
-
* Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
|
|
6541
|
-
* current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
|
|
6542
|
-
*/
|
|
6543
|
-
get pinnedRows(): RowState<R>[];
|
|
6544
|
-
private createHeaderRow;
|
|
6545
|
-
/** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
|
|
6546
|
-
private createKeptGroupRow;
|
|
6547
|
-
maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
|
|
6548
|
-
}
|
|
6549
|
-
|
|
6550
|
-
declare enum DraggedOver {
|
|
6551
|
-
None = 0,
|
|
6552
|
-
Above = 1,// In this case this means higher on the screen which means a lower y value and a lower row index
|
|
6553
|
-
Below = 2
|
|
6554
|
-
}
|
|
6555
|
-
/**
|
|
6556
|
-
* A reactive/observable state of each GridDataRow's current behavior.
|
|
6557
|
-
*
|
|
6558
|
-
* We set up the RowStates in a tree, just like GridDataRow, to make business logic
|
|
6559
|
-
* that uses parent/children easier to write, i.e. selected-ness and collapsed-ness.
|
|
6560
|
-
*/
|
|
6561
|
-
declare class RowState<R extends Kinded> {
|
|
6562
|
-
private states;
|
|
6563
|
-
parent: RowState<R> | undefined;
|
|
6564
|
-
/** Our row, not actually observed, b/c each `createRows` calc creates unstable rows. */
|
|
6565
|
-
private _row;
|
|
6566
|
-
/** Our data, only ref observed, so we don't crawl into GraphQL fragments. */
|
|
6567
|
-
private _data;
|
|
6568
|
-
/** Our children row states, as of the latest `props.rows`, without any filtering applied. */
|
|
6569
|
-
children: RowState<R>[] | undefined;
|
|
6570
|
-
/** Whether we are *directly* selected. */
|
|
6571
|
-
selected: boolean;
|
|
6572
|
-
/** Whether we are collapsed. */
|
|
6573
|
-
collapsed: boolean;
|
|
6574
|
-
/**
|
|
6575
|
-
* Whether this row is pinned to the top at runtime — distinct from the declarative `row.fixedSort`,
|
|
6576
|
-
* which only reorders within a group. Boolean for now; maybe someday we implement bottom pinning,
|
|
6577
|
-
* at which point this would become `"top" | "bottom"`.
|
|
6578
|
-
*/
|
|
6579
|
-
pinned: boolean;
|
|
6580
|
-
/** Whether we are dragged over. */
|
|
6581
|
-
isDraggedOver: DraggedOver;
|
|
6582
|
-
/**
|
|
6583
|
-
* Whether our `row` had been in `props.rows`, but then removed _while being
|
|
6584
|
-
* selected_, i.e. potentially by server-side filters.
|
|
6585
|
-
*
|
|
6586
|
-
* We have had a large foot-gun where users "select a row", change the filters,
|
|
6587
|
-
* the row disappears (filtered out), and the user clicks "Go!", but the table
|
|
6588
|
-
* thinks their previously-selected row is gone (b/c it's not in view), and
|
|
6589
|
-
* then the row is inappropriately deleted/unassociated/etc. (b/c in the user's
|
|
6590
|
-
* head, it is "still selected").
|
|
6591
|
-
*
|
|
6592
|
-
* To avoid this, we by default keep selected rows, as "kept rows", to make
|
|
6593
|
-
* extra sure the user wants them to go away.
|
|
6594
|
-
*
|
|
6595
|
-
* Soft-deleted rows are rows that were removed from `props.rows` (i.e. we
|
|
6596
|
-
* suspect are just hidden by a changed server-side-filter), and hard-deleted
|
|
6597
|
-
* rows are rows the page called `api.deleteRow` and confirmed it should be
|
|
6598
|
-
* actively removed.
|
|
6599
|
-
*/
|
|
6600
|
-
removed: false | "soft" | "hard";
|
|
6601
|
-
private isCalculatingDirectMatch;
|
|
6602
|
-
constructor(states: RowStates<R>, parent: RowState<R> | undefined, row: GridDataRow<R>);
|
|
6603
|
-
/** Returns a stable-ish row identity that will only change if our `data` changes. */
|
|
6604
|
-
get row(): GridDataRow<R>;
|
|
6605
|
-
/** Accepts a new unstable row, i.e. each `createRows` creates a new row literal. */
|
|
6606
|
-
set row(row: GridDataRow<R>);
|
|
6607
|
-
/**
|
|
6608
|
-
* Whether we match a client-side filter; true if no filter is in place.
|
|
6609
|
-
*
|
|
6610
|
-
* We should try and keep this based solely on "does/does not match the filter",
|
|
6611
|
-
* and do any overrides for things like pinning/kept rows/etc. elsewhere.
|
|
6612
|
-
*/
|
|
6613
|
-
get isMatched(): boolean;
|
|
6614
|
-
/**
|
|
6615
|
-
* Whether we are effectively selected, for `GridTableApi.getSelectedRows`.
|
|
6616
|
-
*
|
|
6617
|
-
* Note that we don't use "I'm selected || my parent is selected" logic here, because whether a child is selected
|
|
6618
|
-
* is actually based on whether it was _visible at the time the parent was selected_. So, we can't just assume
|
|
6619
|
-
* "a parent being selected means the child is also selected", and instead parents have to push selected-ness down
|
|
6620
|
-
* to their visible children explicitly.
|
|
6621
|
-
*/
|
|
6622
|
-
get isSelected(): boolean;
|
|
6623
|
-
/** The UI state for checked/unchecked + "partially checked" for parents. */
|
|
6624
|
-
get selectedState(): SelectedState;
|
|
6625
|
-
/**
|
|
6626
|
-
* A special SelectedState that "sees through"/ignores inferSelectedState, so the header works.
|
|
6627
|
-
*
|
|
6628
|
-
* I.e. a row might have `inferSelectedState: false`, so is showing unchecked, but the header
|
|
6629
|
-
* wants to show partial-ness whenever any given child is selected.
|
|
6630
|
-
*/
|
|
6631
|
-
get selectedStateForHeader(): SelectedState;
|
|
6632
|
-
/**
|
|
6633
|
-
* Called to explicitly select/unselect this row.
|
|
6634
|
-
*
|
|
6635
|
-
* This could be either because the user clicked directly on us, or because we're a visible
|
|
6636
|
-
* child of a selected parent row.
|
|
6637
|
-
*/
|
|
6638
|
-
select(selected: boolean): void;
|
|
6639
|
-
/** Marks the row as removed from `props.rows`, to potentially become kept. */
|
|
6640
|
-
markRemoved(): void;
|
|
6641
|
-
toggleCollapsed(): void;
|
|
6642
|
-
/** Pin/unpin this row at runtime. */
|
|
6643
|
-
setPinned(pinned: boolean): void;
|
|
6644
|
-
/** Toggle this row's runtime pin. */
|
|
6645
|
-
togglePinned(): void;
|
|
6646
|
-
/** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
|
|
6647
|
-
get isKept(): boolean;
|
|
6648
|
-
get isLastKeptRow(): boolean;
|
|
6649
|
-
get key(): string;
|
|
6650
|
-
get kind(): string;
|
|
6651
|
-
get isActive(): boolean;
|
|
6652
|
-
get level(): number;
|
|
6653
|
-
private get inferSelectedState();
|
|
6654
|
-
/** Returns this row and, if we're not collapsed, our children. */
|
|
6655
|
-
get selfAndMaybeChildren(): RowState<R>[];
|
|
6656
|
-
private get visibleChildren();
|
|
6657
|
-
private get visibleDirectlyMatchedChildren();
|
|
6658
|
-
/** The `visibleChildren`, but with the current sort config applied. */
|
|
6659
|
-
private get visibleSortedChildren();
|
|
6660
|
-
private get hasSelectableChildren();
|
|
6661
|
-
/**
|
|
6662
|
-
* Returns whether this row should act like a parent.
|
|
6663
|
-
*
|
|
6664
|
-
* This means "has children" and "does not have inferSelectedState: false"
|
|
6665
|
-
* set. I.e. `inferSelectedState: false` allows a parent with children to
|
|
6666
|
-
* still act as its own selectable identity.
|
|
6667
|
-
*
|
|
6668
|
-
* We also check `children.length > 0`, because sometimes pages will calc a
|
|
6669
|
-
* row's children as `children = someList.map(...)`, and if the list is empty,
|
|
6670
|
-
* they want the row to be selectable.
|
|
6671
|
-
*/
|
|
6672
|
-
private get isParent();
|
|
6673
|
-
/**
|
|
6674
|
-
* Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
|
|
6675
|
-
*
|
|
6676
|
-
* Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
|
|
6677
|
-
* (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
|
|
6678
|
-
*/
|
|
6679
|
-
private get isAlwaysVisible();
|
|
6680
|
-
get api(): GridRowApi<R>;
|
|
6681
|
-
get isReservedKind(): boolean;
|
|
6682
|
-
/** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
|
|
6683
|
-
private get hasDirectlyMatchedChildren();
|
|
6684
|
-
/** A dedicated method to "looking up" recursively, to avoid loops in `isMatched`. */
|
|
6685
|
-
private get hasDirectlyMatchedParent();
|
|
6686
|
-
private get isDirectlyMatched();
|
|
6687
|
-
}
|
|
6688
6869
|
|
|
6689
|
-
type
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
/**
|
|
6716
|
-
* Memoizes rows so that re-rendering the table doesn't re-render every single row.
|
|
6717
|
-
*
|
|
6718
|
-
* We used to have a custom `propsAreEqual` method that would only compare `props.rows`
|
|
6719
|
-
* on the `data` attribute, b/c our `createRows` methods do not create stable row identities;
|
|
6720
|
-
* i.e. if one row changes, they all change.
|
|
6721
|
-
*
|
|
6722
|
-
* However, now RowState.row synthesizes a `row` that only reactively changes when
|
|
6723
|
-
* that row's `data` explicitly changes, so we no longer need a custom `propsAreEqual` here.
|
|
6724
|
-
*/
|
|
6725
|
-
declare const Row: typeof RowImpl;
|
|
6726
|
-
/** A specific kind of row, including the GridDataRow props. */
|
|
6727
|
-
type GridRowKind<R extends Kinded, P extends R["kind"]> = DiscriminateUnion<R, "kind", P> & {
|
|
6728
|
-
id: string;
|
|
6729
|
-
children: GridDataRow<R>[];
|
|
6730
|
-
selectable?: false;
|
|
6870
|
+
type TextButtonTriggerProps = Pick<ButtonProps, "label" | "variant" | "size" | "icon">;
|
|
6871
|
+
type IconButtonTriggerProps = Pick<IconButtonProps, "icon" | "color" | "compact" | "inc" | "variant">;
|
|
6872
|
+
type AvatarButtonTriggerProps = Pick<AvatarButtonProps, "src" | "name" | "size" | "preventTooltip">;
|
|
6873
|
+
type NavLinkButtonTriggerProps = {
|
|
6874
|
+
navLabel: string;
|
|
6875
|
+
} & Pick<NavLinkProps, "active" | "variant" | "icon">;
|
|
6876
|
+
type OverlayTriggerProps = {
|
|
6877
|
+
trigger: TextButtonTriggerProps | IconButtonTriggerProps | AvatarButtonTriggerProps | NavLinkButtonTriggerProps;
|
|
6878
|
+
/** Defaults to "left" */
|
|
6879
|
+
placement?: "left" | "right";
|
|
6880
|
+
/** Whether the Button is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
6881
|
+
disabled?: boolean | ReactNode;
|
|
6882
|
+
/** Text to be shown via a tooltip when the user hovers over the button */
|
|
6883
|
+
tooltip?: ReactNode;
|
|
6884
|
+
/** The component to be shown within the overlay */
|
|
6885
|
+
children: ReactElement;
|
|
6886
|
+
/** Props returned by the useMenuTrigger hook to be passed to the button element */
|
|
6887
|
+
menuTriggerProps: AriaButtonProps;
|
|
6888
|
+
/** Ref for the button element */
|
|
6889
|
+
buttonRef: MutableRefObject<HTMLButtonElement | null>;
|
|
6890
|
+
/** Result of the useMenuTriggerState hook */
|
|
6891
|
+
state: MenuTriggerState;
|
|
6892
|
+
/** Prop set the style of the button element */
|
|
6893
|
+
variant?: ButtonVariant;
|
|
6894
|
+
hideEndAdornment?: boolean;
|
|
6895
|
+
showActiveBorder?: boolean;
|
|
6731
6896
|
};
|
|
6732
|
-
/**
|
|
6733
|
-
* The data for any row in the table, marked by `kind` so that each column knows how to render it.
|
|
6734
|
-
*
|
|
6735
|
-
* Each `kind` should contain very little presentation logic, i.e. mostly just off-the-wire data from
|
|
6736
|
-
* a GraphQL query.
|
|
6737
|
-
*
|
|
6738
|
-
* The presentation concerns instead mainly live in each GridColumn definition, which will format/render
|
|
6739
|
-
* each kind's data for that specific row+column (i.e. cell) combination.
|
|
6740
|
-
*/
|
|
6741
|
-
type GridDataRow<R extends Kinded> = {
|
|
6742
|
-
kind: R["kind"];
|
|
6743
|
-
/** Combined with the `kind` to determine a table wide React key. */
|
|
6744
|
-
id: string;
|
|
6745
|
-
/** A list of parent/grand-parent ids for collapsing parent/child rows. */
|
|
6746
|
-
children?: GridDataRow<R>[];
|
|
6747
|
-
/**
|
|
6748
|
-
* Forces this row to sort to the first/last of its parent's children.
|
|
6749
|
-
*
|
|
6750
|
-
* By default, fixed-sorted rows are always shown/not filtered out; providing the
|
|
6751
|
-
* `filter: true` property allows them to be hidden while filtering. This is the
|
|
6752
|
-
* in-group ordering override, distinct from the runtime sticky "pin to top" feature
|
|
6753
|
-
* (`api.pinRow` / `pinColumn`).
|
|
6754
|
-
*/
|
|
6755
|
-
fixedSort?: "first" | "last" | FixedSort;
|
|
6756
|
-
data: unknown;
|
|
6757
|
-
/** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
|
|
6758
|
-
initCollapsed?: boolean;
|
|
6759
|
-
/** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
|
|
6760
|
-
initSelected?: boolean;
|
|
6761
|
-
/** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
|
|
6762
|
-
initPinned?: boolean;
|
|
6763
|
-
/** Whether row can be selected */
|
|
6764
|
-
selectable?: false;
|
|
6765
|
-
/** Whether this row should infer its selected state based on its children's selected state */
|
|
6766
|
-
inferSelectedState?: false;
|
|
6767
|
-
/** Whether this row is draggable, usually to allow drag & drop reordering of rows */
|
|
6768
|
-
draggable?: boolean;
|
|
6769
|
-
/** Image src for the row, to be used for card view */
|
|
6770
|
-
imgSrc?: string;
|
|
6771
|
-
/**
|
|
6772
|
-
* Full-width content rendered with this row (no separator between them).
|
|
6773
|
-
* Plain content / render fn defaults to `"trailing"`; use `{ position, content }` for `"leading"`.
|
|
6774
|
-
*/
|
|
6775
|
-
companion?: GridRowCompanion;
|
|
6776
|
-
} & IfAny<R, AnyObject, DiscriminateUnion<R, "kind", R["kind"]>>;
|
|
6777
6897
|
|
|
6778
|
-
|
|
6779
|
-
|
|
6780
|
-
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
type
|
|
6785
|
-
/**
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
|
|
6790
|
-
|
|
6791
|
-
|
|
6792
|
-
|
|
6793
|
-
|
|
6794
|
-
|
|
6795
|
-
|
|
6898
|
+
type ButtonMenuBaseProps = {
|
|
6899
|
+
items: MenuItem[];
|
|
6900
|
+
persistentItems?: MenuItem[];
|
|
6901
|
+
searchable?: boolean;
|
|
6902
|
+
defaultOpen?: boolean;
|
|
6903
|
+
} & Pick<OverlayTriggerProps, "trigger" | "placement" | "disabled" | "tooltip" | "showActiveBorder" | "hideEndAdornment">;
|
|
6904
|
+
type SelectionButtonMenuProps = {
|
|
6905
|
+
/** Display a menu item as selected based. Use the Menu Item's label to identify */
|
|
6906
|
+
selectedItem: string | undefined;
|
|
6907
|
+
onChange: (key: string) => void;
|
|
6908
|
+
} & ButtonMenuBaseProps;
|
|
6909
|
+
type ButtonMenuProps = ButtonMenuBaseProps | SelectionButtonMenuProps;
|
|
6910
|
+
declare function ButtonMenu(props: ButtonMenuProps): JSX.Element;
|
|
6911
|
+
type MenuItemBase = {
|
|
6912
|
+
label: string;
|
|
6913
|
+
/** If the `onClick` property is set as a string, then the menu item will be rendered as a link with the `onClick` value being the href */
|
|
6914
|
+
onClick: string | VoidFunction;
|
|
6915
|
+
/** Whether the interactive element is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
6916
|
+
disabled?: boolean | ReactNode;
|
|
6917
|
+
destructive?: boolean;
|
|
6918
|
+
hasDivider?: boolean;
|
|
6796
6919
|
};
|
|
6797
|
-
type
|
|
6798
|
-
|
|
6799
|
-
|
|
6920
|
+
type IconMenuItemType = MenuItemBase & {
|
|
6921
|
+
icon: IconProps["icon"];
|
|
6922
|
+
};
|
|
6923
|
+
type ImageMenuItemType = MenuItemBase & {
|
|
6924
|
+
src: string;
|
|
6925
|
+
size?: 24 | 48;
|
|
6926
|
+
isAvatar?: boolean;
|
|
6927
|
+
};
|
|
6928
|
+
type DividerMenuItemType = MenuItemBase & {
|
|
6929
|
+
hasDivider: boolean;
|
|
6930
|
+
};
|
|
6931
|
+
type MenuItem = MenuItemBase | IconMenuItemType | ImageMenuItemType | DividerMenuItemType;
|
|
6932
|
+
type MenuSection = MenuItem & {
|
|
6933
|
+
items?: MenuItem[];
|
|
6800
6934
|
};
|
|
6801
|
-
declare function createRowLookup<R extends Kinded>(api: GridTableApiImpl<R>, virtuosoRef: MutableRefObject<VirtuosoHandle | null>, virtuosoRangeRef: MutableRefObject<ListRange | null>): GridRowLookup<R>;
|
|
6802
|
-
/** Optionally takes into consideration if a row is already in view before attempting to scroll to it. */
|
|
6803
|
-
declare function shouldSkipScrollTo(index: number, virtuosoRangeRef: MutableRefObject<ListRange | null>): boolean;
|
|
6804
6935
|
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
* has run.
|
|
6819
|
-
*/
|
|
6820
|
-
declare function useGridTableApi<R extends Kinded>(): GridTableApi<R>;
|
|
6821
|
-
/** Provides an imperative API for an application page to interact with the table. */
|
|
6822
|
-
type GridTableApi<R extends Kinded> = {
|
|
6823
|
-
/** Scrolls row `index` into view; only supported with `as=virtual` and after a `useEffect`.
|
|
6824
|
-
*
|
|
6825
|
-
* Defaults "smooth" behavior; Use {index, behavior: "auto"} for instant scroll in cases where grid table has many, many records and the scroll effect is undesirable.
|
|
6826
|
-
* */
|
|
6827
|
-
scrollToIndex(index: GridTableScrollOptions): void;
|
|
6828
|
-
/** Returns the currently-visible rows. */
|
|
6829
|
-
getVisibleRows(): GridDataRow<R>[];
|
|
6830
|
-
/** Returns the currently-visible rows of the given `kind`. */
|
|
6831
|
-
getVisibleRows<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6832
|
-
/** Returns the ids of currently-selected rows. */
|
|
6833
|
-
getSelectedRowIds(): string[];
|
|
6834
|
-
getSelectedRowIds<K extends R["kind"]>(kind: K): string[];
|
|
6835
|
-
/** Returns the currently-selected rows. */
|
|
6836
|
-
getSelectedRows(): GridDataRow<R>[];
|
|
6837
|
-
/** Returns the currently-selected rows of the given `kind`. */
|
|
6838
|
-
getSelectedRows<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6839
|
-
/** Set selected state of a row by id. */
|
|
6840
|
-
selectRow(id: string, selected?: boolean): void;
|
|
6841
|
-
/** De-selects all selected rows. */
|
|
6842
|
-
clearSelections(): void;
|
|
6843
|
-
/** Whether a row is currently collapsed. */
|
|
6844
|
-
isCollapsedRow(id: string): boolean;
|
|
6845
|
-
/** Toggle collapse state of a row by id. */
|
|
6846
|
-
toggleCollapsedRow(id: string): void;
|
|
6847
|
-
/** Whether a row is currently pinned to the top. */
|
|
6848
|
-
isPinnedRow(id: string): boolean;
|
|
6849
|
-
/** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
|
|
6850
|
-
pinRow(id: string): void;
|
|
6851
|
-
/** Removes a row's runtime pin. */
|
|
6852
|
-
unpinRow(id: string): void;
|
|
6853
|
-
/** Toggles a row's runtime pinned state. */
|
|
6854
|
-
togglePinnedRow(id: string): void;
|
|
6855
|
-
/** Returns the ids of currently pinned rows. */
|
|
6856
|
-
getPinnedRowIds(): string[];
|
|
6857
|
-
/** Sets the internal state of 'activeRowId' */
|
|
6858
|
-
setActiveRowId(id: string | undefined): void;
|
|
6859
|
-
/** Sets the internal state of 'activeCellId' */
|
|
6860
|
-
setActiveCellId(id: string | undefined): void;
|
|
6861
|
-
/** Deletes a row from the table, i.e. so it's not detected as kept. */
|
|
6862
|
-
deleteRows(ids: string[]): void;
|
|
6863
|
-
getVisibleColumnIds(): string[];
|
|
6864
|
-
setVisibleColumns(ids: string[]): void;
|
|
6865
|
-
resetColumnWidths(): void;
|
|
6866
|
-
/**
|
|
6867
|
-
* Triggers the table's current content to be downloaded as a CSV file.
|
|
6868
|
-
*
|
|
6869
|
-
* This currently assumes client-side pagination/sorting, i.e. we have the full dataset in memory.
|
|
6870
|
-
*/
|
|
6871
|
-
downloadToCsv(fileName: string): void;
|
|
6936
|
+
type CardType = "card" | "list";
|
|
6937
|
+
type ImageFitType = "contain" | "cover";
|
|
6938
|
+
type CardTag = {
|
|
6939
|
+
text: string;
|
|
6940
|
+
type?: TagType;
|
|
6941
|
+
};
|
|
6942
|
+
type CardProps = {
|
|
6943
|
+
title: string;
|
|
6944
|
+
subtitle: string;
|
|
6945
|
+
detailContent?: ReactNode;
|
|
6946
|
+
imgSrc: string;
|
|
6947
|
+
imageFit?: ImageFitType;
|
|
6948
|
+
type?: CardType;
|
|
6872
6949
|
/**
|
|
6873
|
-
*
|
|
6874
|
-
*
|
|
6875
|
-
* This currently assumes client-side pagination/sorting, i.e. we have the full dataset in memory.
|
|
6950
|
+
* Makes the card fill its container instead of using the default fixed width (256px card / 520px list),
|
|
6951
|
+
* i.e. for two list cards side-by-side in a grid whose columns aren't 520px wide.
|
|
6876
6952
|
*/
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
getVisibleChildren<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6883
|
-
getSelectedChildren(): GridDataRow<R>[];
|
|
6884
|
-
getSelectedChildren<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6953
|
+
fullWidth?: boolean;
|
|
6954
|
+
bordered?: boolean;
|
|
6955
|
+
disabled?: boolean;
|
|
6956
|
+
buttonMenuItems?: MenuItem[];
|
|
6957
|
+
tag?: CardTag;
|
|
6885
6958
|
};
|
|
6886
|
-
declare
|
|
6887
|
-
readonly tableState: TableState<R>;
|
|
6888
|
-
virtuosoRef: MutableRefObject<VirtuosoHandle | null>;
|
|
6889
|
-
virtuosoRangeRef: MutableRefObject<ListRange | null>;
|
|
6890
|
-
lookup: GridRowLookup<R>;
|
|
6891
|
-
resetColumnWidthsFn?: () => void;
|
|
6892
|
-
constructor();
|
|
6893
|
-
/** Called once by the GridTable when it takes ownership of this api instance. */
|
|
6894
|
-
init(persistCollapse: string | undefined, virtuosoRef: MutableRefObject<VirtuosoHandle | null>, virtuosoRangeRef: MutableRefObject<ListRange | null>): void;
|
|
6895
|
-
scrollToIndex(indexOrOptions: GridTableScrollOptions): void;
|
|
6896
|
-
getSelectedRowIds(kind?: string): string[];
|
|
6897
|
-
private getSelectedRowIdsImpl;
|
|
6898
|
-
getSelectedRows(kind?: string): any;
|
|
6899
|
-
private getSelectedRowsImpl;
|
|
6900
|
-
getVisibleRows(kind?: string): any;
|
|
6901
|
-
private getVisibleRowsImpl;
|
|
6902
|
-
getVisibleRowIds(kind?: string): any;
|
|
6903
|
-
private getVisibleRowIdsImpl;
|
|
6904
|
-
clearSelections(id?: string): void;
|
|
6905
|
-
setActiveRowId(id: string | undefined): void;
|
|
6906
|
-
setActiveCellId(id: string | undefined): void;
|
|
6907
|
-
selectRow(id: string, selected?: boolean): void;
|
|
6908
|
-
toggleCollapsedRow(id: string): void;
|
|
6909
|
-
isCollapsedRow(id: string): boolean;
|
|
6910
|
-
isPinnedRow(id: string): boolean;
|
|
6911
|
-
pinRow(id: string): void;
|
|
6912
|
-
unpinRow(id: string): void;
|
|
6913
|
-
togglePinnedRow(id: string): void;
|
|
6914
|
-
getPinnedRowIds(): string[];
|
|
6915
|
-
private getPinnedRowIdsImpl;
|
|
6916
|
-
setVisibleColumns(ids: string[]): void;
|
|
6917
|
-
getVisibleColumnIds(): string[];
|
|
6918
|
-
resetColumnWidths(): void;
|
|
6919
|
-
deleteRows(ids: string[]): void;
|
|
6920
|
-
downloadToCsv(fileName: string): void;
|
|
6921
|
-
copyToClipboard(): Promise<void>;
|
|
6922
|
-
generateCsvContent(): string[];
|
|
6923
|
-
}
|
|
6959
|
+
declare function Card(props: CardProps): JSX.Element;
|
|
6924
6960
|
|
|
6925
6961
|
/** Structured empty state shown in place of a GridTable when there are no data rows. */
|
|
6926
6962
|
type GridTableEmptyStateProps = {
|
|
@@ -7077,6 +7113,10 @@ type GridTableProps<R extends Kinded, X> = {
|
|
|
7077
7113
|
disableColumnResizing?: boolean;
|
|
7078
7114
|
/** Injects fixed left/right gutter columns when inside a document-scroll layout. */
|
|
7079
7115
|
columnGutter?: boolean;
|
|
7116
|
+
/** Fixed height for `as="card"` cards in px. Defaults to 430. */
|
|
7117
|
+
cardHeight?: number;
|
|
7118
|
+
/** How card hero images fill their frame when `as="card"`. Defaults to `"cover"`. */
|
|
7119
|
+
cardImageFit?: ImageFitType;
|
|
7080
7120
|
};
|
|
7081
7121
|
/**
|
|
7082
7122
|
* Renders data in our table layout.
|
|
@@ -7745,6 +7785,26 @@ type ButtonModalProps = {
|
|
|
7745
7785
|
} & Pick<OverlayTriggerProps, "trigger" | "placement" | "disabled" | "tooltip" | "showActiveBorder">;
|
|
7746
7786
|
declare function ButtonModal(props: ButtonModalProps): JSX.Element;
|
|
7747
7787
|
|
|
7788
|
+
type CarouselProps = {
|
|
7789
|
+
/** The items to scroll through; each one snaps into place as the strip scrolls. */
|
|
7790
|
+
children: ReactNode;
|
|
7791
|
+
/** Space between items, in px. Defaults to 8. */
|
|
7792
|
+
gap?: number;
|
|
7793
|
+
/** Label for the scroll-back button. */
|
|
7794
|
+
prevLabel?: string;
|
|
7795
|
+
/** Label for the scroll-forward button. */
|
|
7796
|
+
nextLabel?: string;
|
|
7797
|
+
/** The chevrons' `Icon` size, i.e. an increment rather than px. Defaults to 3, so 24px. */
|
|
7798
|
+
chevronInc?: number;
|
|
7799
|
+
};
|
|
7800
|
+
/**
|
|
7801
|
+
* A horizontally scrolling strip of items, with chevrons that appear only when the strip overflows.
|
|
7802
|
+
*
|
|
7803
|
+
* The chevrons scroll a "page" (the strip's visible width) at a time, and items snap into place so
|
|
7804
|
+
* scrolling never leaves an item half-shown.
|
|
7805
|
+
*/
|
|
7806
|
+
declare function Carousel(props: CarouselProps): JSX.Element;
|
|
7807
|
+
|
|
7748
7808
|
/** Must match the `contrast` theme axis in tokens and `[data-theme="contrast"]` in `src/css/generated/theme-scopes.css`. */
|
|
7749
7809
|
declare const contrastDataTheme: "contrast";
|
|
7750
7810
|
/**
|
|
@@ -7916,6 +7976,14 @@ type TextFieldBaseProps<X> = {
|
|
|
7916
7976
|
hideErrorMessage?: boolean;
|
|
7917
7977
|
alwaysShowHelperText?: boolean;
|
|
7918
7978
|
unfocusedPlaceholder?: ReactNode;
|
|
7979
|
+
/** Value proposed by an AI model; puts the field in AI mode. Pre-formatted for display. */
|
|
7980
|
+
proposedValue?: string;
|
|
7981
|
+
/** The formatted value on record, rendered struck through beside the input. Independent of `proposedValue`. */
|
|
7982
|
+
originalValue?: string;
|
|
7983
|
+
/** Called on any edit the user makes, so the owning field can end AI mode. */
|
|
7984
|
+
onUserEdit?: VoidFunction;
|
|
7985
|
+
/** Called when the user leaves the field, so the owning field can retire the struck-through original. */
|
|
7986
|
+
onUserBlur?: VoidFunction;
|
|
7919
7987
|
/** Allow focusing without selecting, i.e. to let the user keep typing after we've pre-filled text + called focus, like the Add New component. */
|
|
7920
7988
|
selectOnFocus?: boolean;
|
|
7921
7989
|
} & Pick<BeamTextFieldProps<X>, "label" | "required" | "errorMsg" | "errorInTooltip" | "onBlur" | "onFocus" | "helperText" | "labelStyle" | "placeholder" | "compact" | "borderless" | "borderOnHover" | "visuallyDisabled" | "fullWidth" | "xss" | "inputStylePalette"> & Partial<Pick<BeamTextFieldProps<X>, "onChange">>;
|
|
@@ -7958,7 +8026,7 @@ type AutocompleteProps<T> = {
|
|
|
7958
8026
|
value: Value;
|
|
7959
8027
|
reason: string;
|
|
7960
8028
|
})[];
|
|
7961
|
-
} & Pick<PresentationFieldProps, "labelStyle"> & Pick<TextFieldBaseProps<any>, "label" | "clearable" | "startAdornment" | "fullWidth">;
|
|
8029
|
+
} & Pick<PresentationFieldProps, "labelStyle"> & Pick<TextFieldBaseProps<any>, "label" | "clearable" | "startAdornment" | "fullWidth" | "proposedValue">;
|
|
7962
8030
|
declare function Autocomplete<T extends object>(props: AutocompleteProps<T>): JSX.Element;
|
|
7963
8031
|
|
|
7964
8032
|
interface CheckboxProps {
|
|
@@ -8095,11 +8163,15 @@ type DateFieldCommonProps = Pick<TextFieldBaseProps<Properties>, "borderless" |
|
|
|
8095
8163
|
/** Render header that skips years in addition to months */
|
|
8096
8164
|
useYearPicker?: boolean;
|
|
8097
8165
|
};
|
|
8098
|
-
|
|
8166
|
+
/** Value proposed by an AI model; puts the field in AI mode. */
|
|
8167
|
+
type ProposedValue<V> = {
|
|
8168
|
+
proposedValue?: V;
|
|
8169
|
+
};
|
|
8170
|
+
type DateFieldProps = DateFieldCommonProps & ProposedValue<PlainDate> & {
|
|
8099
8171
|
value: PlainDate | undefined;
|
|
8100
8172
|
onChange: (value: PlainDate | undefined) => void;
|
|
8101
8173
|
};
|
|
8102
|
-
type DateRangeFieldProps = DateFieldCommonProps & {
|
|
8174
|
+
type DateRangeFieldProps = DateFieldCommonProps & ProposedValue<DateRange> & {
|
|
8103
8175
|
value: DateRange | undefined;
|
|
8104
8176
|
onChange: (value: DateRange | undefined) => void;
|
|
8105
8177
|
};
|
|
@@ -8130,6 +8202,8 @@ type ComboBoxBaseProps<O, V extends Value> = {
|
|
|
8130
8202
|
getOptionLabel: (opt: O) => string;
|
|
8131
8203
|
/** The current value; it can be `undefined`, even if `V` cannot be. */
|
|
8132
8204
|
values: V[] | undefined;
|
|
8205
|
+
/** Values proposed by an AI model; puts the field in AI mode. */
|
|
8206
|
+
proposedValues?: V[];
|
|
8133
8207
|
onSelect: (values: V[], opts: O[]) => void;
|
|
8134
8208
|
multiselect?: boolean;
|
|
8135
8209
|
disabledOptions?: (V | {
|
|
@@ -8236,6 +8310,8 @@ interface NumberFieldProps extends Pick<PresentationFieldProps, "labelStyle" | "
|
|
|
8236
8310
|
/** If set, the label will be defined as 'aria-label` on the input element */
|
|
8237
8311
|
type?: NumberFieldType;
|
|
8238
8312
|
value: number | undefined;
|
|
8313
|
+
/** Value proposed by an AI model; puts the field in AI mode. */
|
|
8314
|
+
proposedValue?: number;
|
|
8239
8315
|
onChange: (value: number | undefined) => void;
|
|
8240
8316
|
compact?: boolean;
|
|
8241
8317
|
clearable?: boolean;
|
|
@@ -8406,13 +8482,15 @@ declare function SelectCardGroup<V extends Value>(props: SelectCardGroupProps<V>
|
|
|
8406
8482
|
type SelectFieldProps<O, V extends Value> = {
|
|
8407
8483
|
/** The current value; it can be `undefined`, even if `V` cannot be. */
|
|
8408
8484
|
value: V | undefined;
|
|
8485
|
+
/** Value proposed by an AI model; puts the field in AI mode. */
|
|
8486
|
+
proposedValue?: V;
|
|
8409
8487
|
/**
|
|
8410
8488
|
* Called when a value is selected, or `undefined` if `unsetLabel` is being used.
|
|
8411
8489
|
*
|
|
8412
8490
|
* Ideally callers that didn't pass `unsetLabel` would not have to handle the ` | undefined` here.
|
|
8413
8491
|
*/
|
|
8414
8492
|
onSelect: (value: V | undefined, opt: O | undefined) => void;
|
|
8415
|
-
} & Omit<ComboBoxBaseProps<O, V>, "values" | "onSelect" | "multiselect">;
|
|
8493
|
+
} & Omit<ComboBoxBaseProps<O, V>, "values" | "proposedValues" | "onSelect" | "multiselect">;
|
|
8416
8494
|
/**
|
|
8417
8495
|
* Provides a non-native select/dropdown widget.
|
|
8418
8496
|
*
|
|
@@ -10552,4 +10630,4 @@ declare const zIndices: {
|
|
|
10552
10630
|
};
|
|
10553
10631
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
10554
10632
|
|
|
10555
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, type AppEnvironment, 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, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, 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 CardBadgeSlot, type CardBadgeTag, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, 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, type ColumnLayoutResult, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderProps, 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 DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, DocumentScrollRightPaneLayout, type DocumentScrollRightPaneLayoutProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection$1 as FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionProps, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowCompanion, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectCardGroup, type MultiSelectCardGroupProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, 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, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, 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, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, 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, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, 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, ViewToggleButton, WorkflowLayout, type WorkflowLayoutProps, type WorkflowLayoutStep, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, documentScrollRightPaneHeight, documentScrollRightPaneWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, 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, withColumnGutters, zIndices };
|
|
10633
|
+
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, type AppEnvironment, 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, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, 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 CardBadgeSlot, type CardBadgeTag, type CardCarouselFooter, type CardCarouselThumbnail, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, 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, type ColumnLayoutResult, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderProps, 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 DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, DocumentScrollRightPaneLayout, type DocumentScrollRightPaneLayoutProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection$1 as FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionProps, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowCompanion, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectCardGroup, type MultiSelectCardGroupProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, 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, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, 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, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, 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, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, 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, ViewToggleButton, WorkflowLayout, type WorkflowLayoutProps, type WorkflowLayoutStep, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, documentScrollRightPaneHeight, documentScrollRightPaneWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, 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, withColumnGutters, zIndices };
|