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

28
web/node_modules/antd/lib/grid/row.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import * as React from 'react';
import { ConfigConsumerProps } from '../config-provider';
import { Breakpoint, ScreenMap } from '../_util/responsiveObserve';
declare const RowAligns: ["top", "middle", "bottom", "stretch"];
declare const RowJustify: ["start", "end", "center", "space-around", "space-between"];
export declare type Gutter = number | Partial<Record<Breakpoint, number>>;
export interface RowProps extends React.HTMLAttributes<HTMLDivElement> {
gutter?: Gutter | [Gutter, Gutter];
align?: typeof RowAligns[number];
justify?: typeof RowJustify[number];
prefixCls?: string;
}
export interface RowState {
screens: ScreenMap;
}
export default class Row extends React.Component<RowProps, RowState> {
static defaultProps: {
gutter: number;
};
state: RowState;
token: string;
componentDidMount(): void;
componentWillUnmount(): void;
getGutter(): [number, number];
renderRow: ({ getPrefixCls, direction }: ConfigConsumerProps) => JSX.Element;
render(): JSX.Element;
}
export {};