@dhasdk/simple-ui 1.0.52 → 1.0.54
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/README.md +72 -9
- package/index.css +1 -1
- package/index.js +19 -19
- package/index.mjs +2210 -2097
- package/lib/Accordion.d.ts +4 -0
- package/lib/AppointmentPicker.d.ts +4 -1
- package/lib/Badge.d.ts +3 -0
- package/lib/Breadcrumbs.d.ts +1 -1
- package/lib/Button.d.ts +1 -0
- package/lib/ButtonGroup.d.ts +1 -0
- package/lib/Card.d.ts +3 -0
- package/lib/CharacterCounter.d.ts +3 -1
- package/lib/CheckBox.d.ts +3 -1
- package/lib/DatePicker.d.ts +4 -1
- package/lib/ExpandableText.d.ts +3 -1
- package/lib/Input.d.ts +2 -0
- package/lib/List.d.ts +2 -1
- package/lib/Modal.d.ts +4 -1
- package/lib/Pill.d.ts +1 -0
- package/lib/ProgressBar.d.ts +3 -0
- package/lib/RadioGroup.d.ts +1 -0
- package/lib/Search.d.ts +2 -0
- package/lib/SectionHeader.d.ts +1 -0
- package/lib/Select.d.ts +4 -1
- package/lib/Shield.d.ts +1 -0
- package/lib/SideBarNav.d.ts +3 -1
- package/lib/Skeleton.d.ts +2 -0
- package/lib/Slider.d.ts +2 -0
- package/lib/Status.d.ts +2 -0
- package/lib/Tabs.d.ts +3 -1
- package/lib/Toggle.d.ts +1 -0
- package/lib/Tooltip.d.ts +2 -0
- package/package.json +1 -1
package/lib/Accordion.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ export interface AccordionProps extends HTMLAttributes<HTMLButtonElement> {
|
|
|
16
16
|
hr?: boolean;
|
|
17
17
|
classNameHr?: string;
|
|
18
18
|
useBackground?: boolean;
|
|
19
|
+
dataTestId?: string;
|
|
20
|
+
dataTestIdLabel?: string;
|
|
21
|
+
dataTestIdBody?: string;
|
|
19
22
|
}
|
|
20
23
|
export declare const Accordion: import('react').ForwardRefExoticComponent<AccordionProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
21
24
|
export interface AccordionParentProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -31,6 +34,7 @@ export interface AccordionParentProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
31
34
|
hr?: boolean;
|
|
32
35
|
classNameHr?: string;
|
|
33
36
|
useBackground?: boolean;
|
|
37
|
+
dataTestId?: string;
|
|
34
38
|
}
|
|
35
39
|
export declare const AccordionParent: import('react').ForwardRefExoticComponent<AccordionParentProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
36
40
|
export {};
|
|
@@ -15,7 +15,10 @@ export interface AppointmentPickerProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
15
15
|
optionsLabel?: string;
|
|
16
16
|
width?: string;
|
|
17
17
|
setSelectedOption?: (param: string) => void;
|
|
18
|
+
dataTestId?: string;
|
|
19
|
+
dataTestIdButton?: string;
|
|
20
|
+
dataTestIdList?: string;
|
|
18
21
|
}
|
|
19
22
|
export declare const generateOptions: (interval: Interval, timeFormat: AppointmentPickerProps["timeFormat"], hourRange?: [number, number]) => Option[];
|
|
20
|
-
export declare const AppointmentPicker: ({ className, classNameContainer, interval, timeFormat, hourRange, label, optionsLabel, variant, setSelectedOption, width, ...props }: AppointmentPickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare const AppointmentPicker: ({ className, classNameContainer, interval, timeFormat, hourRange, label, optionsLabel, variant, setSelectedOption, width, dataTestId, dataTestIdButton, dataTestIdList, ...props }: AppointmentPickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
24
|
export {};
|
package/lib/Badge.d.ts
CHANGED
|
@@ -7,5 +7,8 @@ export interface BadgeProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
7
7
|
icon?: ReactNode;
|
|
8
8
|
iconAlt?: string;
|
|
9
9
|
children: ReactNode;
|
|
10
|
+
dataTestId?: string;
|
|
11
|
+
dataTestIdIcon?: string;
|
|
12
|
+
dataTestIdContent?: string;
|
|
10
13
|
}
|
|
11
14
|
export declare const Badge: import('react').ForwardRefExoticComponent<BadgeProps & import('react').RefAttributes<HTMLDivElement>>;
|
package/lib/Breadcrumbs.d.ts
CHANGED
|
@@ -6,12 +6,12 @@ export interface route {
|
|
|
6
6
|
export interface BreadcrumbsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
7
7
|
className?: string;
|
|
8
8
|
classNameContainer?: string;
|
|
9
|
-
classNameIcon?: string;
|
|
10
9
|
classNameIconHome?: string;
|
|
11
10
|
classNameFinal?: string;
|
|
12
11
|
classNameIconSeparator?: string;
|
|
13
12
|
variant?: string;
|
|
14
13
|
separator?: string;
|
|
15
14
|
routes?: route[];
|
|
15
|
+
dataTestIdNav?: string;
|
|
16
16
|
}
|
|
17
17
|
export declare const Breadcrumbs: React.ForwardRefExoticComponent<BreadcrumbsProps & React.RefAttributes<HTMLDivElement>>;
|
package/lib/Button.d.ts
CHANGED
|
@@ -16,5 +16,6 @@ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
16
16
|
type?: "button" | "submit" | "reset";
|
|
17
17
|
selected?: boolean;
|
|
18
18
|
classNameSelected?: string;
|
|
19
|
+
dataTestId?: string;
|
|
19
20
|
}
|
|
20
21
|
export declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
package/lib/ButtonGroup.d.ts
CHANGED
|
@@ -4,5 +4,6 @@ export interface ButtonGroupProps extends ButtonHTMLAttributes<HTMLButtonElement
|
|
|
4
4
|
className?: string;
|
|
5
5
|
classNameButtons?: string;
|
|
6
6
|
variant?: string;
|
|
7
|
+
dataTestId?: string;
|
|
7
8
|
}
|
|
8
9
|
export declare const ButtonGroup: import('react').ForwardRefExoticComponent<ButtonGroupProps & import('react').RefAttributes<HTMLDivElement>>;
|
package/lib/Card.d.ts
CHANGED
|
@@ -7,5 +7,8 @@ export interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
7
7
|
imageInset?: boolean;
|
|
8
8
|
alt: string;
|
|
9
9
|
ariaLabel?: string;
|
|
10
|
+
dataTestIdContainer?: string;
|
|
11
|
+
dataTestIdImage?: string;
|
|
12
|
+
dataTestIdChildren?: string;
|
|
10
13
|
}
|
|
11
14
|
export declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -7,5 +7,7 @@ export interface CharacterCounterProps {
|
|
|
7
7
|
classNameOverLimitMessage?: string;
|
|
8
8
|
altRemainingMessageText?: string;
|
|
9
9
|
altOverageMessageText?: string;
|
|
10
|
+
dataTestId?: string;
|
|
11
|
+
dataTestIdMessage?: string;
|
|
10
12
|
}
|
|
11
|
-
export declare const CharacterCounter: ({ className, classNameMessage, classNameOverLimitMessage, maxCharacters, children, altRemainingMessageText, altOverageMessageText, }: CharacterCounterProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const CharacterCounter: ({ className, classNameMessage, classNameOverLimitMessage, maxCharacters, children, altRemainingMessageText, altOverageMessageText, dataTestId, dataTestIdMessage, }: CharacterCounterProps) => import("react/jsx-runtime").JSX.Element;
|
package/lib/CheckBox.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export interface CheckBoxGroupProps {
|
|
|
8
8
|
showBranch?: boolean;
|
|
9
9
|
onChange?: (status: StatusType, name?: string) => void;
|
|
10
10
|
name?: string;
|
|
11
|
+
testDataId?: string;
|
|
11
12
|
}
|
|
12
13
|
type StatusType = 'checked' | 'unchecked' | 'indeterminate';
|
|
13
14
|
type IconType = 'sibling' | 'sibling-child' | 'child' | 'blank';
|
|
@@ -28,7 +29,8 @@ export interface CheckBoxProps extends Omit<InputHTMLAttributes<HTMLInputElement
|
|
|
28
29
|
status?: StatusType;
|
|
29
30
|
onChange?: (status: StatusType, name?: string) => void;
|
|
30
31
|
setStatusUpdate?: (status: StatusType, index: number) => void;
|
|
32
|
+
testDataId?: string;
|
|
31
33
|
}
|
|
32
|
-
export declare function CheckBoxGroup({ children, bridgeParent, fill, icon, marker, showBranch, onChange }: CheckBoxGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
export declare function CheckBoxGroup({ children, bridgeParent, fill, testDataId, icon, marker, showBranch, onChange }: CheckBoxGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
33
35
|
export declare const CheckBox: React.ForwardRefExoticComponent<CheckBoxProps & React.RefAttributes<HTMLInputElement>>;
|
|
34
36
|
export {};
|
package/lib/DatePicker.d.ts
CHANGED
|
@@ -3,5 +3,8 @@ export interface DatePickerProps {
|
|
|
3
3
|
label: string;
|
|
4
4
|
value?: string;
|
|
5
5
|
onChange: (date: string) => void | null;
|
|
6
|
+
dataTestId?: string;
|
|
7
|
+
dataTestIdInput?: string;
|
|
8
|
+
dataTestIdExpanded?: string;
|
|
6
9
|
}
|
|
7
|
-
export declare const DatePicker: ({ id, label, value, onChange }: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const DatePicker: ({ id, label, value, dataTestId, dataTestIdExpanded, dataTestIdInput, onChange }: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
package/lib/ExpandableText.d.ts
CHANGED
|
@@ -8,5 +8,7 @@ export interface ExpandableTextProps {
|
|
|
8
8
|
collapseText?: string;
|
|
9
9
|
className?: string;
|
|
10
10
|
clickHandler?: (expanded: boolean) => void;
|
|
11
|
+
dataTestId?: string;
|
|
12
|
+
dataTestIdButton?: string;
|
|
11
13
|
}
|
|
12
|
-
export declare const ExpandableText: ({ children, initialChars, buttonText, classNameMoreButton, classNameCollapseButton, collapseButton, collapseText, className, clickHandler, }: ExpandableTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const ExpandableText: ({ children, initialChars, buttonText, classNameMoreButton, classNameCollapseButton, collapseButton, collapseText, className, dataTestId, dataTestIdButton, clickHandler, }: ExpandableTextProps) => import("react/jsx-runtime").JSX.Element;
|
package/lib/Input.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
11
11
|
error?: boolean;
|
|
12
12
|
mask?: string;
|
|
13
13
|
disabled?: boolean;
|
|
14
|
+
dataTestId?: string;
|
|
15
|
+
dataTestIdLabel?: string;
|
|
14
16
|
}
|
|
15
17
|
declare const Input: import('react').ForwardRefExoticComponent<InputProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
16
18
|
export { Input };
|
package/lib/List.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export interface ListProps {
|
|
|
17
17
|
isAlphabetical?: boolean;
|
|
18
18
|
isRomanNumeral?: boolean;
|
|
19
19
|
isInline?: boolean;
|
|
20
|
+
testDataId?: string;
|
|
20
21
|
}
|
|
21
|
-
export declare const List: ({ items, header, className, classNameItem, children, withDividers, classNameDividerColor, isDecimal, isDisc, isAlphabetical, isRomanNumeral, isInline, }: ListProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export declare const List: ({ items, header, className, classNameItem, children, withDividers, classNameDividerColor, isDecimal, isDisc, isAlphabetical, isRomanNumeral, isInline, testDataId, }: ListProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
export declare const ListItem: ({ className, children }: ListItemProps) => import("react/jsx-runtime").JSX.Element;
|
package/lib/Modal.d.ts
CHANGED
|
@@ -14,5 +14,8 @@ export interface AccessibleModalProps {
|
|
|
14
14
|
continueButton?: boolean;
|
|
15
15
|
continueButtonText?: string;
|
|
16
16
|
continueButtonHandler?: () => void;
|
|
17
|
+
dataTestId?: string;
|
|
18
|
+
dataTestIdTitle?: string;
|
|
19
|
+
dataTestIdBody?: string;
|
|
17
20
|
}
|
|
18
|
-
export declare const Modal: ({ isOpen, variant, onClose, title, className, closeButton, clickOutsideCloses, displayClosingX, closeButtonText, continueButton, continueButtonHandler, continueButtonText, blurLevel, children }: AccessibleModalProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
21
|
+
export declare const Modal: ({ isOpen, variant, onClose, title, className, closeButton, clickOutsideCloses, displayClosingX, closeButtonText, continueButton, continueButtonHandler, continueButtonText, blurLevel, dataTestId, dataTestIdBody, dataTestIdTitle, children }: AccessibleModalProps) => import("react/jsx-runtime").JSX.Element | null;
|
package/lib/Pill.d.ts
CHANGED
|
@@ -9,5 +9,6 @@ export interface PillProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
9
9
|
onClick?: () => void;
|
|
10
10
|
selected?: boolean;
|
|
11
11
|
disabled?: boolean;
|
|
12
|
+
dataTestId?: string;
|
|
12
13
|
}
|
|
13
14
|
export declare const Pill: import('react').ForwardRefExoticComponent<PillProps & import('react').RefAttributes<HTMLButtonElement>>;
|
package/lib/ProgressBar.d.ts
CHANGED
|
@@ -9,6 +9,9 @@ export interface ProgressBarProps {
|
|
|
9
9
|
totalSteps: number;
|
|
10
10
|
/** Current active step (1-based index) */
|
|
11
11
|
currentStep: number;
|
|
12
|
+
dataTestId?: string;
|
|
13
|
+
showMarkers?: boolean;
|
|
14
|
+
classNameMarkerFalse?: string;
|
|
12
15
|
}
|
|
13
16
|
/**
|
|
14
17
|
* A progress bar component that shows a series of steps as circles with connecting lines.
|
package/lib/RadioGroup.d.ts
CHANGED
package/lib/Search.d.ts
CHANGED
|
@@ -27,5 +27,7 @@ export interface SearchProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
27
27
|
setSearchResults?: (res: DataSearchResults) => void;
|
|
28
28
|
mobileOnly?: boolean;
|
|
29
29
|
variant?: string;
|
|
30
|
+
dataTestIdInput?: string;
|
|
31
|
+
dataTestIdResults?: string;
|
|
30
32
|
}
|
|
31
33
|
export declare const Search: import('react').ForwardRefExoticComponent<SearchProps & import('react').RefAttributes<HTMLInputElement>>;
|
package/lib/SectionHeader.d.ts
CHANGED
|
@@ -14,5 +14,6 @@ export interface SectionHeaderProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
14
14
|
buttonContent?: string;
|
|
15
15
|
padLeft?: boolean;
|
|
16
16
|
padRight?: boolean;
|
|
17
|
+
dataTestId?: string;
|
|
17
18
|
}
|
|
18
19
|
export declare const SectionHeader: import('react').ForwardRefExoticComponent<SectionHeaderProps & import('react').RefAttributes<HTMLDivElement>>;
|
package/lib/Select.d.ts
CHANGED
|
@@ -14,6 +14,9 @@ export interface SelectProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
14
14
|
error?: boolean;
|
|
15
15
|
width?: string;
|
|
16
16
|
setSelectedOption: (param: string) => void;
|
|
17
|
+
dataTestId?: string;
|
|
18
|
+
dataTestIdButton?: string;
|
|
19
|
+
dataTestIdList?: string;
|
|
17
20
|
}
|
|
18
|
-
export declare const Select: ({ className, classNameContainer, label, options, optionsLabel, disabled, variant, setSelectedOption, error, width, ...props }: SelectProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare const Select: ({ className, classNameContainer, label, options, optionsLabel, disabled, variant, setSelectedOption, error, width, dataTestId, dataTestIdButton, dataTestIdList, ...props }: SelectProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
22
|
export {};
|
package/lib/Shield.d.ts
CHANGED
|
@@ -8,5 +8,6 @@ export interface ShieldProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
8
8
|
imageAlt?: string;
|
|
9
9
|
classNameImage?: string;
|
|
10
10
|
children?: ReactNode;
|
|
11
|
+
dataTestId?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare const Shield: import('react').ForwardRefExoticComponent<ShieldProps & import('react').RefAttributes<HTMLDivElement>>;
|
package/lib/SideBarNav.d.ts
CHANGED
|
@@ -25,8 +25,10 @@ export interface SideBarNavProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
25
25
|
classNameBackIcon?: string;
|
|
26
26
|
classNameBackText?: string;
|
|
27
27
|
classNameBackContainer?: string;
|
|
28
|
+
dataTestId?: string;
|
|
29
|
+
dataTestIdHamburger?: string;
|
|
28
30
|
}
|
|
29
|
-
export declare function SideBarNav({ appName, backX, backText, image, clickOutsideCloses, customButton, className, classNameBackContainer, classNameBackIcon, classNameBackText, classNameContainer, classNameMenu, classNameMenuItem, classNameBackButton, classNameMenuContainer, classNameImage, classNameImageContainer, version, menuItems, right, children, }: SideBarNavProps): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare function SideBarNav({ appName, backX, backText, image, clickOutsideCloses, customButton, className, classNameBackContainer, classNameBackIcon, classNameBackText, classNameContainer, classNameMenu, classNameMenuItem, classNameBackButton, classNameMenuContainer, classNameImage, classNameImageContainer, version, menuItems, right, dataTestId, dataTestIdHamburger, children, }: SideBarNavProps): import("react/jsx-runtime").JSX.Element;
|
|
30
32
|
export declare const Menu: ({ classes }: {
|
|
31
33
|
classes?: string | undefined;
|
|
32
34
|
}) => import("react/jsx-runtime").JSX.Element;
|
package/lib/Skeleton.d.ts
CHANGED
|
@@ -3,11 +3,13 @@ import * as React from 'react';
|
|
|
3
3
|
export interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
4
|
variant?: string;
|
|
5
5
|
className?: string;
|
|
6
|
+
dataTestId?: string;
|
|
6
7
|
}
|
|
7
8
|
export declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
9
|
export interface SkelProps {
|
|
9
10
|
className?: string;
|
|
10
11
|
inline?: boolean;
|
|
12
|
+
dataTestId?: string;
|
|
11
13
|
}
|
|
12
14
|
export declare const SkelCircle: FC<SkelProps>;
|
|
13
15
|
export declare const SkelLine: FC<SkelProps>;
|
package/lib/Slider.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export interface SliderProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
7
7
|
changeHandler?: (value: number) => void;
|
|
8
8
|
id?: string;
|
|
9
9
|
label?: string;
|
|
10
|
+
dataTestIdLabel?: string;
|
|
11
|
+
dataTestIdInput?: string;
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
12
14
|
* id, name, list are common options for slider
|
package/lib/Status.d.ts
CHANGED
|
@@ -6,5 +6,7 @@ export interface StatusProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
6
6
|
image?: ReactNode;
|
|
7
7
|
classNameImage?: string;
|
|
8
8
|
children?: ReactNode;
|
|
9
|
+
dataTestIdContent?: string;
|
|
10
|
+
dataTestIdContainer?: string;
|
|
9
11
|
}
|
|
10
12
|
export declare const Status: import('react').ForwardRefExoticComponent<StatusProps & import('react').RefAttributes<HTMLDivElement>>;
|
package/lib/Tabs.d.ts
CHANGED
|
@@ -21,6 +21,8 @@ export interface TabsProps {
|
|
|
21
21
|
customActiveClass?: string;
|
|
22
22
|
customInactiveClass?: string;
|
|
23
23
|
tabs: Tab[];
|
|
24
|
+
dataTestIdContainer?: string;
|
|
25
|
+
dataTestIdTabButton?: string;
|
|
24
26
|
}
|
|
25
|
-
export declare const Tabs: ({ variant, tabs, className, classNameContainer, customActiveClass, customInactiveClass }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export declare const Tabs: ({ variant, tabs, className, classNameContainer, customActiveClass, customInactiveClass, dataTestIdContainer, dataTestIdTabButton, }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
28
|
export {};
|
package/lib/Toggle.d.ts
CHANGED
|
@@ -7,5 +7,6 @@ export interface ToggleProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
7
7
|
className?: string;
|
|
8
8
|
classNameButton?: string;
|
|
9
9
|
variant?: string;
|
|
10
|
+
dataTestId?: string;
|
|
10
11
|
}
|
|
11
12
|
export declare const Toggle: import('react').ForwardRefExoticComponent<ToggleProps & import('react').RefAttributes<HTMLButtonElement>>;
|
package/lib/Tooltip.d.ts
CHANGED
|
@@ -4,11 +4,13 @@ export interface TooltipProps {
|
|
|
4
4
|
delay?: number;
|
|
5
5
|
id?: string;
|
|
6
6
|
children: ReactNode;
|
|
7
|
+
dataTestId?: string;
|
|
7
8
|
}
|
|
8
9
|
export declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
10
|
export interface TooltipContentProps {
|
|
10
11
|
children?: ReactNode;
|
|
11
12
|
className?: string;
|
|
12
13
|
position?: string;
|
|
14
|
+
dataTestId?: string;
|
|
13
15
|
}
|
|
14
16
|
export declare const TooltipContent: React.ForwardRefExoticComponent<TooltipContentProps & React.RefAttributes<HTMLDivElement>>;
|