///
import JDanimation from "./atoms/animation/Animations";
import JDbadge from "./atoms/badge/Badge";
import Button from "./atoms/button/Button";
import CircleIcon from "./atoms/circleIcon/CircleIcon";
import JDcolorPicker from "./atoms/colorPicker/ColorPicker";
import JDdayPicker from "./atoms/dayPicker/DayPicker";
import DayPickerModal from "./atoms/dayPickerModal/DayPickerModal";
import Drawer from "./atoms/drawer/Drawer";
import CheckBox from "./atoms/forms/checkBox/CheckBox";
import InputText from "./atoms/forms/inputText/InputText";
import Radio from "./atoms/forms/radio/Radio";
import JDselect from "./atoms/forms/selectBox/SelectBox";
import JDswitch from "./atoms/forms/switch/Switch";
import JDgraph from "./atoms/graph/graph";
import Help from "./atoms/Help/Help";
import JDIcon from "./atoms/icons/Icons";
import ImageUploader from "./atoms/imageUploader/ImageUploader";
import JDLabel from "./atoms/label/JDLabel";
import LangSelectModal from "./atoms/langList/langSelectModal";
import LangList from "./atoms/langList/LangList";
import List from "./atoms/searchInput/components/list";
import Mbr from "./atoms/mbr/Mbr";
import JDmenu from "./atoms/menu/Menu";
import JDmodal from "./atoms/modal/Modal";
import JDmultiBox from "./atoms/multiBox/MultiBox";
import JDmultiStep from "./atoms/multiStep/MultiStep";
import JDPagination from "./atoms/pagination/Pagination";
import JDpreloader from "./atoms/preloader/Preloader";
import PreloaderModal from "./atoms/preloaderModal/PreloaderModal";
import ProfileCircle from "./atoms/profileCircle/ProfileCircle";
import JDsearchInput from "./atoms/searchInput/SearchInput";
import JDsideNav from "./atoms/sideNav/JDsideNav";
import JDSlider from "./atoms/slider/Slider";
import JDtable from "./atoms/table/Table";
import { JDtabs, Tab, TabList, TabPanel } from "./atoms/tabs/tabs_";
import JDTimer from "./atoms/timer/Timer";
import JDtoast from "./atoms/toast/Toast";
import JDToolTip from "./atoms/tooltip/Tooltip";
import TooltipList from "./atoms/tooltipList/TooltipList";
import JDVideo from "./atoms/video/Video";
import Card from "./atoms/cards/Card";
export { JDanimation, JDbadge, Button, Card, CircleIcon, JDcolorPicker, JDdayPicker, DayPickerModal, Drawer, CheckBox, InputText, Radio, JDselect, JDswitch, JDgraph, Help, JDIcon, ImageUploader, JDLabel, LangSelectModal, LangList, List, Mbr, JDmenu, JDmodal, JDmultiBox, JDmultiStep, JDPagination, JDpreloader, PreloaderModal, ProfileCircle, JDsearchInput, JDsideNav, JDSlider, JDtable, JDtabs, JDTimer, Tab, TabList, TabPanel, JDtoast, JDToolTip, TooltipList, JDVideo };
declare const jdwork: {
useInput: typeof import("./hooks/hook").useInput;
useCheckBox: typeof import("./hooks/hook").useCheckBox;
useRadio: typeof import("./hooks/hook").useRadio;
useSwitch: typeof import("./hooks/hook").useSwitch;
useSelect: typeof import("./hooks/hook").useSelect;
useToggle: typeof import("./hooks/hook").useToggle;
useFetch: (url?: string) => [any, boolean, boolean, (url: string) => void];
useModal: typeof import("./hooks/hook").useModal;
useSideNav: typeof import("./hooks/hook").useSideNav;
useRange: typeof import("./hooks/hook").useRange;
useDebounce: typeof import("./hooks/hook").useDebounce;
useDrawer: typeof import("./hooks/hook").useDrawer;
useLang: (defaultLang: import("./types/enum").TLanguageShort, langSet: any) => {
currentLang: import("./types/enum").TLanguageShort;
changeLang: (lang: import("./types/enum").TLanguageShort) => void;
};
useShouldSave: (updateValue: any[]) => {
shouldSave: boolean;
setShouldSave: import("react").Dispatch>;
};
useColorPicker: typeof import("./hooks/hook").useColorPicker;
useDayPicker: typeof import("./hooks/hook").useDayPicker;
usePagiNation: typeof import("./hooks/hook").usePagiNation;
useRedirect: typeof import("./hooks/hook").useRedirect;
ErrProtecter: typeof import("./utils/errProtect").EerrorProtect;
targetBlink: typeof import("./utils/targetBlink").default;
isEmpty: (data: any) => data is "";
isEmail: (string: string) => boolean | "";
isPhone: (string: string) => boolean | "";
isUrl: (string: string) => boolean | "";
isName: (string: string) => boolean | "";
isMaxOver: (string: string, max: number) => boolean | "";
isPassword: (string: string) => boolean | "";
textAlignClass: (boxName: string, align?: import("./types/enum").TextAlign) => any;
colorClass: (boxName: string, color?: import("./types/enum").JDColor) => any;
getCookie: typeof import("./utils/cookies").getCookie;
JDscrollTo: typeof import("./utils/scrollTo").default;
setCookie: typeof import("./utils/cookies").setCookie;
randomIntFromInterval: typeof import("./utils/randomNumber").default;
JDMonthTextChanger: (Month: import("react").ReactText) => string;
autoHypen: (str?: string) => string;
onCompletedMessage: (result: {
[data: string]: any;
error: string;
ok: boolean;
}, resultOK: string, resultFale: string) => void;
queryDataFormater: typeof import("./utils/queryFormater").default;
setMidNight: (time: number) => number;
applyDaysToArr: (applyDaysBinary: number) => import("./utils/dayOfweeks").DayOfWeekEnum[];
arrToApplyDays: (arr: (number | boolean)[]) => number;
autoComma: (str?: import("react").ReactText) => string;
dayarrEnToBooleanArr: (dayArr: string[]) => boolean[];
isLast: (index: number, arr: any[], trueReturn?: any, falsereturn?: any) => any;
isYYYYMMDD: (string: string) => boolean | "";
getGenderIcon: (roomGneder: import("./types/enum").RoomGender) => import("./atoms/icons/Icons").IIcons;
numberStr: (str?: string) => string;
toNumber: (value?: import("react").ReactText) => number;
isNumberMinMax: (string: string, min: number, max: number) => boolean | "";
muResult: typeof import("./utils/mutationResultSafty").default;
removeNullOfObject: (obj: any) => void;
jsonString: (value: any) => string;
instanceOfA: typeof import("./utils/interfaceMatch").default;
mergeObject: typeof import("./utils/mergeObject").default;
s4: () => string;
JDanimation: import("react").FunctionComponent<{
animation: import("./atoms/animation/Animations").Animation[];
}>;
JDbadge: import("react").FunctionComponent;
Button: {
new (props: Readonly): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("./atoms/button/Button").IButtonProps, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
Card: {
new (props: Readonly): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("./atoms/cards/Card").ICardProps, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
CircleIcon: {
new (props: Readonly): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("./atoms/circleIcon/CircleIcon").ICircleIconProps, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
JDcolorPicker: import("react").FunctionComponent<{
colorHook: import("./hooks/hook").IUseColor;
className?: string;
label?: string;
}>;
JDdayPicker: import("react").FunctionComponent;
DayPickerModal: import("react").FunctionComponent;
Drawer: import("react").FunctionComponent;
CheckBox: {
new (props: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextState: Readonly, nextContext: any): void;
};
new (props: {
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
disabled?: boolean;
checked?: boolean;
label?: string;
className?: string;
size?: "small";
onChange?(foo: boolean): void;
id?: string;
}>, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
InputText: {
new (props: Readonly): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("./atoms/forms/inputText/InputText").IInputTextProps, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
Radio: {
new (props: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextState: Readonly, nextContext: any): void;
};
new (props: {
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
id: string;
groupName: string;
label?: string;
disabled?: boolean;
selectedValue?: any;
onChange?(foo?: any): void;
value?: any;
checked?: boolean;
}>, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
Range: {
new (): Range;
prototype: Range;
readonly END_TO_END: number;
readonly END_TO_START: number;
readonly START_TO_END: number;
readonly START_TO_START: number;
};
JDselect: import("react").FunctionComponent<{
label?: string | JSX.Element;
disabled?: boolean;
selectedOption?: import("./atoms/forms/selectBox/SelectBox").IselectedOption;
options?: import("./atoms/forms/selectBox/SelectBox").IselectedOption[];
onChange?(foo: import("./atoms/forms/selectBox/SelectBox").IselectedOption): void;
className?: string;
rightLabel?: string;
props?: any;
defaultValue?: import("./atoms/forms/selectBox/SelectBox").IselectedOption;
isOpen?: boolean;
menuCanOverflow?: boolean;
textOverflow?: "hidden" | "visible";
mode?: "small";
size?: import("./atoms/forms/selectBox/SelectBox").SelectBoxSize;
background?: "white";
borderColor?: "primary";
displayArrow?: boolean;
menuItemCenterlize?: boolean;
noOptionsMessage?: string;
placeholder?: string;
autoSize?: boolean;
}>;
JDswitch: import("react").FunctionComponent<{
disabled?: boolean;
checked?: boolean;
onChange?(foo: boolean): void;
label?: string | JSX.Element;
ltxt?: string;
rtxt?: string;
tooltip?: string;
}>;
JDgraph: import("react").FunctionComponent;
Help: {
new (props: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextState: Readonly, nextContext: any): void;
};
new (props: {
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
icon?: "info" | "help";
tooltip?: string | JSX.Element | Element | JSX.Element[];
className?: string;
size?: import("./atoms/icons/Icons").IconSize;
}>, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
JDIcon: import("react").FunctionComponent;
ImageUploader: import("react").FunctionComponent;
JDLabel: {
new (props: Readonly<{
txt: string | JSX.Element;
}>): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
txt: string | JSX.Element;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
txt: string | JSX.Element;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
txt: string | JSX.Element;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextState: Readonly, nextContext: any): void;
};
new (props: {
txt: string | JSX.Element;
}, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly<{
txt: string | JSX.Element;
}> & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly<{
txt: string | JSX.Element;
}>, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly<{
txt: string | JSX.Element;
}>, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly<{
txt: string | JSX.Element;
}>, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
LangSelectModal: import("react").FunctionComponent<{
modalHook: import("./hooks/hook").IUseModal;
changeLang: any;
currentLang: any;
}>;
LangList: {
new (props: Readonly): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("./atoms/langList/LangList").ILangListProps, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
List: import("react").FunctionComponent<{
dataList: any[];
refContainer: import("react").MutableRefObject;
onListKeyPress: any;
onListClick(e: import("react").MouseEvent): any;
setIsMatched?(foo?: boolean): any;
currentValue?: string;
alwaysListShow?: boolean;
}>;
Mbr: () => JSX.Element;
JDmenu: import("react").FunctionComponent<{
[key: string]: any;
customMode?: "sideNav" | "dropDown";
}>;
JDmodal: import("react").FunctionComponent;
JDmultiBox: import("react").FunctionComponent<{
labels: string[];
selectedValue: string[];
value: string[];
onChange: (value: string[]) => void;
withAllToogler?: boolean;
defaultAllToogle?: boolean;
withAllTooglerLabel?: string;
}>;
JDmultiStep: import("react").FunctionComponent<{
steps: import("./atoms/multiStep/MultiStep").step[];
}>;
JDPagination: import("react").FunctionComponent;
JDpreloader: import("react").FunctionComponent;
PreloaderModal: import("react").FunctionComponent;
ProfileCircle: {
new (props: Readonly): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("./atoms/profileCircle/ProfileCircle").IProfileCircleProps, context?: any): {
state: {
hasErr: boolean;
};
ComponentDidCatch: () => void;
render(): JSX.Element | "sorry Something Wrong";
context: any;
setState(state: any, callback?: () => void): void;
forceUpdate(callBack?: () => void): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
contextType?: import("react").Context;
};
JDsearchInput: import("react").FunctionComponent<{
dataList: any[];
onListClick?(value: string, id: string): void;
placeholder?: string;
label?: string;
onFindOne?(label?: string, id?: string): any;
setIsMatched?(foo?: boolean): any;
onTypeChange?(foo?: string): any;
onSearch?(value?: string): any;
staticList?: boolean;
filter?: boolean;
isMatched?: boolean;
isLoading?: boolean;
alwaysListShow?: boolean;
setTypeWhenFindOne?: boolean;
onTypeValue?: string;
asName?: string;
asDetail?: string;
asId?: string;
feedBackMessage?: string;
maxCount?: number;
}>;
JDsideNav: import("react").FunctionComponent<{
isOpen: boolean;
setIsOpen: any;
children?: string | JSX.Element | JSX.Element[];
}>;
JDSlider: import("react").FunctionComponent;
JDtable: import("react").FunctionComponent>;
JDtabs: import("react").FunctionComponent<{
styleMode?: "button";
className?: string;
defaultFocus?: boolean;
defaultIndex?: number;
disabledTabClassName?: string;
domRef?: (node?: HTMLElement) => void;
forceRenderTabPanel?: boolean;
onSelect?: (index: number, last: number, event: Event) => boolean | void;
selectedIndex?: number;
selectedTabClassName?: string;
selectedTabPanelClassName?: string;
}>;
JDTimer: import("react").FunctionComponent;
Tab: typeof Tab;
TabList: typeof TabList;
TabPanel: typeof TabPanel;
JDtoast: import("react").FunctionComponent