UNPKG

ygd

Version:

An enterprise-class UI design language and React-based implementation

55 lines (54 loc) 2.32 kB
import * as React from 'react'; import { Component } from 'react'; import { ConfigConsumerProps } from '../config-provider'; export interface ScrollNumberProps { prefixCls?: string; className?: string; count?: string | number | null; displayComponent?: React.ReactElement<any>; component?: string; onAnimated?: Function; style?: React.CSSProperties; title?: string | number | null; } export interface ScrollNumberState { animateStarted?: boolean; count?: string | number | null; } declare class ScrollNumber extends Component<ScrollNumberProps, ScrollNumberState> { static defaultProps: { count: null; onAnimated(): void; }; static getDerivedStateFromProps(nextProps: ScrollNumberProps, nextState: ScrollNumberState): { animateStarted: boolean; } | null; lastCount?: string | number | null; constructor(props: ScrollNumberProps); getPositionByNum(num: number, i: number): number; componentDidUpdate(_: any, prevState: ScrollNumberState): void; renderNumberList(position: number): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[]; renderCurrentNumber(prefixCls: string, num: number, i: number): React.DetailedReactHTMLElement<{ className: string; style: { transition: string | undefined; msTransform: string; WebkitTransform: string; transform: string; }; key: number; }, HTMLElement>; renderNumberElement(prefixCls: string): string | number | React.DetailedReactHTMLElement<{ className: string; style: { transition: string | undefined; msTransform: string; WebkitTransform: string; transform: string; }; key: number; }, HTMLElement>[] | null | undefined; renderScrollNumber: ({ getPrefixCls }: ConfigConsumerProps) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>; render(): JSX.Element; } export default ScrollNumber;