@octavius2929-personal/design-system 0.12.0 → 0.14.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 +646 -430
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +76 -272
- package/dist/index.d.ts +76 -272
- package/dist/index.js +550 -336
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -814,10 +814,12 @@ type Sprinkles = Parameters<typeof sprinkles>[0];
|
|
|
814
814
|
|
|
815
815
|
type ContainerOwnProps<E extends ElementType> = Sprinkles & {
|
|
816
816
|
as?: E;
|
|
817
|
+
/** Segmento de contexto para el data-testid. */
|
|
818
|
+
testId?: string;
|
|
817
819
|
};
|
|
818
820
|
type ContainerProps<E extends ElementType = "div"> = ContainerOwnProps<E> & Omit<ComponentPropsWithoutRef<E>, "className" | "style" | "color" | keyof ContainerOwnProps<E>>;
|
|
819
821
|
|
|
820
|
-
declare function ContainerImpl<E extends ElementType = "div">({ as, ...props }: ContainerProps<E>, ref: Ref<Element>): react.JSX.Element;
|
|
822
|
+
declare function ContainerImpl<E extends ElementType = "div">({ as, testId, ...props }: ContainerProps<E>, ref: Ref<Element>): react.JSX.Element;
|
|
821
823
|
declare const Container: <E extends ElementType = "div">(props: ContainerProps<E> & {
|
|
822
824
|
ref?: Ref<Element>;
|
|
823
825
|
}) => ReturnType<typeof ContainerImpl>;
|
|
@@ -830,10 +832,12 @@ type TypographyOwnProps<E extends ElementType> = {
|
|
|
830
832
|
as?: E;
|
|
831
833
|
color?: TypographyColor;
|
|
832
834
|
align?: TypographyAlign;
|
|
835
|
+
/** Segmento de contexto para el data-testid. */
|
|
836
|
+
testId?: string;
|
|
833
837
|
};
|
|
834
838
|
type TypographyProps<E extends ElementType = "span"> = TypographyOwnProps<E> & Omit<ComponentPropsWithoutRef<E>, "className" | "style" | "color" | keyof TypographyOwnProps<E>>;
|
|
835
839
|
|
|
836
|
-
declare function TypographyInner<E extends ElementType = "span">({ variant, as, color, align, ...rest }: TypographyProps<E>, ref: Ref<HTMLElement>): react.JSX.Element;
|
|
840
|
+
declare function TypographyInner<E extends ElementType = "span">({ variant, as, color, align, testId, ...rest }: TypographyProps<E>, ref: Ref<HTMLElement>): react.JSX.Element;
|
|
837
841
|
declare const Typography: <E extends ElementType = "span">(props: TypographyProps<E> & {
|
|
838
842
|
ref?: Ref<HTMLElement>;
|
|
839
843
|
}) => ReturnType<typeof TypographyInner>;
|
|
@@ -856,6 +860,8 @@ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
856
860
|
startIcon?: Icon;
|
|
857
861
|
endIcon?: Icon;
|
|
858
862
|
full?: boolean;
|
|
863
|
+
/** Segmento de contexto para el data-testid (no es un override del id completo). */
|
|
864
|
+
testId?: string;
|
|
859
865
|
}
|
|
860
866
|
|
|
861
867
|
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
@@ -863,6 +869,8 @@ declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAtt
|
|
|
863
869
|
interface DividerProps extends Omit<HTMLAttributes<HTMLDivElement>, "className"> {
|
|
864
870
|
vertical?: boolean;
|
|
865
871
|
label?: ReactNode;
|
|
872
|
+
/** Segmento de contexto para el data-testid. */
|
|
873
|
+
testId?: string;
|
|
866
874
|
}
|
|
867
875
|
|
|
868
876
|
declare const Divider: react.ForwardRefExoticComponent<DividerProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -871,6 +879,8 @@ type AvatarSize = "sm" | "md" | "lg";
|
|
|
871
879
|
interface AvatarProps extends HTMLAttributes<HTMLSpanElement> {
|
|
872
880
|
size?: AvatarSize;
|
|
873
881
|
filled?: boolean;
|
|
882
|
+
/** Segmento de contexto para el data-testid. */
|
|
883
|
+
testId?: string;
|
|
874
884
|
}
|
|
875
885
|
|
|
876
886
|
declare const Avatar: react.ForwardRefExoticComponent<AvatarProps & react.RefAttributes<HTMLSpanElement>>;
|
|
@@ -879,6 +889,8 @@ type BadgeTone = "ink" | "accent";
|
|
|
879
889
|
interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
880
890
|
count?: number;
|
|
881
891
|
tone?: BadgeTone;
|
|
892
|
+
/** Segmento de contexto para el data-testid. */
|
|
893
|
+
testId?: string;
|
|
882
894
|
}
|
|
883
895
|
|
|
884
896
|
declare const Badge: react.ForwardRefExoticComponent<BadgeProps & react.RefAttributes<HTMLSpanElement>>;
|
|
@@ -888,6 +900,8 @@ interface ProgressProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
888
900
|
variant?: ProgressVariant;
|
|
889
901
|
value?: number;
|
|
890
902
|
size?: number;
|
|
903
|
+
/** Segmento de contexto para el data-testid. */
|
|
904
|
+
testId?: string;
|
|
891
905
|
}
|
|
892
906
|
|
|
893
907
|
declare const Progress: react.ForwardRefExoticComponent<ProgressProps & react.RefAttributes<HTMLElement>>;
|
|
@@ -897,6 +911,8 @@ interface ChipProps extends Omit<HTMLAttributes<HTMLSpanElement>, "className"> {
|
|
|
897
911
|
selected?: boolean;
|
|
898
912
|
tone?: ChipTone;
|
|
899
913
|
onDelete?: () => void;
|
|
914
|
+
/** Segmento de contexto para el data-testid. */
|
|
915
|
+
testId?: string;
|
|
900
916
|
}
|
|
901
917
|
|
|
902
918
|
declare const Chip: react.ForwardRefExoticComponent<ChipProps & react.RefAttributes<HTMLSpanElement>>;
|
|
@@ -907,6 +923,8 @@ interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onC
|
|
|
907
923
|
label?: ReactNode;
|
|
908
924
|
disabled?: boolean;
|
|
909
925
|
id?: string;
|
|
926
|
+
/** Segmento de contexto para el data-testid. */
|
|
927
|
+
testId?: string;
|
|
910
928
|
}
|
|
911
929
|
|
|
912
930
|
declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -918,6 +936,8 @@ interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChan
|
|
|
918
936
|
name?: string;
|
|
919
937
|
value?: string;
|
|
920
938
|
disabled?: boolean;
|
|
939
|
+
/** Segmento de contexto para el data-testid. */
|
|
940
|
+
testId?: string;
|
|
921
941
|
}
|
|
922
942
|
|
|
923
943
|
declare const Radio: react.ForwardRefExoticComponent<RadioProps & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -927,6 +947,8 @@ interface SwitchProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onCha
|
|
|
927
947
|
onChange?: (checked: boolean) => void;
|
|
928
948
|
label?: ReactNode;
|
|
929
949
|
disabled?: boolean;
|
|
950
|
+
/** Segmento de contexto para el data-testid. */
|
|
951
|
+
testId?: string;
|
|
930
952
|
}
|
|
931
953
|
|
|
932
954
|
declare const Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -940,6 +962,8 @@ interface TextFieldProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "on
|
|
|
940
962
|
multiline?: boolean;
|
|
941
963
|
rows?: number;
|
|
942
964
|
onChange?: (value: string) => void;
|
|
965
|
+
/** Segmento de contexto para el data-testid. */
|
|
966
|
+
testId?: string;
|
|
943
967
|
}
|
|
944
968
|
|
|
945
969
|
declare const TextField: react.ForwardRefExoticComponent<TextFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -979,12 +1003,17 @@ interface IconButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>,
|
|
|
979
1003
|
active?: boolean;
|
|
980
1004
|
tone?: IconButtonTone;
|
|
981
1005
|
title: string;
|
|
1006
|
+
/** Segmento de contexto para el data-testid. */
|
|
1007
|
+
testId?: string;
|
|
982
1008
|
}
|
|
983
1009
|
|
|
984
1010
|
declare const IconButton: react.ForwardRefExoticComponent<IconButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
985
1011
|
|
|
986
1012
|
type DivProps = Omit<HTMLAttributes<HTMLDivElement>, "className">;
|
|
987
|
-
|
|
1013
|
+
interface CardProps extends DivProps {
|
|
1014
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1015
|
+
testId?: string;
|
|
1016
|
+
}
|
|
988
1017
|
type CardSectionProps = DivProps;
|
|
989
1018
|
|
|
990
1019
|
declare function CardHeader({ children, ...rest }: CardSectionProps): react.JSX.Element;
|
|
@@ -999,273 +1028,7 @@ declare function CardFooter({ children, ...rest }: CardSectionProps): react.JSX.
|
|
|
999
1028
|
declare namespace CardFooter {
|
|
1000
1029
|
var displayName: string;
|
|
1001
1030
|
}
|
|
1002
|
-
declare const Card: react.ForwardRefExoticComponent<{
|
|
1003
|
-
color?: string | undefined | undefined;
|
|
1004
|
-
content?: string | undefined | undefined;
|
|
1005
|
-
translate?: "yes" | "no" | undefined | undefined;
|
|
1006
|
-
hidden?: boolean | undefined | undefined;
|
|
1007
|
-
style?: react.CSSProperties | undefined;
|
|
1008
|
-
slot?: string | undefined | undefined;
|
|
1009
|
-
title?: string | undefined | undefined;
|
|
1010
|
-
defaultChecked?: boolean | undefined | undefined;
|
|
1011
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
1012
|
-
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
1013
|
-
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
1014
|
-
accessKey?: string | undefined | undefined;
|
|
1015
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
1016
|
-
autoFocus?: boolean | undefined | undefined;
|
|
1017
|
-
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
1018
|
-
contextMenu?: string | undefined | undefined;
|
|
1019
|
-
dir?: string | undefined | undefined;
|
|
1020
|
-
draggable?: (boolean | "false" | "true") | undefined;
|
|
1021
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
1022
|
-
id?: string | undefined | undefined;
|
|
1023
|
-
lang?: string | undefined | undefined;
|
|
1024
|
-
nonce?: string | undefined | undefined;
|
|
1025
|
-
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
1026
|
-
tabIndex?: number | undefined | undefined;
|
|
1027
|
-
radioGroup?: string | undefined | undefined;
|
|
1028
|
-
role?: react.AriaRole | undefined;
|
|
1029
|
-
about?: string | undefined | undefined;
|
|
1030
|
-
datatype?: string | undefined | undefined;
|
|
1031
|
-
inlist?: any;
|
|
1032
|
-
prefix?: string | undefined | undefined;
|
|
1033
|
-
property?: string | undefined | undefined;
|
|
1034
|
-
rel?: string | undefined | undefined;
|
|
1035
|
-
resource?: string | undefined | undefined;
|
|
1036
|
-
rev?: string | undefined | undefined;
|
|
1037
|
-
typeof?: string | undefined | undefined;
|
|
1038
|
-
vocab?: string | undefined | undefined;
|
|
1039
|
-
autoCorrect?: string | undefined | undefined;
|
|
1040
|
-
autoSave?: string | undefined | undefined;
|
|
1041
|
-
itemProp?: string | undefined | undefined;
|
|
1042
|
-
itemScope?: boolean | undefined | undefined;
|
|
1043
|
-
itemType?: string | undefined | undefined;
|
|
1044
|
-
itemID?: string | undefined | undefined;
|
|
1045
|
-
itemRef?: string | undefined | undefined;
|
|
1046
|
-
results?: number | undefined | undefined;
|
|
1047
|
-
security?: string | undefined | undefined;
|
|
1048
|
-
unselectable?: "on" | "off" | undefined | undefined;
|
|
1049
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
1050
|
-
is?: string | undefined | undefined;
|
|
1051
|
-
exportparts?: string | undefined | undefined;
|
|
1052
|
-
part?: string | undefined | undefined;
|
|
1053
|
-
"aria-activedescendant"?: string | undefined | undefined;
|
|
1054
|
-
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1055
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
1056
|
-
"aria-braillelabel"?: string | undefined | undefined;
|
|
1057
|
-
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
1058
|
-
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1059
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
1060
|
-
"aria-colcount"?: number | undefined | undefined;
|
|
1061
|
-
"aria-colindex"?: number | undefined | undefined;
|
|
1062
|
-
"aria-colindextext"?: string | undefined | undefined;
|
|
1063
|
-
"aria-colspan"?: number | undefined | undefined;
|
|
1064
|
-
"aria-controls"?: string | undefined | undefined;
|
|
1065
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
1066
|
-
"aria-describedby"?: string | undefined | undefined;
|
|
1067
|
-
"aria-description"?: string | undefined | undefined;
|
|
1068
|
-
"aria-details"?: string | undefined | undefined;
|
|
1069
|
-
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1070
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
1071
|
-
"aria-errormessage"?: string | undefined | undefined;
|
|
1072
|
-
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1073
|
-
"aria-flowto"?: string | undefined | undefined;
|
|
1074
|
-
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
1075
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
1076
|
-
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
1077
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
1078
|
-
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
1079
|
-
"aria-label"?: string | undefined | undefined;
|
|
1080
|
-
"aria-labelledby"?: string | undefined | undefined;
|
|
1081
|
-
"aria-level"?: number | undefined | undefined;
|
|
1082
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
1083
|
-
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
1084
|
-
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
1085
|
-
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
1086
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
1087
|
-
"aria-owns"?: string | undefined | undefined;
|
|
1088
|
-
"aria-placeholder"?: string | undefined | undefined;
|
|
1089
|
-
"aria-posinset"?: number | undefined | undefined;
|
|
1090
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
1091
|
-
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
1092
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
1093
|
-
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
1094
|
-
"aria-roledescription"?: string | undefined | undefined;
|
|
1095
|
-
"aria-rowcount"?: number | undefined | undefined;
|
|
1096
|
-
"aria-rowindex"?: number | undefined | undefined;
|
|
1097
|
-
"aria-rowindextext"?: string | undefined | undefined;
|
|
1098
|
-
"aria-rowspan"?: number | undefined | undefined;
|
|
1099
|
-
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
1100
|
-
"aria-setsize"?: number | undefined | undefined;
|
|
1101
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
1102
|
-
"aria-valuemax"?: number | undefined | undefined;
|
|
1103
|
-
"aria-valuemin"?: number | undefined | undefined;
|
|
1104
|
-
"aria-valuenow"?: number | undefined | undefined;
|
|
1105
|
-
"aria-valuetext"?: string | undefined | undefined;
|
|
1106
|
-
children?: react.ReactNode;
|
|
1107
|
-
dangerouslySetInnerHTML?: {
|
|
1108
|
-
__html: string | TrustedHTML;
|
|
1109
|
-
} | undefined | undefined;
|
|
1110
|
-
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1111
|
-
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1112
|
-
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1113
|
-
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1114
|
-
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1115
|
-
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1116
|
-
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1117
|
-
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1118
|
-
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1119
|
-
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1120
|
-
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1121
|
-
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1122
|
-
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1123
|
-
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1124
|
-
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1125
|
-
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1126
|
-
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1127
|
-
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1128
|
-
onBeforeInput?: react.InputEventHandler<HTMLDivElement> | undefined;
|
|
1129
|
-
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1130
|
-
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1131
|
-
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1132
|
-
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1133
|
-
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1134
|
-
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1135
|
-
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1136
|
-
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1137
|
-
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1138
|
-
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1139
|
-
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1140
|
-
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1141
|
-
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1142
|
-
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1143
|
-
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1144
|
-
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1145
|
-
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1146
|
-
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1147
|
-
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1148
|
-
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1149
|
-
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1150
|
-
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1151
|
-
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1152
|
-
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1153
|
-
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1154
|
-
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1155
|
-
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1156
|
-
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1157
|
-
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1158
|
-
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1159
|
-
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1160
|
-
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1161
|
-
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1162
|
-
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1163
|
-
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1164
|
-
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1165
|
-
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1166
|
-
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1167
|
-
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1168
|
-
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1169
|
-
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1170
|
-
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1171
|
-
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1172
|
-
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1173
|
-
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1174
|
-
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1175
|
-
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1176
|
-
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1177
|
-
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1178
|
-
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1179
|
-
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1180
|
-
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1181
|
-
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1182
|
-
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1183
|
-
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1184
|
-
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1185
|
-
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1186
|
-
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1187
|
-
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1188
|
-
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1189
|
-
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1190
|
-
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1191
|
-
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1192
|
-
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1193
|
-
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1194
|
-
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1195
|
-
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1196
|
-
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1197
|
-
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1198
|
-
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1199
|
-
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1200
|
-
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1201
|
-
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1202
|
-
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1203
|
-
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1204
|
-
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1205
|
-
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1206
|
-
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1207
|
-
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1208
|
-
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1209
|
-
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1210
|
-
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1211
|
-
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1212
|
-
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1213
|
-
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1214
|
-
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1215
|
-
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1216
|
-
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1217
|
-
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1218
|
-
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1219
|
-
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1220
|
-
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1221
|
-
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1222
|
-
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1223
|
-
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1224
|
-
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1225
|
-
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1226
|
-
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1227
|
-
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1228
|
-
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1229
|
-
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1230
|
-
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1231
|
-
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1232
|
-
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1233
|
-
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1234
|
-
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1235
|
-
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1236
|
-
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1237
|
-
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1238
|
-
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1239
|
-
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1240
|
-
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1241
|
-
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1242
|
-
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1243
|
-
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1244
|
-
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1245
|
-
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1246
|
-
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1247
|
-
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1248
|
-
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1249
|
-
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1250
|
-
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1251
|
-
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1252
|
-
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1253
|
-
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1254
|
-
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1255
|
-
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1256
|
-
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1257
|
-
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1258
|
-
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1259
|
-
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1260
|
-
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1261
|
-
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1262
|
-
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1263
|
-
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1264
|
-
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1265
|
-
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1266
|
-
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1267
|
-
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1268
|
-
} & react.RefAttributes<HTMLDivElement>> & {
|
|
1031
|
+
declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>> & {
|
|
1269
1032
|
Header: typeof CardHeader;
|
|
1270
1033
|
Body: typeof CardBody;
|
|
1271
1034
|
Footer: typeof CardFooter;
|
|
@@ -1276,6 +1039,8 @@ interface AlertProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
|
1276
1039
|
severity?: AlertSeverity;
|
|
1277
1040
|
title?: ReactNode;
|
|
1278
1041
|
icon?: Icon;
|
|
1042
|
+
/** testId de la instancia: compone `feedback__<contexto>__<testId>`. */
|
|
1043
|
+
testId?: string;
|
|
1279
1044
|
}
|
|
1280
1045
|
|
|
1281
1046
|
declare const Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1285,6 +1050,8 @@ interface TooltipProps {
|
|
|
1285
1050
|
label: ReactNode;
|
|
1286
1051
|
children: ReactElement;
|
|
1287
1052
|
placement?: TooltipPlacement;
|
|
1053
|
+
/** testId de la instancia: compone `feedback__<contexto>__<testId>`. */
|
|
1054
|
+
testId?: string;
|
|
1288
1055
|
}
|
|
1289
1056
|
|
|
1290
1057
|
declare const Tooltip: react.ForwardRefExoticComponent<TooltipProps & react.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1326,6 +1093,8 @@ interface AccordionProps {
|
|
|
1326
1093
|
multiple?: boolean;
|
|
1327
1094
|
defaultOpen?: string[];
|
|
1328
1095
|
className?: string;
|
|
1096
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1097
|
+
testId?: string;
|
|
1329
1098
|
}
|
|
1330
1099
|
|
|
1331
1100
|
declare const Accordion: react.ForwardRefExoticComponent<AccordionProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1336,6 +1105,8 @@ interface Crumb {
|
|
|
1336
1105
|
}
|
|
1337
1106
|
interface BreadcrumbsProps extends HTMLAttributes<HTMLElement> {
|
|
1338
1107
|
items: Crumb[];
|
|
1108
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1109
|
+
testId?: string;
|
|
1339
1110
|
}
|
|
1340
1111
|
|
|
1341
1112
|
declare const Breadcrumbs: react.ForwardRefExoticComponent<BreadcrumbsProps & react.RefAttributes<HTMLElement>>;
|
|
@@ -1345,6 +1116,8 @@ interface PaginationProps extends Omit<HTMLAttributes<HTMLElement>, "className"
|
|
|
1345
1116
|
page?: number;
|
|
1346
1117
|
onChange?: (page: number) => void;
|
|
1347
1118
|
siblingCount?: number;
|
|
1119
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1120
|
+
testId?: string;
|
|
1348
1121
|
}
|
|
1349
1122
|
|
|
1350
1123
|
declare const Pagination: react.ForwardRefExoticComponent<PaginationProps & react.RefAttributes<HTMLElement>>;
|
|
@@ -1355,6 +1128,8 @@ interface Step {
|
|
|
1355
1128
|
interface StepperProps extends HTMLAttributes<HTMLDivElement> {
|
|
1356
1129
|
steps: Step[];
|
|
1357
1130
|
active?: number;
|
|
1131
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1132
|
+
testId?: string;
|
|
1358
1133
|
}
|
|
1359
1134
|
|
|
1360
1135
|
declare const Stepper: react.ForwardRefExoticComponent<StepperProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1369,6 +1144,8 @@ interface TabsProps extends Omit<HTMLAttributes<HTMLDivElement>, "className" | "
|
|
|
1369
1144
|
items: TabItem[];
|
|
1370
1145
|
value?: string;
|
|
1371
1146
|
onChange?: (value: string) => void;
|
|
1147
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1148
|
+
testId?: string;
|
|
1372
1149
|
}
|
|
1373
1150
|
|
|
1374
1151
|
declare const Tabs: react.ForwardRefExoticComponent<TabsProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1381,6 +1158,8 @@ interface MenuItemDef {
|
|
|
1381
1158
|
interface MenuProps {
|
|
1382
1159
|
trigger: ReactElement;
|
|
1383
1160
|
items: MenuItemDef[];
|
|
1161
|
+
/** Segmento de contexto para el data-testid. */
|
|
1162
|
+
testId?: string;
|
|
1384
1163
|
}
|
|
1385
1164
|
|
|
1386
1165
|
declare const Menu: react.ForwardRefExoticComponent<MenuProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1391,6 +1170,8 @@ interface DialogProps {
|
|
|
1391
1170
|
title?: ReactNode;
|
|
1392
1171
|
actions?: ReactNode;
|
|
1393
1172
|
children?: ReactNode;
|
|
1173
|
+
/** Segmento de contexto para el data-testid. */
|
|
1174
|
+
testId?: string;
|
|
1394
1175
|
}
|
|
1395
1176
|
|
|
1396
1177
|
declare const Dialog: react.ForwardRefExoticComponent<DialogProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1400,6 +1181,8 @@ interface SnackbarProps {
|
|
|
1400
1181
|
message: ReactNode;
|
|
1401
1182
|
action?: ReactNode;
|
|
1402
1183
|
onClose?: () => void;
|
|
1184
|
+
/** testId de la instancia: compone `feedback__<contexto>__<testId>`. */
|
|
1185
|
+
testId?: string;
|
|
1403
1186
|
}
|
|
1404
1187
|
|
|
1405
1188
|
declare const Snackbar: react.ForwardRefExoticComponent<SnackbarProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1416,9 +1199,11 @@ interface TableProps<Row extends Record<string, unknown>> extends TableHTMLAttri
|
|
|
1416
1199
|
getRowKey?: (row: Row, index: number) => string | number;
|
|
1417
1200
|
/** Título accesible de la tabla (`<caption>`). Recomendado para lectores de pantalla. */
|
|
1418
1201
|
caption?: ReactNode;
|
|
1202
|
+
/** testId de la instancia: compone `list__<contexto>__<testId>`. */
|
|
1203
|
+
testId?: string;
|
|
1419
1204
|
}
|
|
1420
1205
|
|
|
1421
|
-
declare function TableInner<Row extends Record<string, unknown>>({ columns, rows, getRowKey, className, caption, ...rest }: TableProps<Row>, ref: Ref<HTMLTableElement>): react.JSX.Element;
|
|
1206
|
+
declare function TableInner<Row extends Record<string, unknown>>({ columns, rows, getRowKey, className, caption, testId, ...rest }: TableProps<Row>, ref: Ref<HTMLTableElement>): react.JSX.Element;
|
|
1422
1207
|
declare const Table: <Row extends Record<string, unknown>>(props: TableProps<Row> & {
|
|
1423
1208
|
ref?: Ref<HTMLTableElement>;
|
|
1424
1209
|
}) => ReturnType<typeof TableInner>;
|
|
@@ -1426,6 +1211,8 @@ declare const Table: <Row extends Record<string, unknown>>(props: TableProps<Row
|
|
|
1426
1211
|
interface AppBarProps extends HTMLAttributes<HTMLElement> {
|
|
1427
1212
|
brand?: ReactNode;
|
|
1428
1213
|
actions?: ReactNode;
|
|
1214
|
+
/** testId de la instancia (segmento hoja); compone con el contexto de TestIdProvider. */
|
|
1215
|
+
testId?: string;
|
|
1429
1216
|
}
|
|
1430
1217
|
|
|
1431
1218
|
declare const AppBar: react.ForwardRefExoticComponent<AppBarProps & react.RefAttributes<HTMLElement>>;
|
|
@@ -1434,6 +1221,8 @@ interface ListItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1434
1221
|
leading?: ReactNode;
|
|
1435
1222
|
trailing?: ReactNode;
|
|
1436
1223
|
selected?: boolean;
|
|
1224
|
+
/** testId de la instancia: compone `list__<contexto>__<testId>`. */
|
|
1225
|
+
testId?: string;
|
|
1437
1226
|
}
|
|
1438
1227
|
|
|
1439
1228
|
declare const ListItem: react.ForwardRefExoticComponent<ListItemProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -1499,4 +1288,19 @@ interface ThemeProviderProps {
|
|
|
1499
1288
|
declare function ThemeProvider({ children, defaultSchema, defaultMode, storageKey, persist, }: ThemeProviderProps): react.JSX.Element;
|
|
1500
1289
|
declare function useTheme(): ThemeContextValue;
|
|
1501
1290
|
|
|
1502
|
-
|
|
1291
|
+
interface TestIdProviderProps {
|
|
1292
|
+
/** Segmento de contexto que este provider agrega a la cadena (ej. "checkout"). */
|
|
1293
|
+
context: string;
|
|
1294
|
+
children: ReactNode;
|
|
1295
|
+
}
|
|
1296
|
+
declare function TestIdProvider({ context, children }: TestIdProviderProps): react.JSX.Element;
|
|
1297
|
+
|
|
1298
|
+
interface TestIdHandle {
|
|
1299
|
+
/** data-testid del nodo root: `<tipo>__<...contexto>__<ownTestId>`. */
|
|
1300
|
+
testId: string;
|
|
1301
|
+
/** Deriva el id de un slot interno: `<testId>__<slot>`. */
|
|
1302
|
+
slot: (name: string) => string;
|
|
1303
|
+
}
|
|
1304
|
+
declare function useTestId(type: string, ownTestId?: string): TestIdHandle;
|
|
1305
|
+
|
|
1306
|
+
export { Accordion, type AccordionItem, type AccordionProps, Alert, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, type ColorTokens, Container, type ContainerProps, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, EyeIcon, EyeOffIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, InfoIcon, ListItem, type ListItemProps, Menu, type MenuItemDef, type MenuProps, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoreHorizontalIcon, Pagination, type PaginationProps, PasswordField, type PasswordFieldProps, PlusIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, Slider, type SliderProps, Snackbar, type SnackbarProps, type Step, Stepper, type StepperProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, Tooltip, type TooltipPlacement, type TooltipProps, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, XIcon, colorVars, modeNames, schemaNames, text, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
|