hplx-react-elements-dev 1.3.53 → 1.3.55
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ToggleSwitchProps } from "../types";
|
|
3
|
-
declare const ToggleSwitch: ({ size, theme, disabled, text, secondaryText, id, onClick, isToggled, labelClass, toggleOuterDivClass, }: ToggleSwitchProps) => JSX.Element;
|
|
3
|
+
declare const ToggleSwitch: ({ size, theme, disabled, text, secondaryText, id, onClick, isToggled, labelClass, toggleOuterDivClass, hideLabel, }: ToggleSwitchProps) => JSX.Element;
|
|
4
4
|
export default ToggleSwitch;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -84,6 +84,8 @@ export interface DatePickerProps {
|
|
|
84
84
|
format?: string;
|
|
85
85
|
openUp?: boolean;
|
|
86
86
|
placeholderStyle?: placeholderStyle;
|
|
87
|
+
openByDefault?: boolean;
|
|
88
|
+
onBlur?: () => void;
|
|
87
89
|
}
|
|
88
90
|
export interface CalenderViewProps {
|
|
89
91
|
date1?: Date;
|
|
@@ -379,6 +381,7 @@ export interface ToggleSwitchProps {
|
|
|
379
381
|
isToggled: boolean;
|
|
380
382
|
labelClass?: string;
|
|
381
383
|
toggleOuterDivClass?: string;
|
|
384
|
+
hideLabel?: boolean;
|
|
382
385
|
}
|
|
383
386
|
export interface ToggleButtonProps {
|
|
384
387
|
variant: typographyVariantType;
|