hplx-react-elements-dev 1.1.92 → 1.1.94
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/esm/types.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export interface InputFieldProps {
|
|
|
31
31
|
}
|
|
32
32
|
export interface DatePickerProps {
|
|
33
33
|
className?: string;
|
|
34
|
+
classNamePopUp?: string;
|
|
34
35
|
disable?: boolean;
|
|
35
36
|
placeholder?: string;
|
|
36
37
|
disabledDates?: Date[];
|
|
@@ -221,7 +222,7 @@ type tooltipPosition = "Top" | "Top end" | "Top start" | "Bottom" | "Left" | "Ri
|
|
|
221
222
|
type toolTipTheme = "dark" | "light";
|
|
222
223
|
export interface TooltipProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
223
224
|
variant?: tooltipPosition;
|
|
224
|
-
text?:
|
|
225
|
+
text?: ReactNode;
|
|
225
226
|
containerClassname?: string;
|
|
226
227
|
theme?: toolTipTheme;
|
|
227
228
|
supportingText?: string;
|