@homebound/beam 3.87.0 → 3.89.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 +1848 -1509
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1938 -1880
- package/dist/index.d.ts +1938 -1880
- package/dist/index.js +1681 -1347
- package/dist/index.js.map +1 -1
- package/dist/truss.css +42 -2
- package/package.json +1 -1
package/dist/index.d.cts
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,1337 +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
|
-
/** Value proposed by an AI model; puts the field in AI mode. */
|
|
4892
|
-
proposedValue?: string;
|
|
4893
|
-
/** Handler called when the interactive element state changes. */
|
|
4894
|
-
onChange: (value: string | undefined) => void;
|
|
4895
|
-
/** Called when the component loses focus, mostly for BoundTextField to use. */
|
|
4896
|
-
onBlur?: VoidFunction;
|
|
4897
|
-
onFocus?: VoidFunction;
|
|
4898
|
-
onEnter?: VoidFunction;
|
|
4899
|
-
/** Whether the field is readOnly. If a ReactNode, it's treated as a "readOnly reason" that's shown in a tooltip. */
|
|
4900
|
-
readOnly?: boolean | ReactNode;
|
|
4901
|
-
placeholder?: string;
|
|
4902
|
-
/** 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;
|
|
4903
4829
|
xss?: X;
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
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;
|
|
4917
4844
|
|
|
4918
|
-
type
|
|
4919
|
-
|
|
4920
|
-
buttonRef?: RefObject<HTMLButtonElement>;
|
|
4921
|
-
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
4922
|
-
__storyState?: {
|
|
4923
|
-
hovered?: boolean;
|
|
4924
|
-
focusVisible?: boolean;
|
|
4925
|
-
pressed?: boolean;
|
|
4926
|
-
};
|
|
4927
|
-
} & AvatarProps & BeamButtonProps & BeamFocusableProps;
|
|
4928
|
-
declare function AvatarButton(props: AvatarButtonProps): JSX.Element;
|
|
4929
|
-
declare const hoverStyles: Pick<Properties, never> & {
|
|
4930
|
-
boxShadow: csstype.Property.BoxShadow | undefined;
|
|
4931
|
-
} & {
|
|
4932
|
-
readonly __kind: "buildtime";
|
|
4845
|
+
type CardSlotBase<K extends string> = {
|
|
4846
|
+
kind: K;
|
|
4933
4847
|
};
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
} & {
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
}
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
left: csstype.Property.Left<string | 0> | undefined;
|
|
4948
|
-
} & {
|
|
4949
|
-
opacity: csstype.Property.Opacity | undefined;
|
|
4950
|
-
} & {
|
|
4951
|
-
pointerEvents: csstype.Property.PointerEvents | undefined;
|
|
4952
|
-
} & {
|
|
4953
|
-
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;
|
|
4954
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;
|
|
4955
4923
|
|
|
4956
|
-
type
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
/**
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
type
|
|
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
|
-
|
|
5011
|
-
|
|
5012
|
-
|
|
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
|
+
};
|
|
5013
5046
|
|
|
5014
|
-
type
|
|
5015
|
-
type
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
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;
|
|
5026
5077
|
/**
|
|
5027
|
-
*
|
|
5028
|
-
*
|
|
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.
|
|
5029
5082
|
*/
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
nested?: boolean;
|
|
5033
|
-
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
5034
|
-
__storyState?: {
|
|
5035
|
-
hovered?: boolean;
|
|
5036
|
-
focusVisible?: boolean;
|
|
5037
|
-
pressed?: boolean;
|
|
5038
|
-
};
|
|
5039
|
-
} & BeamFocusableProps;
|
|
5040
|
-
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
5041
|
-
declare function getNavLinkStyles(variant: NavLinkVariant, nested?: boolean): {
|
|
5042
|
-
baseStyles: {
|
|
5043
|
-
fontWeight: csstype.Property.FontWeight | undefined;
|
|
5044
|
-
fontSize: csstype.Property.FontSize<string | 0> | undefined;
|
|
5045
|
-
lineHeight: csstype.Property.LineHeight<string | 0> | undefined;
|
|
5046
|
-
__kind: "buildtime";
|
|
5047
|
-
accentColor?: csstype.Property.AccentColor | undefined;
|
|
5048
|
-
alignContent?: csstype.Property.AlignContent | undefined;
|
|
5049
|
-
alignItems?: csstype.Property.AlignItems | undefined;
|
|
5050
|
-
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
5051
|
-
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
5052
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
5053
|
-
anchorName?: csstype.Property.AnchorName | undefined;
|
|
5054
|
-
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
5055
|
-
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
5056
|
-
animationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5057
|
-
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5058
|
-
animationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5059
|
-
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5060
|
-
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5061
|
-
animationName?: csstype.Property.AnimationName | undefined;
|
|
5062
|
-
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5063
|
-
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | 0> | undefined;
|
|
5064
|
-
animationRangeStart?: csstype.Property.AnimationRangeStart<string | 0> | undefined;
|
|
5065
|
-
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
5066
|
-
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5067
|
-
appearance?: csstype.Property.Appearance | undefined;
|
|
5068
|
-
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
5069
|
-
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
5070
|
-
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5071
|
-
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
5072
|
-
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
5073
|
-
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5074
|
-
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
5075
|
-
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
5076
|
-
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5077
|
-
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | 0> | undefined;
|
|
5078
|
-
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | 0> | undefined;
|
|
5079
|
-
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
5080
|
-
backgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5081
|
-
baselineShift?: csstype.Property.BaselineShift<string | 0> | undefined;
|
|
5082
|
-
blockSize?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
5083
|
-
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
5084
|
-
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
5085
|
-
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | 0> | undefined;
|
|
5086
|
-
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
5087
|
-
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
5088
|
-
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | 0> | undefined;
|
|
5089
|
-
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
5090
|
-
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5091
|
-
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5092
|
-
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
5093
|
-
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | 0> | undefined;
|
|
5094
|
-
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
5095
|
-
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | 0> | undefined;
|
|
5096
|
-
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | 0> | undefined;
|
|
5097
|
-
borderImageOutset?: csstype.Property.BorderImageOutset<string | 0> | undefined;
|
|
5098
|
-
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
5099
|
-
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
5100
|
-
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
5101
|
-
borderImageWidth?: csstype.Property.BorderImageWidth<string | 0> | undefined;
|
|
5102
|
-
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
5103
|
-
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
5104
|
-
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
5105
|
-
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
5106
|
-
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
5107
|
-
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | 0> | undefined;
|
|
5108
|
-
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
5109
|
-
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
5110
|
-
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | 0> | undefined;
|
|
5111
|
-
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
5112
|
-
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
5113
|
-
borderRightWidth?: csstype.Property.BorderRightWidth<string | 0> | undefined;
|
|
5114
|
-
borderSpacing?: csstype.Property.BorderSpacing<string | 0> | undefined;
|
|
5115
|
-
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | 0> | undefined;
|
|
5116
|
-
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | 0> | undefined;
|
|
5117
|
-
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
5118
|
-
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5119
|
-
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5120
|
-
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
5121
|
-
borderTopWidth?: csstype.Property.BorderTopWidth<string | 0> | undefined;
|
|
5122
|
-
bottom?: csstype.Property.Bottom<string | 0> | undefined;
|
|
5123
|
-
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
5124
|
-
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5125
|
-
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5126
|
-
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
5127
|
-
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
5128
|
-
breakInside?: csstype.Property.BreakInside | undefined;
|
|
5129
|
-
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
5130
|
-
caretColor?: csstype.Property.CaretColor | undefined;
|
|
5131
|
-
caretShape?: csstype.Property.CaretShape | undefined;
|
|
5132
|
-
clear?: csstype.Property.Clear | undefined;
|
|
5133
|
-
clipPath?: csstype.Property.ClipPath | undefined;
|
|
5134
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
5135
|
-
color?: csstype.Property.Color | undefined;
|
|
5136
|
-
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5137
|
-
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
5138
|
-
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
5139
|
-
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
5140
|
-
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
5141
|
-
columnGap?: csstype.Property.ColumnGap<string | 0> | undefined;
|
|
5142
|
-
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5143
|
-
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5144
|
-
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5145
|
-
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
5146
|
-
columnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5147
|
-
contain?: csstype.Property.Contain | undefined;
|
|
5148
|
-
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | 0> | undefined;
|
|
5149
|
-
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | 0> | undefined;
|
|
5150
|
-
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | 0> | undefined;
|
|
5151
|
-
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | 0> | undefined;
|
|
5152
|
-
containerName?: csstype.Property.ContainerName | undefined;
|
|
5153
|
-
containerType?: csstype.Property.ContainerType | undefined;
|
|
5154
|
-
content?: csstype.Property.Content | undefined;
|
|
5155
|
-
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
5156
|
-
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
5157
|
-
counterReset?: csstype.Property.CounterReset | undefined;
|
|
5158
|
-
counterSet?: csstype.Property.CounterSet | undefined;
|
|
5159
|
-
cursor?: csstype.Property.Cursor | undefined;
|
|
5160
|
-
cx?: csstype.Property.Cx<string | 0> | undefined;
|
|
5161
|
-
cy?: csstype.Property.Cy<string | 0> | undefined;
|
|
5162
|
-
d?: csstype.Property.D | undefined;
|
|
5163
|
-
direction?: csstype.Property.Direction | undefined;
|
|
5164
|
-
display?: csstype.Property.Display | undefined;
|
|
5165
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
5166
|
-
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
5167
|
-
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
5168
|
-
fill?: csstype.Property.Fill | undefined;
|
|
5169
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
5170
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
5171
|
-
filter?: csstype.Property.Filter | undefined;
|
|
5172
|
-
flexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
5173
|
-
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5174
|
-
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
5175
|
-
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
5176
|
-
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
5177
|
-
float?: csstype.Property.Float | undefined;
|
|
5178
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
5179
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
5180
|
-
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
5181
|
-
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5182
|
-
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
5183
|
-
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
5184
|
-
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
5185
|
-
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
5186
|
-
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
5187
|
-
fontSmooth?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5188
|
-
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
5189
|
-
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
5190
|
-
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
5191
|
-
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
5192
|
-
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
5193
|
-
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
5194
|
-
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
5195
|
-
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
5196
|
-
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
5197
|
-
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
5198
|
-
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
5199
|
-
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
5200
|
-
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
5201
|
-
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
5202
|
-
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
5203
|
-
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
5204
|
-
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
5205
|
-
gridAutoColumns?: csstype.Property.GridAutoColumns<string | 0> | undefined;
|
|
5206
|
-
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
5207
|
-
gridAutoRows?: csstype.Property.GridAutoRows<string | 0> | undefined;
|
|
5208
|
-
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
5209
|
-
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
5210
|
-
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
5211
|
-
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
5212
|
-
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
5213
|
-
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | 0> | undefined;
|
|
5214
|
-
gridTemplateRows?: csstype.Property.GridTemplateRows<string | 0> | undefined;
|
|
5215
|
-
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
5216
|
-
height?: csstype.Property.Height<string | 0> | undefined;
|
|
5217
|
-
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
5218
|
-
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
5219
|
-
hyphens?: csstype.Property.Hyphens | undefined;
|
|
5220
|
-
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
5221
|
-
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
5222
|
-
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
5223
|
-
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
5224
|
-
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
5225
|
-
inlineSize?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
5226
|
-
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
5227
|
-
insetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
5228
|
-
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
5229
|
-
insetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
5230
|
-
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
5231
|
-
isolation?: csstype.Property.Isolation | undefined;
|
|
5232
|
-
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
5233
|
-
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
5234
|
-
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
5235
|
-
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
5236
|
-
left?: csstype.Property.Left<string | 0> | undefined;
|
|
5237
|
-
letterSpacing?: csstype.Property.LetterSpacing<string | 0> | undefined;
|
|
5238
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
5239
|
-
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
5240
|
-
lineHeightStep?: csstype.Property.LineHeightStep<string | 0> | undefined;
|
|
5241
|
-
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
5242
|
-
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
5243
|
-
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
5244
|
-
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | 0> | undefined;
|
|
5245
|
-
marginBlockStart?: csstype.Property.MarginBlockStart<string | 0> | undefined;
|
|
5246
|
-
marginBottom?: csstype.Property.MarginBottom<string | 0> | undefined;
|
|
5247
|
-
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5248
|
-
marginInlineStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5249
|
-
marginLeft?: csstype.Property.MarginLeft<string | 0> | undefined;
|
|
5250
|
-
marginRight?: csstype.Property.MarginRight<string | 0> | undefined;
|
|
5251
|
-
marginTop?: csstype.Property.MarginTop<string | 0> | undefined;
|
|
5252
|
-
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
5253
|
-
marker?: csstype.Property.Marker | undefined;
|
|
5254
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
5255
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
5256
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
5257
|
-
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
5258
|
-
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
5259
|
-
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
5260
|
-
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
5261
|
-
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
5262
|
-
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
5263
|
-
maskClip?: csstype.Property.MaskClip | undefined;
|
|
5264
|
-
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
5265
|
-
maskImage?: csstype.Property.MaskImage | undefined;
|
|
5266
|
-
maskMode?: csstype.Property.MaskMode | undefined;
|
|
5267
|
-
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
5268
|
-
maskPosition?: csstype.Property.MaskPosition<string | 0> | undefined;
|
|
5269
|
-
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
5270
|
-
maskSize?: csstype.Property.MaskSize<string | 0> | undefined;
|
|
5271
|
-
maskType?: csstype.Property.MaskType | undefined;
|
|
5272
|
-
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
5273
|
-
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
5274
|
-
mathShift?: csstype.Property.MathShift | undefined;
|
|
5275
|
-
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
5276
|
-
maxBlockSize?: csstype.Property.MaxBlockSize<string | 0> | undefined;
|
|
5277
|
-
maxHeight?: csstype.Property.MaxHeight<string | 0> | undefined;
|
|
5278
|
-
maxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
5279
|
-
maxLines?: csstype.Property.MaxLines | undefined;
|
|
5280
|
-
maxWidth?: csstype.Property.MaxWidth<string | 0> | undefined;
|
|
5281
|
-
minBlockSize?: csstype.Property.MinBlockSize<string | 0> | undefined;
|
|
5282
|
-
minHeight?: csstype.Property.MinHeight<string | 0> | undefined;
|
|
5283
|
-
minInlineSize?: csstype.Property.MinInlineSize<string | 0> | undefined;
|
|
5284
|
-
minWidth?: csstype.Property.MinWidth<string | 0> | undefined;
|
|
5285
|
-
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
5286
|
-
motionDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
5287
|
-
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
5288
|
-
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
5289
|
-
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
5290
|
-
objectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
5291
|
-
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
5292
|
-
offsetAnchor?: csstype.Property.OffsetAnchor<string | 0> | undefined;
|
|
5293
|
-
offsetDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
5294
|
-
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
5295
|
-
offsetPosition?: csstype.Property.OffsetPosition<string | 0> | undefined;
|
|
5296
|
-
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
5297
|
-
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
5298
|
-
opacity?: csstype.Property.Opacity | undefined;
|
|
5299
|
-
order?: csstype.Property.Order | undefined;
|
|
5300
|
-
orphans?: csstype.Property.Orphans | undefined;
|
|
5301
|
-
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
5302
|
-
outlineOffset?: csstype.Property.OutlineOffset<string | 0> | undefined;
|
|
5303
|
-
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
5304
|
-
outlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
5305
|
-
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
5306
|
-
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
5307
|
-
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
5308
|
-
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | 0> | undefined;
|
|
5309
|
-
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
5310
|
-
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
5311
|
-
overflowX?: csstype.Property.OverflowX | undefined;
|
|
5312
|
-
overflowY?: csstype.Property.OverflowY | undefined;
|
|
5313
|
-
overlay?: csstype.Property.Overlay | undefined;
|
|
5314
|
-
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
5315
|
-
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
5316
|
-
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
5317
|
-
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
5318
|
-
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | 0> | undefined;
|
|
5319
|
-
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | 0> | undefined;
|
|
5320
|
-
paddingBottom?: csstype.Property.PaddingBottom<string | 0> | undefined;
|
|
5321
|
-
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5322
|
-
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5323
|
-
paddingLeft?: csstype.Property.PaddingLeft<string | 0> | undefined;
|
|
5324
|
-
paddingRight?: csstype.Property.PaddingRight<string | 0> | undefined;
|
|
5325
|
-
paddingTop?: csstype.Property.PaddingTop<string | 0> | undefined;
|
|
5326
|
-
page?: csstype.Property.Page | undefined;
|
|
5327
|
-
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
5328
|
-
perspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5329
|
-
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5330
|
-
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
5331
|
-
position?: csstype.Property.Position | undefined;
|
|
5332
|
-
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
5333
|
-
positionArea?: csstype.Property.PositionArea | undefined;
|
|
5334
|
-
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
5335
|
-
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
5336
|
-
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
5337
|
-
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5338
|
-
quotes?: csstype.Property.Quotes | undefined;
|
|
5339
|
-
r?: csstype.Property.R<string | 0> | undefined;
|
|
5340
|
-
resize?: csstype.Property.Resize | undefined;
|
|
5341
|
-
right?: csstype.Property.Right<string | 0> | undefined;
|
|
5342
|
-
rotate?: csstype.Property.Rotate | undefined;
|
|
5343
|
-
rowGap?: csstype.Property.RowGap<string | 0> | undefined;
|
|
5344
|
-
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
5345
|
-
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
5346
|
-
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
5347
|
-
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
5348
|
-
rx?: csstype.Property.Rx<string | 0> | undefined;
|
|
5349
|
-
ry?: csstype.Property.Ry<string | 0> | undefined;
|
|
5350
|
-
scale?: csstype.Property.Scale | undefined;
|
|
5351
|
-
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
5352
|
-
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
5353
|
-
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | 0> | undefined;
|
|
5354
|
-
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | 0> | undefined;
|
|
5355
|
-
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
5356
|
-
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | 0> | undefined;
|
|
5357
|
-
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | 0> | undefined;
|
|
5358
|
-
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
5359
|
-
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
5360
|
-
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
5361
|
-
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | 0> | undefined;
|
|
5362
|
-
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | 0> | undefined;
|
|
5363
|
-
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | 0> | undefined;
|
|
5364
|
-
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | 0> | undefined;
|
|
5365
|
-
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | 0> | undefined;
|
|
5366
|
-
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | 0> | undefined;
|
|
5367
|
-
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | 0> | undefined;
|
|
5368
|
-
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | 0> | undefined;
|
|
5369
|
-
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
5370
|
-
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
5371
|
-
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
5372
|
-
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
5373
|
-
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
5374
|
-
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
5375
|
-
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
5376
|
-
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
5377
|
-
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
5378
|
-
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
5379
|
-
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
5380
|
-
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
5381
|
-
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
5382
|
-
shapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
5383
|
-
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
5384
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
5385
|
-
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
5386
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
5387
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
5388
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
5389
|
-
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
5390
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | 0> | undefined;
|
|
5391
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | 0> | undefined;
|
|
5392
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
5393
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
5394
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
5395
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
5396
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | 0> | undefined;
|
|
5397
|
-
tabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5398
|
-
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
5399
|
-
textAlign?: csstype.Property.TextAlign | undefined;
|
|
5400
|
-
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
5401
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
5402
|
-
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
5403
|
-
textBox?: csstype.Property.TextBox | undefined;
|
|
5404
|
-
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
5405
|
-
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
5406
|
-
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
5407
|
-
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5408
|
-
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5409
|
-
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
5410
|
-
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
5411
|
-
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5412
|
-
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | 0> | undefined;
|
|
5413
|
-
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
5414
|
-
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
5415
|
-
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
5416
|
-
textIndent?: csstype.Property.TextIndent<string | 0> | undefined;
|
|
5417
|
-
textJustify?: csstype.Property.TextJustify | undefined;
|
|
5418
|
-
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
5419
|
-
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5420
|
-
textRendering?: csstype.Property.TextRendering | undefined;
|
|
5421
|
-
textShadow?: csstype.Property.TextShadow | undefined;
|
|
5422
|
-
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5423
|
-
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
5424
|
-
textTransform?: csstype.Property.TextTransform | undefined;
|
|
5425
|
-
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | 0> | undefined;
|
|
5426
|
-
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
5427
|
-
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
5428
|
-
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
5429
|
-
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
5430
|
-
top?: csstype.Property.Top<string | 0> | undefined;
|
|
5431
|
-
touchAction?: csstype.Property.TouchAction | undefined;
|
|
5432
|
-
transform?: csstype.Property.Transform | undefined;
|
|
5433
|
-
transformBox?: csstype.Property.TransformBox | undefined;
|
|
5434
|
-
transformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5435
|
-
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5436
|
-
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
5437
|
-
transitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5438
|
-
transitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5439
|
-
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5440
|
-
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5441
|
-
translate?: csstype.Property.Translate<string | 0> | undefined;
|
|
5442
|
-
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
5443
|
-
userSelect?: csstype.Property.UserSelect | undefined;
|
|
5444
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
5445
|
-
verticalAlign?: csstype.Property.VerticalAlign<string | 0> | undefined;
|
|
5446
|
-
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
5447
|
-
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | 0> | undefined;
|
|
5448
|
-
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
5449
|
-
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
5450
|
-
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
5451
|
-
visibility?: csstype.Property.Visibility | undefined;
|
|
5452
|
-
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
5453
|
-
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
5454
|
-
widows?: csstype.Property.Widows | undefined;
|
|
5455
|
-
width?: csstype.Property.Width<string | 0> | undefined;
|
|
5456
|
-
willChange?: csstype.Property.WillChange | undefined;
|
|
5457
|
-
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
5458
|
-
wordSpacing?: csstype.Property.WordSpacing<string | 0> | undefined;
|
|
5459
|
-
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
5460
|
-
writingMode?: csstype.Property.WritingMode | undefined;
|
|
5461
|
-
x?: csstype.Property.X<string | 0> | undefined;
|
|
5462
|
-
y?: csstype.Property.Y<string | 0> | undefined;
|
|
5463
|
-
zIndex?: csstype.Property.ZIndex | undefined;
|
|
5464
|
-
zoom?: csstype.Property.Zoom | undefined;
|
|
5465
|
-
all?: csstype.Property.All | undefined;
|
|
5466
|
-
animation?: csstype.Property.Animation<string> | undefined;
|
|
5467
|
-
animationRange?: csstype.Property.AnimationRange<string | 0> | undefined;
|
|
5468
|
-
background?: csstype.Property.Background<string | 0> | undefined;
|
|
5469
|
-
backgroundPosition?: csstype.Property.BackgroundPosition<string | 0> | undefined;
|
|
5470
|
-
border?: csstype.Property.Border<string | 0> | undefined;
|
|
5471
|
-
borderBlock?: csstype.Property.BorderBlock<string | 0> | undefined;
|
|
5472
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
5473
|
-
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | 0> | undefined;
|
|
5474
|
-
borderBlockStart?: csstype.Property.BorderBlockStart<string | 0> | undefined;
|
|
5475
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
5476
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | 0> | undefined;
|
|
5477
|
-
borderBottom?: csstype.Property.BorderBottom<string | 0> | undefined;
|
|
5478
|
-
borderColor?: csstype.Property.BorderColor | undefined;
|
|
5479
|
-
borderImage?: csstype.Property.BorderImage | undefined;
|
|
5480
|
-
borderInline?: csstype.Property.BorderInline<string | 0> | undefined;
|
|
5481
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
5482
|
-
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | 0> | undefined;
|
|
5483
|
-
borderInlineStart?: csstype.Property.BorderInlineStart<string | 0> | undefined;
|
|
5484
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
5485
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | 0> | undefined;
|
|
5486
|
-
borderLeft?: csstype.Property.BorderLeft<string | 0> | undefined;
|
|
5487
|
-
borderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5488
|
-
borderRight?: csstype.Property.BorderRight<string | 0> | undefined;
|
|
5489
|
-
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
5490
|
-
borderTop?: csstype.Property.BorderTop<string | 0> | undefined;
|
|
5491
|
-
borderWidth?: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
5492
|
-
caret?: csstype.Property.Caret | undefined;
|
|
5493
|
-
columnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5494
|
-
columns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5495
|
-
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | 0> | undefined;
|
|
5496
|
-
container?: csstype.Property.Container | undefined;
|
|
5497
|
-
flex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5498
|
-
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
5499
|
-
font?: csstype.Property.Font | undefined;
|
|
5500
|
-
gap?: csstype.Property.Gap<string | 0> | undefined;
|
|
5501
|
-
grid?: csstype.Property.Grid | undefined;
|
|
5502
|
-
gridArea?: csstype.Property.GridArea | undefined;
|
|
5503
|
-
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
5504
|
-
gridRow?: csstype.Property.GridRow | undefined;
|
|
5505
|
-
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
5506
|
-
inset?: csstype.Property.Inset<string | 0> | undefined;
|
|
5507
|
-
insetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
5508
|
-
insetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
5509
|
-
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
5510
|
-
listStyle?: csstype.Property.ListStyle | undefined;
|
|
5511
|
-
margin?: csstype.Property.Margin<string | 0> | undefined;
|
|
5512
|
-
marginBlock?: csstype.Property.MarginBlock<string | 0> | undefined;
|
|
5513
|
-
marginInline?: csstype.Property.MarginInline<string | 0> | undefined;
|
|
5514
|
-
mask?: csstype.Property.Mask<string | 0> | undefined;
|
|
5515
|
-
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
5516
|
-
motion?: csstype.Property.Offset<string | 0> | undefined;
|
|
5517
|
-
offset?: csstype.Property.Offset<string | 0> | undefined;
|
|
5518
|
-
outline?: csstype.Property.Outline<string | 0> | undefined;
|
|
5519
|
-
overflow?: csstype.Property.Overflow | undefined;
|
|
5520
|
-
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
5521
|
-
padding?: csstype.Property.Padding<string | 0> | undefined;
|
|
5522
|
-
paddingBlock?: csstype.Property.PaddingBlock<string | 0> | undefined;
|
|
5523
|
-
paddingInline?: csstype.Property.PaddingInline<string | 0> | undefined;
|
|
5524
|
-
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
5525
|
-
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
5526
|
-
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
5527
|
-
positionTry?: csstype.Property.PositionTry | undefined;
|
|
5528
|
-
scrollMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
5529
|
-
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | 0> | undefined;
|
|
5530
|
-
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | 0> | undefined;
|
|
5531
|
-
scrollPadding?: csstype.Property.ScrollPadding<string | 0> | undefined;
|
|
5532
|
-
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | 0> | undefined;
|
|
5533
|
-
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | 0> | undefined;
|
|
5534
|
-
scrollSnapMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
5535
|
-
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
5536
|
-
textDecoration?: csstype.Property.TextDecoration<string | 0> | undefined;
|
|
5537
|
-
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
5538
|
-
textWrap?: csstype.Property.TextWrap | undefined;
|
|
5539
|
-
transition?: csstype.Property.Transition<string> | undefined;
|
|
5540
|
-
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
5541
|
-
MozAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5542
|
-
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5543
|
-
MozAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5544
|
-
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5545
|
-
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5546
|
-
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5547
|
-
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5548
|
-
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5549
|
-
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
5550
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5551
|
-
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
5552
|
-
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
5553
|
-
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
5554
|
-
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
5555
|
-
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
5556
|
-
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
5557
|
-
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
5558
|
-
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
5559
|
-
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
5560
|
-
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
5561
|
-
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5562
|
-
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5563
|
-
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5564
|
-
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5565
|
-
MozColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5566
|
-
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
5567
|
-
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5568
|
-
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
5569
|
-
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
5570
|
-
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5571
|
-
MozMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5572
|
-
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
5573
|
-
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5574
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | 0> | undefined;
|
|
5575
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | 0> | undefined;
|
|
5576
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | 0> | undefined;
|
|
5577
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | 0> | undefined;
|
|
5578
|
-
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5579
|
-
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5580
|
-
MozPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5581
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5582
|
-
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
5583
|
-
MozTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5584
|
-
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
5585
|
-
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5586
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
5587
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5588
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5589
|
-
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
5590
|
-
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
5591
|
-
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
5592
|
-
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
5593
|
-
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
5594
|
-
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
5595
|
-
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
5596
|
-
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
5597
|
-
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
5598
|
-
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
5599
|
-
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
5600
|
-
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
5601
|
-
msFilter?: csstype.Property.MsFilter | undefined;
|
|
5602
|
-
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5603
|
-
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
5604
|
-
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
5605
|
-
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
5606
|
-
msGridColumns?: csstype.Property.MsGridColumns<string | 0> | undefined;
|
|
5607
|
-
msGridRows?: csstype.Property.MsGridRows<string | 0> | undefined;
|
|
5608
|
-
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
5609
|
-
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
5610
|
-
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
5611
|
-
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | 0> | undefined;
|
|
5612
|
-
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
5613
|
-
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
5614
|
-
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5615
|
-
msOrder?: csstype.Property.Order | undefined;
|
|
5616
|
-
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
5617
|
-
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
5618
|
-
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
5619
|
-
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
5620
|
-
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | 0> | undefined;
|
|
5621
|
-
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | 0> | undefined;
|
|
5622
|
-
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | 0> | undefined;
|
|
5623
|
-
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | 0> | undefined;
|
|
5624
|
-
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
5625
|
-
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
5626
|
-
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
5627
|
-
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
5628
|
-
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
5629
|
-
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
5630
|
-
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
5631
|
-
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
5632
|
-
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
5633
|
-
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
5634
|
-
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
5635
|
-
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
5636
|
-
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
5637
|
-
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
5638
|
-
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
5639
|
-
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5640
|
-
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
5641
|
-
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
5642
|
-
msTransform?: csstype.Property.Transform | undefined;
|
|
5643
|
-
msTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5644
|
-
msTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5645
|
-
msTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5646
|
-
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5647
|
-
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5648
|
-
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
5649
|
-
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
5650
|
-
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
5651
|
-
msWrapMargin?: csstype.Property.MsWrapMargin<string | 0> | undefined;
|
|
5652
|
-
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
5653
|
-
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
5654
|
-
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
5655
|
-
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
5656
|
-
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
5657
|
-
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5658
|
-
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5659
|
-
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5660
|
-
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5661
|
-
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5662
|
-
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5663
|
-
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5664
|
-
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5665
|
-
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
5666
|
-
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
5667
|
-
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5668
|
-
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5669
|
-
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5670
|
-
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5671
|
-
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
5672
|
-
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
5673
|
-
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | 0> | undefined;
|
|
5674
|
-
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5675
|
-
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5676
|
-
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
5677
|
-
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5678
|
-
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5679
|
-
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
5680
|
-
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | 0> | undefined;
|
|
5681
|
-
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5682
|
-
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5683
|
-
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
5684
|
-
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
5685
|
-
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
5686
|
-
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5687
|
-
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5688
|
-
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5689
|
-
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
5690
|
-
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5691
|
-
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
5692
|
-
WebkitFlexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
5693
|
-
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5694
|
-
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
5695
|
-
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
5696
|
-
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
5697
|
-
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5698
|
-
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
5699
|
-
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5700
|
-
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
5701
|
-
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
5702
|
-
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
5703
|
-
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
5704
|
-
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
5705
|
-
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5706
|
-
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
5707
|
-
WebkitLogicalHeight?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
5708
|
-
WebkitLogicalWidth?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
5709
|
-
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5710
|
-
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5711
|
-
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
5712
|
-
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
5713
|
-
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
5714
|
-
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
5715
|
-
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
5716
|
-
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
5717
|
-
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
5718
|
-
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
5719
|
-
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
5720
|
-
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
5721
|
-
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | 0> | undefined;
|
|
5722
|
-
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | 0> | undefined;
|
|
5723
|
-
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | 0> | undefined;
|
|
5724
|
-
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
5725
|
-
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
5726
|
-
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
5727
|
-
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | 0> | undefined;
|
|
5728
|
-
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
5729
|
-
WebkitOrder?: csstype.Property.Order | undefined;
|
|
5730
|
-
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
5731
|
-
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5732
|
-
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5733
|
-
WebkitPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5734
|
-
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5735
|
-
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5736
|
-
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
5737
|
-
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
5738
|
-
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
5739
|
-
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
5740
|
-
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
5741
|
-
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5742
|
-
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5743
|
-
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
5744
|
-
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5745
|
-
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
5746
|
-
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
5747
|
-
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
5748
|
-
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
5749
|
-
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
5750
|
-
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5751
|
-
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
5752
|
-
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | 0> | undefined;
|
|
5753
|
-
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
5754
|
-
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
5755
|
-
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
5756
|
-
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5757
|
-
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5758
|
-
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5759
|
-
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5760
|
-
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5761
|
-
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5762
|
-
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
5763
|
-
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
5764
|
-
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
5765
|
-
MozAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5766
|
-
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5767
|
-
MozColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5768
|
-
MozColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5769
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | 0> | undefined;
|
|
5770
|
-
MozTransition?: csstype.Property.Transition<string> | undefined;
|
|
5771
|
-
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
5772
|
-
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
5773
|
-
msFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5774
|
-
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
5775
|
-
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
5776
|
-
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
5777
|
-
msTransition?: csstype.Property.Transition<string> | undefined;
|
|
5778
|
-
WebkitAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5779
|
-
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | 0> | undefined;
|
|
5780
|
-
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5781
|
-
WebkitBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5782
|
-
WebkitColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5783
|
-
WebkitColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5784
|
-
WebkitFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5785
|
-
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
5786
|
-
WebkitMask?: csstype.Property.WebkitMask<string | 0> | undefined;
|
|
5787
|
-
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
5788
|
-
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
5789
|
-
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | 0> | undefined;
|
|
5790
|
-
WebkitTransition?: csstype.Property.Transition<string> | undefined;
|
|
5791
|
-
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5792
|
-
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5793
|
-
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5794
|
-
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5795
|
-
boxLines?: csstype.Property.BoxLines | undefined;
|
|
5796
|
-
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5797
|
-
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5798
|
-
boxPack?: csstype.Property.BoxPack | undefined;
|
|
5799
|
-
clip?: csstype.Property.Clip | undefined;
|
|
5800
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
5801
|
-
gridColumnGap?: csstype.Property.GridColumnGap<string | 0> | undefined;
|
|
5802
|
-
gridGap?: csstype.Property.GridGap<string | 0> | undefined;
|
|
5803
|
-
gridRowGap?: csstype.Property.GridRowGap<string | 0> | undefined;
|
|
5804
|
-
imeMode?: csstype.Property.ImeMode | undefined;
|
|
5805
|
-
insetArea?: csstype.Property.PositionArea | undefined;
|
|
5806
|
-
offsetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
5807
|
-
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
5808
|
-
offsetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
5809
|
-
offsetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
5810
|
-
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
5811
|
-
offsetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
5812
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
5813
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
5814
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
5815
|
-
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
5816
|
-
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | 0> | undefined;
|
|
5817
|
-
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | 0> | undefined;
|
|
5818
|
-
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
5819
|
-
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
5820
|
-
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
5821
|
-
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
5822
|
-
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5823
|
-
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5824
|
-
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5825
|
-
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5826
|
-
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
5827
|
-
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5828
|
-
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5829
|
-
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5830
|
-
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5831
|
-
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
5832
|
-
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
5833
|
-
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5834
|
-
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5835
|
-
MozBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5836
|
-
MozBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5837
|
-
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5838
|
-
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5839
|
-
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5840
|
-
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5841
|
-
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5842
|
-
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5843
|
-
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5844
|
-
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5845
|
-
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5846
|
-
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5847
|
-
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5848
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
5849
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
5850
|
-
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
5851
|
-
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
5852
|
-
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
5853
|
-
MozOutline?: csstype.Property.Outline<string | 0> | undefined;
|
|
5854
|
-
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
5855
|
-
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
5856
|
-
MozOutlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
5857
|
-
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
5858
|
-
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5859
|
-
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5860
|
-
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5861
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5862
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5863
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5864
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5865
|
-
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
5866
|
-
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
5867
|
-
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
5868
|
-
OAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5869
|
-
OAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5870
|
-
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5871
|
-
OAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5872
|
-
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5873
|
-
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5874
|
-
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5875
|
-
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5876
|
-
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5877
|
-
OBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5878
|
-
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5879
|
-
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
5880
|
-
OObjectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
5881
|
-
OTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5882
|
-
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5883
|
-
OTransform?: csstype.Property.Transform | undefined;
|
|
5884
|
-
OTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5885
|
-
OTransition?: csstype.Property.Transition<string> | undefined;
|
|
5886
|
-
OTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5887
|
-
OTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5888
|
-
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5889
|
-
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5890
|
-
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5891
|
-
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5892
|
-
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5893
|
-
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5894
|
-
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
5895
|
-
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5896
|
-
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5897
|
-
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5898
|
-
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
5899
|
-
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
5900
|
-
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
5901
|
-
};
|
|
5902
|
-
hoverStyles: Properties;
|
|
5903
|
-
disabledStyles: Properties;
|
|
5904
|
-
focusRingStyles: Properties;
|
|
5905
|
-
activeStyles: Properties;
|
|
5906
|
-
pressedStyles: Properties;
|
|
5907
|
-
};
|
|
5908
|
-
|
|
5909
|
-
type TextButtonTriggerProps = Pick<ButtonProps, "label" | "variant" | "size" | "icon">;
|
|
5910
|
-
type IconButtonTriggerProps = Pick<IconButtonProps, "icon" | "color" | "compact" | "inc" | "variant">;
|
|
5911
|
-
type AvatarButtonTriggerProps = Pick<AvatarButtonProps, "src" | "name" | "size" | "preventTooltip">;
|
|
5912
|
-
type NavLinkButtonTriggerProps = {
|
|
5913
|
-
navLabel: string;
|
|
5914
|
-
} & Pick<NavLinkProps, "active" | "variant" | "icon">;
|
|
5915
|
-
type OverlayTriggerProps = {
|
|
5916
|
-
trigger: TextButtonTriggerProps | IconButtonTriggerProps | AvatarButtonTriggerProps | NavLinkButtonTriggerProps;
|
|
5917
|
-
/** Defaults to "left" */
|
|
5918
|
-
placement?: "left" | "right";
|
|
5919
|
-
/** Whether the Button is disabled. If a ReactNode, it's treated as a "disabled reason" that's shown in a tooltip. */
|
|
5920
|
-
disabled?: boolean | ReactNode;
|
|
5921
|
-
/** Text to be shown via a tooltip when the user hovers over the button */
|
|
5922
|
-
tooltip?: ReactNode;
|
|
5923
|
-
/** The component to be shown within the overlay */
|
|
5924
|
-
children: ReactElement;
|
|
5925
|
-
/** Props returned by the useMenuTrigger hook to be passed to the button element */
|
|
5926
|
-
menuTriggerProps: AriaButtonProps;
|
|
5927
|
-
/** Ref for the button element */
|
|
5928
|
-
buttonRef: MutableRefObject<HTMLButtonElement | null>;
|
|
5929
|
-
/** Result of the useMenuTriggerState hook */
|
|
5930
|
-
state: MenuTriggerState;
|
|
5931
|
-
/** Prop set the style of the button element */
|
|
5932
|
-
variant?: ButtonVariant;
|
|
5933
|
-
hideEndAdornment?: boolean;
|
|
5934
|
-
showActiveBorder?: boolean;
|
|
5935
|
-
};
|
|
5083
|
+
wasCollapsed(id: string): boolean | undefined;
|
|
5084
|
+
}
|
|
5936
5085
|
|
|
5937
|
-
type
|
|
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
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
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;
|
|
5973
5178
|
};
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
type TagPropsBase<X> = {
|
|
5979
|
-
text: ReactNode;
|
|
5980
|
-
type?: TagType;
|
|
5981
|
-
/** Defaults to "primary". Secondary is intended for use in TagGroup. */
|
|
5982
|
-
variant?: TagVariant;
|
|
5983
|
-
xss?: X;
|
|
5984
|
-
/** A tooltip will automatically be displayed if the text is truncated. Set to true to prevent this behavior.
|
|
5985
|
-
* @default false */
|
|
5986
|
-
preventTooltip?: boolean;
|
|
5179
|
+
type SortState = {
|
|
5180
|
+
current?: ColumnSort;
|
|
5181
|
+
/** The persistent sort is always applied first, i.e. for schedules, probably. */
|
|
5182
|
+
persistent?: ColumnSort;
|
|
5987
5183
|
};
|
|
5988
|
-
|
|
5989
|
-
type TagProps<X> = TagPropsBase<X> & ({
|
|
5990
|
-
iconOnly?: false;
|
|
5991
|
-
icon?: IconKey;
|
|
5992
|
-
} | {
|
|
5993
|
-
iconOnly: true;
|
|
5994
|
-
icon: IconKey;
|
|
5995
|
-
});
|
|
5996
|
-
/** Tag used for indicating a status */
|
|
5997
|
-
declare function Tag<X extends Only<Xss<TagXss>, X>>(props: TagProps<X>): JSX.Element;
|
|
5184
|
+
type SortOn = "client" | "server" | undefined;
|
|
5998
5185
|
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
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>;
|
|
6012
5202
|
/**
|
|
6013
|
-
*
|
|
6014
|
-
*
|
|
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.
|
|
6015
5206
|
*/
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
|
|
6025
|
-
|
|
6026
|
-
|
|
6027
|
-
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
});
|
|
6038
|
-
type CardTitleSlot = CardSlotBase<"title"> & {
|
|
6039
|
-
text: string;
|
|
6040
|
-
};
|
|
6041
|
-
type CardEyebrowSlot = CardSlotBase<"eyebrow"> & {
|
|
6042
|
-
text: string;
|
|
6043
|
-
};
|
|
6044
|
-
type CardBadgeSlot = CardSlotBase<"badge"> & {
|
|
6045
|
-
text: string;
|
|
6046
|
-
tags?: CardBadgeTag[];
|
|
6047
|
-
};
|
|
6048
|
-
type CardStatusSlot = CardSlotBase<"status"> & {
|
|
6049
|
-
tag: CardTag;
|
|
6050
|
-
};
|
|
6051
|
-
type CardDataBlockSlot = CardSlotBase<"dataBlock"> & {
|
|
6052
|
-
label: string;
|
|
6053
|
-
value: ReactNode | string | number;
|
|
6054
|
-
};
|
|
6055
|
-
type CardProgressSlot = CardSlotBase<"progress"> & {
|
|
6056
|
-
value: number;
|
|
6057
|
-
};
|
|
6058
|
-
type CardSlot = CardTitleSlot | CardEyebrowSlot | CardBadgeSlot | CardStatusSlot | CardDataBlockSlot | CardProgressSlot;
|
|
6059
|
-
declare function cardTitleSlot(text: string): CardTitleSlot;
|
|
6060
|
-
declare function cardEyebrowSlot(text: string): CardEyebrowSlot;
|
|
6061
|
-
declare function cardBadgeSlot(text: string, tags?: CardBadgeTag[]): CardBadgeSlot;
|
|
6062
|
-
declare function cardStatusSlot(tag: CardTag): CardStatusSlot;
|
|
6063
|
-
declare function cardDataBlockSlot(props: {
|
|
6064
|
-
label: string;
|
|
6065
|
-
value: ReactNode | string | number;
|
|
6066
|
-
}): CardDataBlockSlot;
|
|
6067
|
-
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
|
+
}
|
|
6068
5228
|
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
|
|
6079
|
-
|
|
6080
|
-
|
|
6081
|
-
|
|
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();
|
|
6082
5340
|
/**
|
|
6083
|
-
*
|
|
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.
|
|
6084
5350
|
*/
|
|
6085
|
-
|
|
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;
|
|
6086
5392
|
};
|
|
5393
|
+
declare function RowImpl<R extends Kinded, S>(props: RowProps<R>): ReactElement;
|
|
6087
5394
|
/**
|
|
6088
|
-
*
|
|
5395
|
+
* Memoizes rows so that re-rendering the table doesn't re-render every single row.
|
|
6089
5396
|
*
|
|
6090
|
-
*
|
|
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.
|
|
6091
5403
|
*/
|
|
6092
|
-
|
|
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
|
+
};
|
|
6093
5411
|
/**
|
|
6094
|
-
*
|
|
6095
|
-
*
|
|
6096
|
-
* 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.
|
|
6097
5413
|
*
|
|
6098
|
-
*
|
|
6099
|
-
*
|
|
5414
|
+
* Each `kind` should contain very little presentation logic, i.e. mostly just off-the-wire data from
|
|
5415
|
+
* a GraphQL query.
|
|
6100
5416
|
*
|
|
6101
|
-
*
|
|
6102
|
-
*
|
|
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.
|
|
6103
5419
|
*/
|
|
6104
|
-
type
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
level: number;
|
|
6111
|
-
expanded: boolean;
|
|
6112
|
-
}) => ReactNode | GridCellContent : (data: undefined, opts: {
|
|
6113
|
-
row: GridRowKind<R, K>;
|
|
6114
|
-
api: GridRowApi<R>;
|
|
6115
|
-
level: number;
|
|
6116
|
-
expanded: boolean;
|
|
6117
|
-
}) => ReactNode | GridCellContent);
|
|
6118
|
-
} & {
|
|
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>[];
|
|
6119
5426
|
/**
|
|
6120
|
-
*
|
|
6121
|
-
*
|
|
6122
|
-
* -
|
|
6123
|
-
*
|
|
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`).
|
|
6124
5433
|
*/
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
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"`.
|
|
6128
5453
|
*/
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
/** The column's default alignment for each cell. */
|
|
6133
|
-
align?: GridCellAlignment;
|
|
6134
|
-
/** Whether the column can be sorted (if client-side sorting). Defaults to true if sorting client-side. */
|
|
6135
|
-
clientSideSort?: boolean;
|
|
6136
|
-
/** This column's sort by value (if server-side sorting). */
|
|
6137
|
-
serverSideSortKey?: string;
|
|
6138
|
-
/** Allows the column to stay in place when the user scrolls horizontally */
|
|
6139
|
-
sticky?: "left" | "right";
|
|
6140
|
-
/** Draws a border on this column's left or right edge for every rendered cell. */
|
|
6141
|
-
border?: GridColumnBorder;
|
|
6142
|
-
/** Prevent column from supporting RowStyle.onClick/rowLink in order to avoid nested interactivity. Defaults to true */
|
|
6143
|
-
wrapAction?: false;
|
|
6144
|
-
/** Used as a signal to defer adding the row's level indentation styling */
|
|
6145
|
-
isAction?: true;
|
|
6146
|
-
/** Injected layout gutter column; excluded from content-column behavior (indent, resize, CSV). */
|
|
6147
|
-
isLayoutGutter?: true;
|
|
6148
|
-
/** Column id that will be used to generate an unique identifier for every row cell */
|
|
6149
|
-
id?: string;
|
|
6150
|
-
/** 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 */
|
|
6151
|
-
name?: string;
|
|
6152
|
-
/** Flag that will allow to know which columns are hide-able */
|
|
6153
|
-
canHide?: boolean;
|
|
6154
|
-
/** Flag that will allow hide-able columns to be hidden on initial load */
|
|
6155
|
-
initHidden?: boolean;
|
|
6156
|
-
/** A list of columns that should only be shown when this column is "expanded" */
|
|
6157
|
-
expandColumns?: GridColumn<R>[] | (() => Promise<GridColumn<R>[]>);
|
|
6158
|
-
/** Determines whether the group should initially be expanded on load of the table */
|
|
6159
|
-
initExpanded?: boolean;
|
|
6160
|
-
/** Determines whether this column should be hidden when expanded (only the 'expandColumns' would show) */
|
|
6161
|
-
hideOnExpand?: boolean;
|
|
6162
|
-
/** Determines whether a column is csv-only or web-only. */
|
|
6163
|
-
showIn?: "csv" | "web";
|
|
6164
|
-
};
|
|
5454
|
+
companion?: GridRowCompanion;
|
|
5455
|
+
} & IfAny<R, AnyObject, DiscriminateUnion<R, "kind", R["kind"]>>;
|
|
5456
|
+
|
|
6165
5457
|
/**
|
|
6166
|
-
*
|
|
5458
|
+
* Allows a caller to ask for the currently shown rows, given the current sorting/filtering.
|
|
6167
5459
|
*
|
|
6168
|
-
*
|
|
6169
|
-
*
|
|
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.
|
|
6170
5462
|
*/
|
|
6171
|
-
type
|
|
6172
|
-
|
|
6173
|
-
|
|
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;
|
|
6174
5475
|
};
|
|
6175
|
-
|
|
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
|
+
|
|
6176
5484
|
/**
|
|
6177
|
-
*
|
|
6178
|
-
*
|
|
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.
|
|
6179
5498
|
*/
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
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>;
|
|
6183
5557
|
};
|
|
6184
|
-
|
|
6185
|
-
type
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
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>>[];
|
|
6190
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
|
+
}
|
|
6191
5603
|
|
|
6192
5604
|
type GridCellValue = number | string | Date | boolean | Temporal.PlainDate | Temporal.ZonedDateTime | null | undefined;
|
|
6193
5605
|
/**
|
|
@@ -6367,562 +5779,1184 @@ declare const condensedStyle: GridStyle;
|
|
|
6367
5779
|
* */
|
|
6368
5780
|
declare const cardStyle: GridStyle;
|
|
6369
5781
|
|
|
6370
|
-
type
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
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;
|
|
6376
5806
|
};
|
|
6377
|
-
|
|
6378
|
-
type GridRowCompanion = CompanionContent | CompanionConfig;
|
|
6379
|
-
|
|
6380
|
-
type ResizedWidths = Record<string, number>;
|
|
6381
|
-
|
|
5807
|
+
declare function PresentationProvider(props: PropsWithChildren<PresentationContextProps>): JSX.Element;
|
|
6382
5808
|
/**
|
|
6383
|
-
*
|
|
6384
|
-
*
|
|
6385
|
-
* This is useful for pages that the user has to go in-out/out-of a lot, and
|
|
6386
|
-
* want it to restore, as much as possible, like their previous visit. Granted,
|
|
6387
|
-
* we try to superdrawer most of these experiences to avoid the user having to
|
|
6388
|
-
* jump off-page.
|
|
5809
|
+
* Label settings for required/optional fields.
|
|
6389
5810
|
*
|
|
6390
|
-
*
|
|
6391
|
-
*
|
|
5811
|
+
* We may want to just hard-code this behavior, so that it's very consistent,
|
|
5812
|
+
* but for now making it configurable.
|
|
6392
5813
|
*/
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
6399
|
-
|
|
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 {
|
|
6400
5828
|
/**
|
|
6401
|
-
*
|
|
5829
|
+
* Whether the interactive element is disabled.
|
|
6402
5830
|
*
|
|
6403
|
-
*
|
|
6404
|
-
* 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.
|
|
6405
5832
|
*/
|
|
6406
|
-
|
|
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;
|
|
6407
5877
|
}
|
|
6408
5878
|
|
|
6409
|
-
type
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
|
|
6421
|
-
|
|
6422
|
-
|
|
6423
|
-
|
|
6424
|
-
|
|
6425
|
-
declare
|
|
6426
|
-
|
|
6427
|
-
|
|
6428
|
-
|
|
6429
|
-
|
|
6430
|
-
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
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;
|
|
6443
5961
|
/**
|
|
6444
|
-
*
|
|
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.
|
|
6445
5964
|
*/
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
/**
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
numberOfExpandedChildren(columnId: string): number;
|
|
6469
|
-
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>;
|
|
6470
5987
|
/**
|
|
6471
|
-
*
|
|
6472
|
-
*
|
|
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.
|
|
6473
5990
|
*/
|
|
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
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
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;
|
|
6506
6868
|
};
|
|
6507
|
-
type SortOn = "client" | "server" | undefined;
|
|
6508
|
-
|
|
6509
|
-
/**
|
|
6510
|
-
* Manages our tree of observable RowStates that manage each GridDataRow's behavior.
|
|
6511
|
-
*/
|
|
6512
|
-
declare class RowStates<R extends Kinded> {
|
|
6513
|
-
private map;
|
|
6514
|
-
readonly table: TableState<R>;
|
|
6515
|
-
readonly storage: RowStorage<R>;
|
|
6516
|
-
private readonly header;
|
|
6517
|
-
private keptGroupRow;
|
|
6518
|
-
/** The first level of rows, i.e. not the header (or kept group), but the totals + top-level children. */
|
|
6519
|
-
private topRows;
|
|
6520
|
-
constructor(table: TableState<R>);
|
|
6521
|
-
/** Returns a flat list of all of our RowStates. */
|
|
6522
|
-
get allStates(): RowState<R>[];
|
|
6523
|
-
/** Returns the `RowState` for the given `id`. We should probably require `kind`. */
|
|
6524
|
-
get(id: string): RowState<R>;
|
|
6525
|
-
/**
|
|
6526
|
-
* Merge a new set of `rows` prop into our state.
|
|
6527
|
-
*
|
|
6528
|
-
* Any missing rows are marked as `wasRemoved` so we can consider them "kept" if they're also selected.
|
|
6529
|
-
*/
|
|
6530
|
-
setRows(rows: GridDataRow<R>[]): void;
|
|
6531
|
-
/** Fully delete `ids`, so they don't show up in kept rows anymore. */
|
|
6532
|
-
delete(ids: string[]): void;
|
|
6533
|
-
/** Implements special collapse behavior, which is just the header's collapse/uncollapse. */
|
|
6534
|
-
toggleCollapsed(id: string): void;
|
|
6535
|
-
get visibleRows(): RowState<R>[];
|
|
6536
|
-
/** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
|
|
6537
|
-
get keptRows(): RowState<R>[];
|
|
6538
|
-
get collapsedRows(): RowState<R>[];
|
|
6539
|
-
/**
|
|
6540
|
-
* Returns rows pinned to the top at runtime.
|
|
6541
|
-
*
|
|
6542
|
-
* Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
|
|
6543
|
-
* current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
|
|
6544
|
-
*/
|
|
6545
|
-
get pinnedRows(): RowState<R>[];
|
|
6546
|
-
private createHeaderRow;
|
|
6547
|
-
/** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
|
|
6548
|
-
private createKeptGroupRow;
|
|
6549
|
-
maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
|
|
6550
|
-
}
|
|
6551
6869
|
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
*/
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
/**
|
|
6567
|
-
|
|
6568
|
-
/**
|
|
6569
|
-
|
|
6570
|
-
/**
|
|
6571
|
-
|
|
6572
|
-
/**
|
|
6573
|
-
|
|
6574
|
-
/**
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
* at which point this would become `"top" | "bottom"`.
|
|
6580
|
-
*/
|
|
6581
|
-
pinned: boolean;
|
|
6582
|
-
/** Whether we are dragged over. */
|
|
6583
|
-
isDraggedOver: DraggedOver;
|
|
6584
|
-
/**
|
|
6585
|
-
* Whether our `row` had been in `props.rows`, but then removed _while being
|
|
6586
|
-
* selected_, i.e. potentially by server-side filters.
|
|
6587
|
-
*
|
|
6588
|
-
* We have had a large foot-gun where users "select a row", change the filters,
|
|
6589
|
-
* the row disappears (filtered out), and the user clicks "Go!", but the table
|
|
6590
|
-
* thinks their previously-selected row is gone (b/c it's not in view), and
|
|
6591
|
-
* then the row is inappropriately deleted/unassociated/etc. (b/c in the user's
|
|
6592
|
-
* head, it is "still selected").
|
|
6593
|
-
*
|
|
6594
|
-
* To avoid this, we by default keep selected rows, as "kept rows", to make
|
|
6595
|
-
* extra sure the user wants them to go away.
|
|
6596
|
-
*
|
|
6597
|
-
* Soft-deleted rows are rows that were removed from `props.rows` (i.e. we
|
|
6598
|
-
* suspect are just hidden by a changed server-side-filter), and hard-deleted
|
|
6599
|
-
* rows are rows the page called `api.deleteRow` and confirmed it should be
|
|
6600
|
-
* actively removed.
|
|
6601
|
-
*/
|
|
6602
|
-
removed: false | "soft" | "hard";
|
|
6603
|
-
private isCalculatingDirectMatch;
|
|
6604
|
-
constructor(states: RowStates<R>, parent: RowState<R> | undefined, row: GridDataRow<R>);
|
|
6605
|
-
/** Returns a stable-ish row identity that will only change if our `data` changes. */
|
|
6606
|
-
get row(): GridDataRow<R>;
|
|
6607
|
-
/** Accepts a new unstable row, i.e. each `createRows` creates a new row literal. */
|
|
6608
|
-
set row(row: GridDataRow<R>);
|
|
6609
|
-
/**
|
|
6610
|
-
* Whether we match a client-side filter; true if no filter is in place.
|
|
6611
|
-
*
|
|
6612
|
-
* We should try and keep this based solely on "does/does not match the filter",
|
|
6613
|
-
* and do any overrides for things like pinning/kept rows/etc. elsewhere.
|
|
6614
|
-
*/
|
|
6615
|
-
get isMatched(): boolean;
|
|
6616
|
-
/**
|
|
6617
|
-
* Whether we are effectively selected, for `GridTableApi.getSelectedRows`.
|
|
6618
|
-
*
|
|
6619
|
-
* Note that we don't use "I'm selected || my parent is selected" logic here, because whether a child is selected
|
|
6620
|
-
* is actually based on whether it was _visible at the time the parent was selected_. So, we can't just assume
|
|
6621
|
-
* "a parent being selected means the child is also selected", and instead parents have to push selected-ness down
|
|
6622
|
-
* to their visible children explicitly.
|
|
6623
|
-
*/
|
|
6624
|
-
get isSelected(): boolean;
|
|
6625
|
-
/** The UI state for checked/unchecked + "partially checked" for parents. */
|
|
6626
|
-
get selectedState(): SelectedState;
|
|
6627
|
-
/**
|
|
6628
|
-
* A special SelectedState that "sees through"/ignores inferSelectedState, so the header works.
|
|
6629
|
-
*
|
|
6630
|
-
* I.e. a row might have `inferSelectedState: false`, so is showing unchecked, but the header
|
|
6631
|
-
* wants to show partial-ness whenever any given child is selected.
|
|
6632
|
-
*/
|
|
6633
|
-
get selectedStateForHeader(): SelectedState;
|
|
6634
|
-
/**
|
|
6635
|
-
* Called to explicitly select/unselect this row.
|
|
6636
|
-
*
|
|
6637
|
-
* This could be either because the user clicked directly on us, or because we're a visible
|
|
6638
|
-
* child of a selected parent row.
|
|
6639
|
-
*/
|
|
6640
|
-
select(selected: boolean): void;
|
|
6641
|
-
/** Marks the row as removed from `props.rows`, to potentially become kept. */
|
|
6642
|
-
markRemoved(): void;
|
|
6643
|
-
toggleCollapsed(): void;
|
|
6644
|
-
/** Pin/unpin this row at runtime. */
|
|
6645
|
-
setPinned(pinned: boolean): void;
|
|
6646
|
-
/** Toggle this row's runtime pin. */
|
|
6647
|
-
togglePinned(): void;
|
|
6648
|
-
/** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
|
|
6649
|
-
get isKept(): boolean;
|
|
6650
|
-
get isLastKeptRow(): boolean;
|
|
6651
|
-
get key(): string;
|
|
6652
|
-
get kind(): string;
|
|
6653
|
-
get isActive(): boolean;
|
|
6654
|
-
get level(): number;
|
|
6655
|
-
private get inferSelectedState();
|
|
6656
|
-
/** Returns this row and, if we're not collapsed, our children. */
|
|
6657
|
-
get selfAndMaybeChildren(): RowState<R>[];
|
|
6658
|
-
private get visibleChildren();
|
|
6659
|
-
private get visibleDirectlyMatchedChildren();
|
|
6660
|
-
/** The `visibleChildren`, but with the current sort config applied. */
|
|
6661
|
-
private get visibleSortedChildren();
|
|
6662
|
-
private get hasSelectableChildren();
|
|
6663
|
-
/**
|
|
6664
|
-
* Returns whether this row should act like a parent.
|
|
6665
|
-
*
|
|
6666
|
-
* This means "has children" and "does not have inferSelectedState: false"
|
|
6667
|
-
* set. I.e. `inferSelectedState: false` allows a parent with children to
|
|
6668
|
-
* still act as its own selectable identity.
|
|
6669
|
-
*
|
|
6670
|
-
* We also check `children.length > 0`, because sometimes pages will calc a
|
|
6671
|
-
* row's children as `children = someList.map(...)`, and if the list is empty,
|
|
6672
|
-
* they want the row to be selectable.
|
|
6673
|
-
*/
|
|
6674
|
-
private get isParent();
|
|
6675
|
-
/**
|
|
6676
|
-
* Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
|
|
6677
|
-
*
|
|
6678
|
-
* Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
|
|
6679
|
-
* (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
|
|
6680
|
-
*/
|
|
6681
|
-
private get isAlwaysVisible();
|
|
6682
|
-
get api(): GridRowApi<R>;
|
|
6683
|
-
get isReservedKind(): boolean;
|
|
6684
|
-
/** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
|
|
6685
|
-
private get hasDirectlyMatchedChildren();
|
|
6686
|
-
/** A dedicated method to "looking up" recursively, to avoid loops in `isMatched`. */
|
|
6687
|
-
private get hasDirectlyMatchedParent();
|
|
6688
|
-
private get isDirectlyMatched();
|
|
6689
|
-
}
|
|
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;
|
|
6896
|
+
};
|
|
6690
6897
|
|
|
6691
|
-
type
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
onDrop?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
6713
|
-
onDragEnter?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
6714
|
-
onDragOver?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
|
|
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;
|
|
6715
6919
|
};
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
* Memoizes rows so that re-rendering the table doesn't re-render every single row.
|
|
6719
|
-
*
|
|
6720
|
-
* We used to have a custom `propsAreEqual` method that would only compare `props.rows`
|
|
6721
|
-
* on the `data` attribute, b/c our `createRows` methods do not create stable row identities;
|
|
6722
|
-
* i.e. if one row changes, they all change.
|
|
6723
|
-
*
|
|
6724
|
-
* However, now RowState.row synthesizes a `row` that only reactively changes when
|
|
6725
|
-
* that row's `data` explicitly changes, so we no longer need a custom `propsAreEqual` here.
|
|
6726
|
-
*/
|
|
6727
|
-
declare const Row: typeof RowImpl;
|
|
6728
|
-
/** A specific kind of row, including the GridDataRow props. */
|
|
6729
|
-
type GridRowKind<R extends Kinded, P extends R["kind"]> = DiscriminateUnion<R, "kind", P> & {
|
|
6730
|
-
id: string;
|
|
6731
|
-
children: GridDataRow<R>[];
|
|
6732
|
-
selectable?: false;
|
|
6920
|
+
type IconMenuItemType = MenuItemBase & {
|
|
6921
|
+
icon: IconProps["icon"];
|
|
6733
6922
|
};
|
|
6734
|
-
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
* a GraphQL query.
|
|
6739
|
-
*
|
|
6740
|
-
* The presentation concerns instead mainly live in each GridColumn definition, which will format/render
|
|
6741
|
-
* each kind's data for that specific row+column (i.e. cell) combination.
|
|
6742
|
-
*/
|
|
6743
|
-
type GridDataRow<R extends Kinded> = {
|
|
6744
|
-
kind: R["kind"];
|
|
6745
|
-
/** Combined with the `kind` to determine a table wide React key. */
|
|
6746
|
-
id: string;
|
|
6747
|
-
/** A list of parent/grand-parent ids for collapsing parent/child rows. */
|
|
6748
|
-
children?: GridDataRow<R>[];
|
|
6749
|
-
/**
|
|
6750
|
-
* Forces this row to sort to the first/last of its parent's children.
|
|
6751
|
-
*
|
|
6752
|
-
* By default, fixed-sorted rows are always shown/not filtered out; providing the
|
|
6753
|
-
* `filter: true` property allows them to be hidden while filtering. This is the
|
|
6754
|
-
* in-group ordering override, distinct from the runtime sticky "pin to top" feature
|
|
6755
|
-
* (`api.pinRow` / `pinColumn`).
|
|
6756
|
-
*/
|
|
6757
|
-
fixedSort?: "first" | "last" | FixedSort;
|
|
6758
|
-
data: unknown;
|
|
6759
|
-
/** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
|
|
6760
|
-
initCollapsed?: boolean;
|
|
6761
|
-
/** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
|
|
6762
|
-
initSelected?: boolean;
|
|
6763
|
-
/** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
|
|
6764
|
-
initPinned?: boolean;
|
|
6765
|
-
/** Whether row can be selected */
|
|
6766
|
-
selectable?: false;
|
|
6767
|
-
/** Whether this row should infer its selected state based on its children's selected state */
|
|
6768
|
-
inferSelectedState?: false;
|
|
6769
|
-
/** Whether this row is draggable, usually to allow drag & drop reordering of rows */
|
|
6770
|
-
draggable?: boolean;
|
|
6771
|
-
/** Image src for the row, to be used for card view */
|
|
6772
|
-
imgSrc?: string;
|
|
6773
|
-
/**
|
|
6774
|
-
* Full-width content rendered with this row (no separator between them).
|
|
6775
|
-
* Plain content / render fn defaults to `"trailing"`; use `{ position, content }` for `"leading"`.
|
|
6776
|
-
*/
|
|
6777
|
-
companion?: GridRowCompanion;
|
|
6778
|
-
} & IfAny<R, AnyObject, DiscriminateUnion<R, "kind", R["kind"]>>;
|
|
6779
|
-
|
|
6780
|
-
/**
|
|
6781
|
-
* Allows a caller to ask for the currently shown rows, given the current sorting/filtering.
|
|
6782
|
-
*
|
|
6783
|
-
* We will probably end up generalizing this into a GridTableApi that exposes more
|
|
6784
|
-
* actions i.e. scrolling to a row and selection state.
|
|
6785
|
-
*/
|
|
6786
|
-
type GridRowLookup<R extends Kinded> = {
|
|
6787
|
-
/** Returns both the immediate next/prev rows, as well as `[kind].next/prev` values, ignoring headers. */
|
|
6788
|
-
lookup(row: GridDataRow<R>, additionalFilter?: (row: GridDataRow<R>) => boolean): NextPrev<R> & {
|
|
6789
|
-
[P in R["kind"]]: NextPrev<DiscriminateUnion<R, "kind", P>>;
|
|
6790
|
-
};
|
|
6791
|
-
/** Returns the list of currently filtered/sorted rows, without headers. */
|
|
6792
|
-
currentList(): readonly GridDataRow<R>[];
|
|
6793
|
-
/**
|
|
6794
|
-
* Scroll's to the row with the given kind + id. Requires using `as=virtual`.
|
|
6795
|
-
* Will skip re-scrolling to a row if it's already visible.
|
|
6796
|
-
*/
|
|
6797
|
-
scrollTo(kind: R["kind"], id: string): void;
|
|
6923
|
+
type ImageMenuItemType = MenuItemBase & {
|
|
6924
|
+
src: string;
|
|
6925
|
+
size?: 24 | 48;
|
|
6926
|
+
isAvatar?: boolean;
|
|
6798
6927
|
};
|
|
6799
|
-
type
|
|
6800
|
-
|
|
6801
|
-
|
|
6928
|
+
type DividerMenuItemType = MenuItemBase & {
|
|
6929
|
+
hasDivider: boolean;
|
|
6930
|
+
};
|
|
6931
|
+
type MenuItem = MenuItemBase | IconMenuItemType | ImageMenuItemType | DividerMenuItemType;
|
|
6932
|
+
type MenuSection = MenuItem & {
|
|
6933
|
+
items?: MenuItem[];
|
|
6802
6934
|
};
|
|
6803
|
-
declare function createRowLookup<R extends Kinded>(api: GridTableApiImpl<R>, virtuosoRef: MutableRefObject<VirtuosoHandle | null>, virtuosoRangeRef: MutableRefObject<ListRange | null>): GridRowLookup<R>;
|
|
6804
|
-
/** Optionally takes into consideration if a row is already in view before attempting to scroll to it. */
|
|
6805
|
-
declare function shouldSkipScrollTo(index: number, virtuosoRangeRef: MutableRefObject<ListRange | null>): boolean;
|
|
6806
6935
|
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
* has run.
|
|
6821
|
-
*/
|
|
6822
|
-
declare function useGridTableApi<R extends Kinded>(): GridTableApi<R>;
|
|
6823
|
-
/** Provides an imperative API for an application page to interact with the table. */
|
|
6824
|
-
type GridTableApi<R extends Kinded> = {
|
|
6825
|
-
/** Scrolls row `index` into view; only supported with `as=virtual` and after a `useEffect`.
|
|
6826
|
-
*
|
|
6827
|
-
* 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.
|
|
6828
|
-
* */
|
|
6829
|
-
scrollToIndex(index: GridTableScrollOptions): void;
|
|
6830
|
-
/** Returns the currently-visible rows. */
|
|
6831
|
-
getVisibleRows(): GridDataRow<R>[];
|
|
6832
|
-
/** Returns the currently-visible rows of the given `kind`. */
|
|
6833
|
-
getVisibleRows<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6834
|
-
/** Returns the ids of currently-selected rows. */
|
|
6835
|
-
getSelectedRowIds(): string[];
|
|
6836
|
-
getSelectedRowIds<K extends R["kind"]>(kind: K): string[];
|
|
6837
|
-
/** Returns the currently-selected rows. */
|
|
6838
|
-
getSelectedRows(): GridDataRow<R>[];
|
|
6839
|
-
/** Returns the currently-selected rows of the given `kind`. */
|
|
6840
|
-
getSelectedRows<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6841
|
-
/** Set selected state of a row by id. */
|
|
6842
|
-
selectRow(id: string, selected?: boolean): void;
|
|
6843
|
-
/** De-selects all selected rows. */
|
|
6844
|
-
clearSelections(): void;
|
|
6845
|
-
/** Whether a row is currently collapsed. */
|
|
6846
|
-
isCollapsedRow(id: string): boolean;
|
|
6847
|
-
/** Toggle collapse state of a row by id. */
|
|
6848
|
-
toggleCollapsedRow(id: string): void;
|
|
6849
|
-
/** Whether a row is currently pinned to the top. */
|
|
6850
|
-
isPinnedRow(id: string): boolean;
|
|
6851
|
-
/** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
|
|
6852
|
-
pinRow(id: string): void;
|
|
6853
|
-
/** Removes a row's runtime pin. */
|
|
6854
|
-
unpinRow(id: string): void;
|
|
6855
|
-
/** Toggles a row's runtime pinned state. */
|
|
6856
|
-
togglePinnedRow(id: string): void;
|
|
6857
|
-
/** Returns the ids of currently pinned rows. */
|
|
6858
|
-
getPinnedRowIds(): string[];
|
|
6859
|
-
/** Sets the internal state of 'activeRowId' */
|
|
6860
|
-
setActiveRowId(id: string | undefined): void;
|
|
6861
|
-
/** Sets the internal state of 'activeCellId' */
|
|
6862
|
-
setActiveCellId(id: string | undefined): void;
|
|
6863
|
-
/** Deletes a row from the table, i.e. so it's not detected as kept. */
|
|
6864
|
-
deleteRows(ids: string[]): void;
|
|
6865
|
-
getVisibleColumnIds(): string[];
|
|
6866
|
-
setVisibleColumns(ids: string[]): void;
|
|
6867
|
-
resetColumnWidths(): void;
|
|
6868
|
-
/**
|
|
6869
|
-
* Triggers the table's current content to be downloaded as a CSV file.
|
|
6870
|
-
*
|
|
6871
|
-
* This currently assumes client-side pagination/sorting, i.e. we have the full dataset in memory.
|
|
6872
|
-
*/
|
|
6873
|
-
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;
|
|
6874
6949
|
/**
|
|
6875
|
-
*
|
|
6876
|
-
*
|
|
6877
|
-
* 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.
|
|
6878
6952
|
*/
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
getVisibleChildren<K extends R["kind"]>(kind: K): GridDataRow<DiscriminateUnion<R, "kind", K>>[];
|
|
6885
|
-
getSelectedChildren(): GridDataRow<R>[];
|
|
6886
|
-
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;
|
|
6887
6958
|
};
|
|
6888
|
-
declare
|
|
6889
|
-
readonly tableState: TableState<R>;
|
|
6890
|
-
virtuosoRef: MutableRefObject<VirtuosoHandle | null>;
|
|
6891
|
-
virtuosoRangeRef: MutableRefObject<ListRange | null>;
|
|
6892
|
-
lookup: GridRowLookup<R>;
|
|
6893
|
-
resetColumnWidthsFn?: () => void;
|
|
6894
|
-
constructor();
|
|
6895
|
-
/** Called once by the GridTable when it takes ownership of this api instance. */
|
|
6896
|
-
init(persistCollapse: string | undefined, virtuosoRef: MutableRefObject<VirtuosoHandle | null>, virtuosoRangeRef: MutableRefObject<ListRange | null>): void;
|
|
6897
|
-
scrollToIndex(indexOrOptions: GridTableScrollOptions): void;
|
|
6898
|
-
getSelectedRowIds(kind?: string): string[];
|
|
6899
|
-
private getSelectedRowIdsImpl;
|
|
6900
|
-
getSelectedRows(kind?: string): any;
|
|
6901
|
-
private getSelectedRowsImpl;
|
|
6902
|
-
getVisibleRows(kind?: string): any;
|
|
6903
|
-
private getVisibleRowsImpl;
|
|
6904
|
-
getVisibleRowIds(kind?: string): any;
|
|
6905
|
-
private getVisibleRowIdsImpl;
|
|
6906
|
-
clearSelections(id?: string): void;
|
|
6907
|
-
setActiveRowId(id: string | undefined): void;
|
|
6908
|
-
setActiveCellId(id: string | undefined): void;
|
|
6909
|
-
selectRow(id: string, selected?: boolean): void;
|
|
6910
|
-
toggleCollapsedRow(id: string): void;
|
|
6911
|
-
isCollapsedRow(id: string): boolean;
|
|
6912
|
-
isPinnedRow(id: string): boolean;
|
|
6913
|
-
pinRow(id: string): void;
|
|
6914
|
-
unpinRow(id: string): void;
|
|
6915
|
-
togglePinnedRow(id: string): void;
|
|
6916
|
-
getPinnedRowIds(): string[];
|
|
6917
|
-
private getPinnedRowIdsImpl;
|
|
6918
|
-
setVisibleColumns(ids: string[]): void;
|
|
6919
|
-
getVisibleColumnIds(): string[];
|
|
6920
|
-
resetColumnWidths(): void;
|
|
6921
|
-
deleteRows(ids: string[]): void;
|
|
6922
|
-
downloadToCsv(fileName: string): void;
|
|
6923
|
-
copyToClipboard(): Promise<void>;
|
|
6924
|
-
generateCsvContent(): string[];
|
|
6925
|
-
}
|
|
6959
|
+
declare function Card(props: CardProps): JSX.Element;
|
|
6926
6960
|
|
|
6927
6961
|
/** Structured empty state shown in place of a GridTable when there are no data rows. */
|
|
6928
6962
|
type GridTableEmptyStateProps = {
|
|
@@ -7079,6 +7113,10 @@ type GridTableProps<R extends Kinded, X> = {
|
|
|
7079
7113
|
disableColumnResizing?: boolean;
|
|
7080
7114
|
/** Injects fixed left/right gutter columns when inside a document-scroll layout. */
|
|
7081
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;
|
|
7082
7120
|
};
|
|
7083
7121
|
/**
|
|
7084
7122
|
* Renders data in our table layout.
|
|
@@ -7747,6 +7785,26 @@ type ButtonModalProps = {
|
|
|
7747
7785
|
} & Pick<OverlayTriggerProps, "trigger" | "placement" | "disabled" | "tooltip" | "showActiveBorder">;
|
|
7748
7786
|
declare function ButtonModal(props: ButtonModalProps): JSX.Element;
|
|
7749
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
|
+
|
|
7750
7808
|
/** Must match the `contrast` theme axis in tokens and `[data-theme="contrast"]` in `src/css/generated/theme-scopes.css`. */
|
|
7751
7809
|
declare const contrastDataTheme: "contrast";
|
|
7752
7810
|
/**
|
|
@@ -8991,10 +9049,17 @@ type HeaderAction = ({
|
|
|
8991
9049
|
} & Omit<IconButtonProps, "variant">);
|
|
8992
9050
|
|
|
8993
9051
|
type ContentHeaderXss = Xss<Padding>;
|
|
9052
|
+
type ContentHeaderLevel = 2 | 3 | 4;
|
|
8994
9053
|
type ContentHeaderProps<X = ContentHeaderXss> = {
|
|
8995
9054
|
title?: string;
|
|
8996
9055
|
description?: ReactNode;
|
|
8997
9056
|
actions?: HeaderAction[];
|
|
9057
|
+
/** When true, prepends `AutoSaveIndicator` in the actions area. */
|
|
9058
|
+
withAutoSave?: boolean;
|
|
9059
|
+
/** Heading tag and size. `2` = `h2`/`xl` (default); `3` = `h3`/`lg`; `4` = `h4`/`mdSb`. Never `h1`. */
|
|
9060
|
+
level?: ContentHeaderLevel;
|
|
9061
|
+
/** Rendered before the title, e.g. a drag handle on `FormSectionChild`. */
|
|
9062
|
+
startAdornment?: ReactNode;
|
|
8998
9063
|
/** Style overrides for padding. */
|
|
8999
9064
|
xss?: X;
|
|
9000
9065
|
};
|
|
@@ -9388,19 +9453,12 @@ type ReorderableFormSectionChild = FormSectionChildBase & {
|
|
|
9388
9453
|
orderField: FieldState<number | null | undefined>;
|
|
9389
9454
|
};
|
|
9390
9455
|
|
|
9391
|
-
/**
|
|
9392
|
-
|
|
9393
|
-
* Uses `kind` rather than `type` since `ButtonProps` already has its own `type` (button/submit/reset).
|
|
9394
|
-
*/
|
|
9395
|
-
type FormSectionAction = ({
|
|
9396
|
-
kind?: "default";
|
|
9397
|
-
} & ButtonProps) | ({
|
|
9398
|
-
kind: "icon";
|
|
9399
|
-
} & Omit<IconButtonProps, "variant">);
|
|
9456
|
+
/** @see {@link HeaderAction} */
|
|
9457
|
+
type FormSectionAction = HeaderAction;
|
|
9400
9458
|
type FormSectionProps = {
|
|
9401
9459
|
title: string;
|
|
9402
9460
|
description?: ReactNode;
|
|
9403
|
-
actions?:
|
|
9461
|
+
actions?: HeaderAction[];
|
|
9404
9462
|
fields?: ReactNode;
|
|
9405
9463
|
childSections?: PlainFormSectionChild[] | ReorderableFormSectionChild[];
|
|
9406
9464
|
};
|
|
@@ -10361,7 +10419,7 @@ type FormSectionLayoutProps = {
|
|
|
10361
10419
|
/** Rendered before form sections. Useful in forms that only need the main form title, or for form fields that shape the context of a form beforehand. */
|
|
10362
10420
|
initialFields?: ReactNode;
|
|
10363
10421
|
/** Rendered top-right of the title row, e.g. an "Add items" Button. */
|
|
10364
|
-
actions?:
|
|
10422
|
+
actions?: HeaderAction[];
|
|
10365
10423
|
/** When true, prepends `AutoSaveIndicator` in the actions area. */
|
|
10366
10424
|
withAutoSave?: boolean;
|
|
10367
10425
|
sections?: FormSectionProps[];
|
|
@@ -10572,4 +10630,4 @@ declare const zIndices: {
|
|
|
10572
10630
|
};
|
|
10573
10631
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
10574
10632
|
|
|
10575
|
-
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 ContentHeaderLevel, 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 };
|