Completely updated React, fixed #11, (hopefully)
This commit is contained in:
26
goTorrentWebUI/node_modules/material-ui/Progress/CircularProgress.d.ts
generated
vendored
26
goTorrentWebUI/node_modules/material-ui/Progress/CircularProgress.d.ts
generated
vendored
@@ -1,30 +1,26 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
|
||||
export interface CircularProgressProps extends StandardProps<
|
||||
React.HTMLAttributes<HTMLDivElement>,
|
||||
CircularProgressClassKey
|
||||
> {
|
||||
color?: 'primary' | 'accent' | 'inherit';
|
||||
export interface CircularProgressProps
|
||||
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, CircularProgressClassKey> {
|
||||
color?: 'primary' | 'secondary' | 'inherit';
|
||||
max?: number;
|
||||
min?: number;
|
||||
mode?: 'determinate' | 'indeterminate';
|
||||
size?: number;
|
||||
value?: number;
|
||||
size?: number | string;
|
||||
thickness?: number;
|
||||
value?: number;
|
||||
variant?: 'determinate' | 'indeterminate' | 'static';
|
||||
}
|
||||
|
||||
export type CircularProgressClassKey =
|
||||
| 'root'
|
||||
| 'primaryColor'
|
||||
| 'accentColor'
|
||||
| 'colorPrimary'
|
||||
| 'colorSecondary'
|
||||
| 'svg'
|
||||
| 'indeterminateSvg'
|
||||
| 'svgIndeterminate'
|
||||
| 'circle'
|
||||
| 'indeterminateCircle'
|
||||
| 'determinateCircle'
|
||||
;
|
||||
| 'circleIndeterminate';
|
||||
|
||||
declare const CircularProgress: React.ComponentType<CircularProgressProps>;
|
||||
|
||||
export default CircularProgress
|
||||
export default CircularProgress;
|
||||
|
Reference in New Issue
Block a user