Latest updates from IceHrmPro

This commit is contained in:
Thilina Pituwala
2020-05-20 18:47:29 +02:00
parent 60c92d7935
commit 7453a58aad
18012 changed files with 2089245 additions and 10173 deletions

44
web/node_modules/antd/es/skeleton/Skeleton.d.ts generated vendored Normal file
View File

@@ -0,0 +1,44 @@
import * as React from 'react';
import { SkeletonTitleProps } from './Title';
import { SkeletonParagraphProps } from './Paragraph';
import { AvatarProps } from './Avatar';
interface SkeletonAvatarProps extends Omit<AvatarProps, 'active'> {
}
export interface SkeletonProps {
active?: boolean;
loading?: boolean;
prefixCls?: string;
className?: string;
children?: React.ReactNode;
avatar?: SkeletonAvatarProps | boolean;
title?: SkeletonTitleProps | boolean;
paragraph?: SkeletonParagraphProps | boolean;
}
declare const Skeleton: {
(props: SkeletonProps): JSX.Element;
defaultProps: {
avatar: boolean;
title: boolean;
paragraph: boolean;
};
Button: {
(props: import("./Button").SkeletonButtonProps): JSX.Element;
defaultProps: {
size: string;
};
};
Avatar: {
(props: AvatarProps): JSX.Element;
defaultProps: {
size: string;
shape: string;
};
};
Input: {
(props: import("./Input").SkeletonInputProps): JSX.Element;
defaultProps: {
size: string;
};
};
};
export default Skeleton;