UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

1,248 lines (1,015 loc) 103 kB
// Type definitions for React v0.14 // Project: http://facebook.github.io/react/ // Definitions by: Asana <https://asana.com>, AssureSign <http://www.assuresign.com>, Microsoft <https://microsoft.com> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare namespace __React { // // React Elements // ---------------------------------------------------------------------- type ReactType = string | ComponentClass<any> | StatelessComponent<any>; type Key = string | number; type Ref<T> = string | ((instance: T) => any); type ComponentState = {} | void; interface Attributes { key?: Key; } interface ClassAttributes<T> extends Attributes { ref?: Ref<T>; } interface ReactElement<P> { type: string | ComponentClass<P> | SFC<P>; props: P; key?: Key; } interface SFCElement<P> extends ReactElement<P> { type: SFC<P>; } type CElement<P, T extends Component<P, ComponentState>> = ComponentElement<P, T>; interface ComponentElement<P, T extends Component<P, ComponentState>> extends ReactElement<P> { type: ComponentClass<P>; ref?: Ref<T>; } type ClassicElement<P> = CElement<P, ClassicComponent<P, ComponentState>>; interface DOMElement<P extends DOMAttributes, T extends Element> extends ReactElement<P> { type: string; ref: Ref<T>; } interface ReactHTMLElement<T extends HTMLElement> extends DOMElement<HTMLAttributes, T> { } interface ReactSVGElement extends DOMElement<SVGAttributes, SVGElement> { } // // Factories // ---------------------------------------------------------------------- interface Factory<P> { (props?: P & Attributes, ...children: ReactNode[]): ReactElement<P>; } interface SFCFactory<P> { (props?: P & Attributes, ...children: ReactNode[]): SFCElement<P>; } interface ComponentFactory<P, T extends Component<P, ComponentState>> { (props?: P & ClassAttributes<T>, ...children: ReactNode[]): CElement<P, T>; } type CFactory<P, T extends Component<P, ComponentState>> = ComponentFactory<P, T>; type ClassicFactory<P> = CFactory<P, ClassicComponent<P, ComponentState>>; interface DOMFactory<P extends DOMAttributes, T extends Element> { (props?: P & ClassAttributes<T>, ...children: ReactNode[]): DOMElement<P, T>; } interface HTMLFactory<T extends HTMLElement> extends DOMFactory<HTMLAttributes, T> { } interface SVGFactory extends DOMFactory<SVGAttributes, SVGElement> { } // // React Nodes // http://facebook.github.io/react/docs/glossary.html // ---------------------------------------------------------------------- type ReactText = string | number; type ReactChild = ReactElement<any> | ReactText; // Should be Array<ReactNode> but type aliases cannot be recursive type ReactFragment = {} | Array<ReactChild | any[] | boolean>; type ReactNode = ReactChild | ReactFragment | boolean; // // Top Level API // ---------------------------------------------------------------------- function createClass<P, S>(spec: ComponentSpec<P, S>): ClassicComponentClass<P>; function createFactory<P extends DOMAttributes, T extends Element>( type: string): DOMFactory<P, T>; function createFactory<P>(type: SFC<P>): SFCFactory<P>; function createFactory<P>( type: ClassType<P, ClassicComponent<P, ComponentState>, ClassicComponentClass<P>>): CFactory<P, ClassicComponent<P, ComponentState>>; function createFactory<P, T extends Component<P, ComponentState>, C extends ComponentClass<P>>( type: ClassType<P, T, C>): CFactory<P, T>; function createFactory<P>(type: ComponentClass<P> | SFC<P>): Factory<P>; function createElement<P extends DOMAttributes, T extends Element>( type: string, props?: P & ClassAttributes<T>, ...children: ReactNode[]): DOMElement<P, T>; function createElement<P>( type: SFC<P>, props?: P & Attributes, ...children: ReactNode[]): SFCElement<P>; function createElement<P>( type: ClassType<P, ClassicComponent<P, ComponentState>, ClassicComponentClass<P>>, props?: P & ClassAttributes<ClassicComponent<P, ComponentState>>, ...children: ReactNode[]): CElement<P, ClassicComponent<P, ComponentState>>; function createElement<P, T extends Component<P, ComponentState>, C extends ComponentClass<P>>( type: ClassType<P, T, C>, props?: P & ClassAttributes<T>, ...children: ReactNode[]): CElement<P, T>; function createElement<P>( type: ComponentClass<P> | SFC<P>, props?: P & Attributes, ...children: ReactNode[]): ReactElement<P>; function cloneElement<P extends DOMAttributes, T extends Element>( element: DOMElement<P, T>, props?: P & ClassAttributes<T>, ...children: ReactNode[]): DOMElement<P, T>; function cloneElement<P extends Q, Q>( element: SFCElement<P>, props?: Q, // should be Q & Attributes, but then Q is inferred as {} ...children: ReactNode[]): SFCElement<P>; function cloneElement<P extends Q, Q, T extends Component<P, ComponentState>>( element: CElement<P, T>, props?: Q, // should be Q & ClassAttributes<T> ...children: ReactNode[]): CElement<P, T>; function cloneElement<P extends Q, Q>( element: ReactElement<P>, props?: Q, // should be Q & Attributes ...children: ReactNode[]): ReactElement<P>; function isValidElement<P>(object: {}): object is ReactElement<P>; var DOM: ReactDOM; var PropTypes: ReactPropTypes; var Children: ReactChildren; var version: string; // // Component API // ---------------------------------------------------------------------- type ReactInstance = Component<any, any> | Element; // Base component for plain JS classes class Component<P, S> implements ComponentLifecycle<P, S> { constructor(props?: P, context?: any); setState(f: (prevState: S, props: P) => S, callback?: () => any): void; setState(state: S, callback?: () => any): void; forceUpdate(callback?: () => any): void; render(): JSX.Element; // React.Props<T> is now deprecated, which means that the `children` // property is not available on `P` by default, even though you can // always pass children as variadic arguments to `createElement`. // In the future, if we can define its call signature conditionally // on the existence of `children` in `P`, then we should remove this. props: P & { children?: ReactNode }; state: S; context: {}; refs: { [key: string]: ReactInstance }; } class PureComponent<P, S> extends Component<P, S> {} interface ClassicComponent<P, S> extends Component<P, S> { replaceState(nextState: S, callback?: () => any): void; isMounted(): boolean; getInitialState?(): S; } interface ChildContextProvider<CC> { getChildContext(): CC; } // // Class Interfaces // ---------------------------------------------------------------------- type SFC<P> = StatelessComponent<P>; interface StatelessComponent<P> { (props: P, context?: any): ReactElement<any>; propTypes?: ValidationMap<P>; contextTypes?: ValidationMap<any>; defaultProps?: P; displayName?: string; } interface ComponentClass<P> { new(props?: P, context?: any): Component<P, ComponentState>; propTypes?: ValidationMap<P>; contextTypes?: ValidationMap<any>; childContextTypes?: ValidationMap<any>; defaultProps?: P; displayName?: string; } interface ClassicComponentClass<P> extends ComponentClass<P> { new(props?: P, context?: any): ClassicComponent<P, ComponentState>; getDefaultProps?(): P; } /** * We use an intersection type to infer multiple type parameters from * a single argument, which is useful for many top-level API defs. * See https://github.com/Microsoft/TypeScript/issues/7234 for more info. */ type ClassType<P, T extends Component<P, ComponentState>, C extends ComponentClass<P>> = C & (new() => T) & (new() => { props: P }); // // Component Specs and Lifecycle // ---------------------------------------------------------------------- interface ComponentLifecycle<P, S> { componentWillMount?(): void; componentDidMount?(): void; componentWillReceiveProps?(nextProps: P, nextContext: any): void; shouldComponentUpdate?(nextProps: P, nextState: S, nextContext: any): boolean; componentWillUpdate?(nextProps: P, nextState: S, nextContext: any): void; componentDidUpdate?(prevProps: P, prevState: S, prevContext: any): void; componentWillUnmount?(): void; } interface Mixin<P, S> extends ComponentLifecycle<P, S> { mixins?: Mixin<P, S>; statics?: { [key: string]: any; }; displayName?: string; propTypes?: ValidationMap<any>; contextTypes?: ValidationMap<any>; childContextTypes?: ValidationMap<any>; getDefaultProps?(): P; getInitialState?(): S; } interface ComponentSpec<P, S> extends Mixin<P, S> { render(): ReactElement<any>; [propertyName: string]: any; } // // Event System // ---------------------------------------------------------------------- interface SyntheticEvent { bubbles: boolean; cancelable: boolean; currentTarget: EventTarget; defaultPrevented: boolean; eventPhase: number; isTrusted: boolean; nativeEvent: Event; preventDefault(): void; isDefaultPrevented(): boolean; stopPropagation(): void; isPropagationStopped(): boolean; persist(): void; target: EventTarget; timeStamp: Date; type: string; } interface ClipboardEvent extends SyntheticEvent { clipboardData: DataTransfer; } interface CompositionEvent extends SyntheticEvent { data: string; } interface DragEvent extends MouseEvent { dataTransfer: DataTransfer; } interface FocusEvent extends SyntheticEvent { relatedTarget: EventTarget; } interface FormEvent extends SyntheticEvent { } interface KeyboardEvent extends SyntheticEvent { altKey: boolean; charCode: number; ctrlKey: boolean; getModifierState(key: string): boolean; key: string; keyCode: number; locale: string; location: number; metaKey: boolean; repeat: boolean; shiftKey: boolean; which: number; } interface MouseEvent extends SyntheticEvent { altKey: boolean; button: number; buttons: number; clientX: number; clientY: number; ctrlKey: boolean; getModifierState(key: string): boolean; metaKey: boolean; pageX: number; pageY: number; relatedTarget: EventTarget; screenX: number; screenY: number; shiftKey: boolean; } interface TouchEvent extends SyntheticEvent { altKey: boolean; changedTouches: TouchList; ctrlKey: boolean; getModifierState(key: string): boolean; metaKey: boolean; shiftKey: boolean; targetTouches: TouchList; touches: TouchList; } interface UIEvent extends SyntheticEvent { detail: number; view: AbstractView; } interface WheelEvent extends MouseEvent { deltaMode: number; deltaX: number; deltaY: number; deltaZ: number; } interface AnimationEvent extends SyntheticEvent { animationName: string; pseudoElement: string; elapsedTime: number; } interface TransitionEvent extends SyntheticEvent { propertyName: string; pseudoElement: string; elapsedTime: number; } // // Event Handler Types // ---------------------------------------------------------------------- interface EventHandler<E extends SyntheticEvent> { (event: E): void; } type ReactEventHandler = EventHandler<SyntheticEvent>; type ClipboardEventHandler = EventHandler<ClipboardEvent>; type CompositionEventHandler = EventHandler<CompositionEvent>; type DragEventHandler = EventHandler<DragEvent>; type FocusEventHandler = EventHandler<FocusEvent>; type FormEventHandler = EventHandler<FormEvent>; type KeyboardEventHandler = EventHandler<KeyboardEvent>; type MouseEventHandler = EventHandler<MouseEvent>; type TouchEventHandler = EventHandler<TouchEvent>; type UIEventHandler = EventHandler<UIEvent>; type WheelEventHandler = EventHandler<WheelEvent>; type AnimationEventHandler = EventHandler<AnimationEvent>; type TransitionEventHandler = EventHandler<TransitionEvent>; // // Props / DOM Attributes // ---------------------------------------------------------------------- /** * @deprecated. This was used to allow clients to pass `ref` and `key` * to `createElement`, which is no longer necessary due to intersection * types. If you need to declare a props object before passing it to * `createElement` or a factory, use `ClassAttributes<T>`: * * ```ts * var b: Button; * var props: ButtonProps & ClassAttributes<Button> = { * ref: b => button = b, // ok! * label: "I'm a Button" * }; * ``` */ interface Props<T> { children?: ReactNode; key?: Key; ref?: Ref<T>; } interface HTMLProps<T> extends HTMLAttributes, ClassAttributes<T> { } interface SVGProps extends SVGAttributes, ClassAttributes<SVGElement> { } interface DOMAttributes { children?: ReactNode; dangerouslySetInnerHTML?: { __html: string; }; // Clipboard Events onCopy?: ClipboardEventHandler; onCut?: ClipboardEventHandler; onPaste?: ClipboardEventHandler; // Composition Events onCompositionEnd?: CompositionEventHandler; onCompositionStart?: CompositionEventHandler; onCompositionUpdate?: CompositionEventHandler; // Focus Events onFocus?: FocusEventHandler; onBlur?: FocusEventHandler; // Form Events onChange?: FormEventHandler; onInput?: FormEventHandler; onSubmit?: FormEventHandler; // Image Events onLoad?: ReactEventHandler; onError?: ReactEventHandler; // also a Media Event // Keyboard Events onKeyDown?: KeyboardEventHandler; onKeyPress?: KeyboardEventHandler; onKeyUp?: KeyboardEventHandler; // Media Events onAbort?: ReactEventHandler; onCanPlay?: ReactEventHandler; onCanPlayThrough?: ReactEventHandler; onDurationChange?: ReactEventHandler; onEmptied?: ReactEventHandler; onEncrypted?: ReactEventHandler; onEnded?: ReactEventHandler; onLoadedData?: ReactEventHandler; onLoadedMetadata?: ReactEventHandler; onLoadStart?: ReactEventHandler; onPause?: ReactEventHandler; onPlay?: ReactEventHandler; onPlaying?: ReactEventHandler; onProgress?: ReactEventHandler; onRateChange?: ReactEventHandler; onSeeked?: ReactEventHandler; onSeeking?: ReactEventHandler; onStalled?: ReactEventHandler; onSuspend?: ReactEventHandler; onTimeUpdate?: ReactEventHandler; onVolumeChange?: ReactEventHandler; onWaiting?: ReactEventHandler; // MouseEvents onClick?: MouseEventHandler; onContextMenu?: MouseEventHandler; onDoubleClick?: MouseEventHandler; onDrag?: DragEventHandler; onDragEnd?: DragEventHandler; onDragEnter?: DragEventHandler; onDragExit?: DragEventHandler; onDragLeave?: DragEventHandler; onDragOver?: DragEventHandler; onDragStart?: DragEventHandler; onDrop?: DragEventHandler; onMouseDown?: MouseEventHandler; onMouseEnter?: MouseEventHandler; onMouseLeave?: MouseEventHandler; onMouseMove?: MouseEventHandler; onMouseOut?: MouseEventHandler; onMouseOver?: MouseEventHandler; onMouseUp?: MouseEventHandler; // Selection Events onSelect?: ReactEventHandler; // Touch Events onTouchCancel?: TouchEventHandler; onTouchEnd?: TouchEventHandler; onTouchMove?: TouchEventHandler; onTouchStart?: TouchEventHandler; // UI Events onScroll?: UIEventHandler; // Wheel Events onWheel?: WheelEventHandler; // Animation Events onAnimationStart?: AnimationEventHandler; onAnimationEnd?: AnimationEventHandler; onAnimationIteration?: AnimationEventHandler; // Transition Events onTransitionEnd?: TransitionEventHandler; } // This interface is not complete. Only properties accepting // unitless numbers are listed here (see CSSProperty.js in React) interface CSSProperties { /** * Aligns a flex container's lines within the flex container when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis. */ alignContent?: any; /** * Sets the default alignment in the cross axis for all of the flex container's items, including anonymous flex items, similarly to how justify-content aligns items along the main axis. */ alignItems?: any; /** * Allows the default alignment to be overridden for individual flex items. */ alignSelf?: any; /** * This property allows precise alignment of elements, such as graphics, that do not have a baseline-table or lack the desired baseline in their baseline-table. With the alignment-adjust property, the position of the baseline identified by the alignment-baseline can be explicitly determined. It also determines precisely the alignment point for each glyph within a textual element. */ alignmentAdjust?: any; alignmentBaseline?: any; /** * Defines a length of time to elapse before an animation starts, allowing an animation to begin execution some time after it is applied. */ animationDelay?: any; /** * Defines whether an animation should run in reverse on some or all cycles. */ animationDirection?: any; /** * Specifies how many times an animation cycle should play. */ animationIterationCount?: any; /** * Defines the list of animations that apply to the element. */ animationName?: any; /** * Defines whether an animation is running or paused. */ animationPlayState?: any; /** * Allows changing the style of any element to platform-based interface elements or vice versa. */ appearance?: any; /** * Determines whether or not the “back” side of a transformed element is visible when facing the viewer. */ backfaceVisibility?: any; /** * Shorthand property to set the values for one or more of: * background-clip, background-color, background-image, * background-origin, background-position, background-repeat, * background-size, and background-attachment. */ background?: any; /** * If a background-image is specified, this property determines * whether that image's position is fixed within the viewport, * or scrolls along with its containing block. */ backgroundAttachment?: "scroll" | "fixed" | "local"; /** * This property describes how the element's background images should blend with each other and the element's background color. * The value is a list of blend modes that corresponds to each background image. Each element in the list will apply to the corresponding element of background-image. If a property doesn’t have enough comma-separated values to match the number of layers, the UA must calculate its used value by repeating the list of values until there are enough. */ backgroundBlendMode?: any; /** * Sets the background color of an element. */ backgroundColor?: any; backgroundComposite?: any; /** * Applies one or more background images to an element. These can be any valid CSS image, including url() paths to image files or CSS gradients. */ backgroundImage?: any; /** * Specifies what the background-position property is relative to. */ backgroundOrigin?: any; /** * Sets the position of a background image. */ backgroundPosition?: any; /** * Background-repeat defines if and how background images will be repeated after they have been sized and positioned */ backgroundRepeat?: any; /** * Obsolete - spec retired, not implemented. */ baselineShift?: any; /** * Non standard. Sets or retrieves the location of the Dynamic HTML (DHTML) behavior. */ behavior?: any; /** * Shorthand property that defines the different properties of all four sides of an element's border in a single declaration. It can be used to set border-width, border-style and border-color, or a subset of these. */ border?: any; /** * Shorthand that sets the values of border-bottom-color, * border-bottom-style, and border-bottom-width. */ borderBottom?: any; /** * Sets the color of the bottom border of an element. */ borderBottomColor?: any; /** * Defines the shape of the border of the bottom-left corner. */ borderBottomLeftRadius?: any; /** * Defines the shape of the border of the bottom-right corner. */ borderBottomRightRadius?: any; /** * Sets the line style of the bottom border of a box. */ borderBottomStyle?: any; /** * Sets the width of an element's bottom border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderBottomWidth?: any; /** * Border-collapse can be used for collapsing the borders between table cells */ borderCollapse?: any; /** * The CSS border-color property sets the color of an element's four borders. This property can have from one to four values, made up of the elementary properties: • border-top-color * • border-right-color * • border-bottom-color * • border-left-color The default color is the currentColor of each of these values. * If you provide one value, it sets the color for the element. Two values set the horizontal and vertical values, respectively. Providing three values sets the top, vertical, and bottom values, in that order. Four values set all for sides: top, right, bottom, and left, in that order. */ borderColor?: any; /** * Specifies different corner clipping effects, such as scoop (inner curves), bevel (straight cuts) or notch (cut-off rectangles). Works along with border-radius to specify the size of each corner effect. */ borderCornerShape?: any; /** * The property border-image-source is used to set the image to be used instead of the border style. If this is set to none the border-style is used instead. */ borderImageSource?: any; /** * The border-image-width CSS property defines the offset to use for dividing the border image in nine parts, the top-left corner, central top edge, top-right-corner, central right edge, bottom-right corner, central bottom edge, bottom-left corner, and central right edge. They represent inward distance from the top, right, bottom, and left edges. */ borderImageWidth?: any; /** * Shorthand property that defines the border-width, border-style and border-color of an element's left border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the left border — border-left-width, border-left-style and border-left-color. */ borderLeft?: any; /** * The CSS border-left-color property sets the color of an element's left border. This page explains the border-left-color value, but often you will find it more convenient to fix the border's left color as part of a shorthand set, either border-left or border-color. * Colors can be defined several ways. For more information, see Usage. */ borderLeftColor?: any; /** * Sets the style of an element's left border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. */ borderLeftStyle?: any; /** * Sets the width of an element's left border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderLeftWidth?: any; /** * Shorthand property that defines the border-width, border-style and border-color of an element's right border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the right border — border-right-width, border-right-style and border-right-color. */ borderRight?: any; /** * Sets the color of an element's right border. This page explains the border-right-color value, but often you will find it more convenient to fix the border's right color as part of a shorthand set, either border-right or border-color. * Colors can be defined several ways. For more information, see Usage. */ borderRightColor?: any; /** * Sets the style of an element's right border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. */ borderRightStyle?: any; /** * Sets the width of an element's right border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderRightWidth?: any; /** * Specifies the distance between the borders of adjacent cells. */ borderSpacing?: any; /** * Sets the style of an element's four borders. This property can have from one to four values. With only one value, the value will be applied to all four borders; otherwise, this works as a shorthand property for each of border-top-style, border-right-style, border-bottom-style, border-left-style, where each border style may be assigned a separate value. */ borderStyle?: any; /** * Shorthand property that defines the border-width, border-style and border-color of an element's top border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the top border — border-top-width, border-top-style and border-top-color. */ borderTop?: any; /** * Sets the color of an element's top border. This page explains the border-top-color value, but often you will find it more convenient to fix the border's top color as part of a shorthand set, either border-top or border-color. * Colors can be defined several ways. For more information, see Usage. */ borderTopColor?: any; /** * Sets the rounding of the top-left corner of the element. */ borderTopLeftRadius?: any; /** * Sets the rounding of the top-right corner of the element. */ borderTopRightRadius?: any; /** * Sets the style of an element's top border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. */ borderTopStyle?: any; /** * Sets the width of an element's top border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderTopWidth?: any; /** * Sets the width of an element's four borders. This property can have from one to four values. This is a shorthand property for setting values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderWidth?: any; /** * This property specifies how far an absolutely positioned box's bottom margin edge is offset above the bottom edge of the box's containing block. For relatively positioned boxes, the offset is with respect to the bottom edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties). */ bottom?: any; /** * Obsolete. */ boxAlign?: any; /** * Breaks a box into fragments creating new borders, padding and repeating backgrounds or lets it stay as a continuous box on a page break, column break, or, for inline elements, at a line break. */ boxDecorationBreak?: any; /** * Deprecated */ boxDirection?: any; /** * Do not use. This property has been replaced by the flex-wrap property. * Gets or sets a value that specifies the direction to add successive rows or columns when the value of box-lines is set to multiple. */ boxLineProgression?: any; /** * Do not use. This property has been replaced by the flex-wrap property. * Gets or sets a value that specifies whether child elements wrap onto multiple lines or columns based on the space available in the object. */ boxLines?: any; /** * Do not use. This property has been replaced by flex-order. * Specifies the ordinal group that a child element of the object belongs to. This ordinal value identifies the display order (along the axis defined by the box-orient property) for the group. */ boxOrdinalGroup?: any; /** * Deprecated. */ boxFlex?: number; /** * Deprecated. */ boxFlexGroup?: number; /** * The CSS break-after property allows you to force a break on multi-column layouts. More specifically, it allows you to force a break after an element. It allows you to determine if a break should occur, and what type of break it should be. The break-after CSS property describes how the page, column or region break behaves after the generated box. If there is no generated box, the property is ignored. */ breakAfter?: any; /** * Control page/column/region breaks that fall above a block of content */ breakBefore?: any; /** * Control page/column/region breaks that fall within a block of content */ breakInside?: any; /** * The clear CSS property specifies if an element can be positioned next to or must be positioned below the floating elements that precede it in the markup. */ clear?: any; /** * Deprecated; see clip-path. * Lets you specify the dimensions of an absolutely positioned element that should be visible, and the element is clipped into this shape, and displayed. */ clip?: any; /** * Clipping crops an graphic, so that only a portion of the graphic is rendered, or filled. This clip-rule property, when used with the clip-path property, defines which clip rule, or algorithm, to use when filling the different parts of a graphics. */ clipRule?: any; /** * The color property sets the color of an element's foreground content (usually text), accepting any standard CSS color from keywords and hex values to RGB(a) and HSL(a). */ color?: any; /** * Describes the number of columns of the element. */ columnCount?: number; /** * Specifies how to fill columns (balanced or sequential). */ columnFill?: any; /** * The column-gap property controls the width of the gap between columns in multi-column elements. */ columnGap?: any; /** * Sets the width, style, and color of the rule between columns. */ columnRule?: any; /** * Specifies the color of the rule between columns. */ columnRuleColor?: any; /** * Specifies the width of the rule between columns. */ columnRuleWidth?: any; /** * The column-span CSS property makes it possible for an element to span across all columns when its value is set to all. An element that spans more than one column is called a spanning element. */ columnSpan?: any; /** * Specifies the width of columns in multi-column elements. */ columnWidth?: any; /** * This property is a shorthand property for setting column-width and/or column-count. */ columns?: any; /** * The counter-increment property accepts one or more names of counters (identifiers), each one optionally followed by an integer which specifies the value by which the counter should be incremented (e.g. if the value is 2, the counter increases by 2 each time it is invoked). */ counterIncrement?: any; /** * The counter-reset property contains a list of one or more names of counters, each one optionally followed by an integer (otherwise, the integer defaults to 0.) Each time the given element is invoked, the counters specified by the property are set to the given integer. */ counterReset?: any; /** * The cue property specifies sound files (known as an "auditory icon") to be played by speech media agents before and after presenting an element's content; if only one file is specified, it is played both before and after. The volume at which the file(s) should be played, relative to the volume of the main element, may also be specified. The icon files may also be set separately with the cue-before and cue-after properties. */ cue?: any; /** * The cue-after property specifies a sound file (known as an "auditory icon") to be played by speech media agents after presenting an element's content; the volume at which the file should be played may also be specified. The shorthand property cue sets cue sounds for both before and after the element is presented. */ cueAfter?: any; /** * Specifies the mouse cursor displayed when the mouse pointer is over an element. */ cursor?: any; /** * The direction CSS property specifies the text direction/writing direction. The rtl is used for Hebrew or Arabic text, the ltr is for other languages. */ direction?: any; /** * This property specifies the type of rendering box used for an element. It is a shorthand property for many other display properties. */ display?: any; /** * The ‘fill’ property paints the interior of the given graphical element. The area to be painted consists of any areas inside the outline of the shape. To determine the inside of the shape, all subpaths are considered, and the interior is determined according to the rules associated with the current value of the ‘fill-rule’ property. The zero-width geometric outline of a shape is included in the area to be painted. */ fill?: any; /** * SVG: Specifies the opacity of the color or the content the current object is filled with. */ fillOpacity?: number; /** * The ‘fill-rule’ property indicates the algorithm which is to be used to determine what parts of the canvas are included inside the shape. For a simple, non-intersecting path, it is intuitively clear what region lies "inside"; however, for a more complex path, such as a path that intersects itself or where one subpath encloses another, the interpretation of "inside" is not so obvious. * The ‘fill-rule’ property provides two options for how the inside of a shape is determined: */ fillRule?: any; /** * Applies various image processing effects. This property is largely unsupported. See Compatibility section for more information. */ filter?: any; /** * Shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. */ flex?: number | string; /** * Obsolete, do not use. This property has been renamed to align-items. * Specifies the alignment (perpendicular to the layout axis defined by the flex-direction property) of child elements of the object. */ flexAlign?: any; /** * The flex-basis CSS property describes the initial main size of the flex item before any free space is distributed according to the flex factors described in the flex property (flex-grow and flex-shrink). */ flexBasis?: any; /** * The flex-direction CSS property describes how flex items are placed in the flex container, by setting the direction of the flex container's main axis. */ flexDirection?: any; /** * The flex-flow CSS property defines the flex container's main and cross axis. It is a shorthand property for the flex-direction and flex-wrap properties. */ flexFlow?: any; /** * Specifies the flex grow factor of a flex item. */ flexGrow?: number; /** * Do not use. This property has been renamed to align-self * Specifies the alignment (perpendicular to the layout axis defined by flex-direction) of child elements of the object. */ flexItemAlign?: any; /** * Do not use. This property has been renamed to align-content. * Specifies how a flexbox's lines align within the flexbox when there is extra space along the axis that is perpendicular to the axis defined by the flex-direction property. */ flexLinePack?: any; /** * Gets or sets a value that specifies the ordinal group that a flexbox element belongs to. This ordinal value identifies the display order for the group. */ flexOrder?: any; /** * Specifies the flex shrink factor of a flex item. */ flexShrink?: number; /** * Elements which have the style float are floated horizontally. These elements can move as far to the left or right of the containing element. All elements after the floating element will flow around it, but elements before the floating element are not impacted. If several floating elements are placed after each other, they will float next to each other as long as there is room. */ float?: any; /** * Flows content from a named flow (specified by a corresponding flow-into) through selected elements to form a dynamic chain of layout regions. */ flowFrom?: any; /** * The font property is shorthand that allows you to do one of two things: you can either set up six of the most mature font properties in one line, or you can set one of a choice of keywords to adopt a system font setting. */ font?: any; /** * The font-family property allows one or more font family names and/or generic family names to be specified for usage on the selected element(s)' text. The browser then goes through the list; for each character in the selection it applies the first font family that has an available glyph for that character. */ fontFamily?: any; /** * The font-kerning property allows contextual adjustment of inter-glyph spacing, i.e. the spaces between the characters in text. This property controls <bold>metric kerning</bold> - that utilizes adjustment data contained in the font. Optical Kerning is not supported as yet. */ fontKerning?: any; /** * Specifies the size of the font. Used to compute em and ex units. */ fontSize?: number | string; /** * The font-size-adjust property adjusts the font-size of the fallback fonts defined with font-family, so that the x-height is the same no matter what font is used. This preserves the readability of the text when fallback happens. */ fontSizeAdjust?: any; /** * Allows you to expand or condense the widths for a normal, condensed, or expanded font face. */ fontStretch?: any; /** * The font-style property allows normal, italic, or oblique faces to be selected. Italic forms are generally cursive in nature while oblique faces are typically sloped versions of the regular face. Oblique faces can be simulated by artificially sloping the glyphs of the regular face. */ fontStyle?: any; /** * This value specifies whether the user agent is allowed to synthesize bold or oblique font faces when a font family lacks bold or italic faces. */ fontSynthesis?: any; /** * The font-variant property enables you to select the small-caps font within a font family. */ fontVariant?: any; /** * Fonts can provide alternate glyphs in addition to default glyph for a character. This property provides control over the selection of these alternate glyphs. */ fontVariantAlternates?: any; /** * Specifies the weight or boldness of the font. */ fontWeight?: "normal" | "bold" | "lighter" | "bolder" | number; /** * Lays out one or more grid items bound by 4 grid lines. Shorthand for setting grid-column-start, grid-column-end, grid-row-start, and grid-row-end in a single declaration. */ gridArea?: any; /** * Controls a grid item's placement in a grid area, particularly grid position and a grid span. Shorthand for setting grid-column-start and grid-column-end in a single declaration. */ gridColumn?: any; /** * Controls a grid item's placement in a grid area as well as grid position and a grid span. The grid-column-end property (with grid-row-start, grid-row-end, and grid-column-start) determines a grid item's placement by specifying the grid lines of a grid item's grid area. */ gridColumnEnd?: any; /** * Determines a grid item's placement by specifying the starting grid lines of a grid item's grid area . A grid item's placement in a grid area consists of a grid position and a grid span. See also ( grid-row-start, grid-row-end, and grid-column-end) */ gridColumnStart?: any; /** * Gets or sets a value that indicates which row an element within a Grid should appear in. Shorthand for setting grid-row-start and grid-row-end in a single declaration. */ gridRow?: any; /** * Determines a grid item’s placement by specifying the block-end. A grid item's placement in a grid area consists of a grid position and a grid span. The grid-row-end property (with grid-row-start, grid-column-start, and grid-column-end) determines a grid item's placement by specifying the grid lines of a grid item's grid area. */ gridRowEnd?: any; /** * Specifies a row position based upon an integer location, string value, or desired row size. * css/properties/grid-row is used as short-hand for grid-row-position and grid-row-position */ gridRowPosition?: any; gridRowSpan?: any; /** * Specifies named grid areas which are not associated with any particular grid item, but can be referenced from the grid-placement properties. The syntax of the grid-template-areas property also provides a visualization of the structure of the grid, making the overall layout of the grid container easier to understand. */ gridTemplateAreas?: any; /** * Specifies (with grid-template-rows) the line names and track sizing functions of the grid. Each sizing function can be specified as a length, a percentage of the grid container’s size, a measurement of the contents occupying the column or row, or a fraction of the free space in the grid. */ gridTemplateColumns?: any; /** * Specifies (with grid-template-columns) the line names and track sizing functions of the grid. Each sizing function can be specified as a length, a percentage of the grid container’s size, a measurement of the contents occupying the column or row, or a fraction of the free space in the grid. */ gridTemplateRows?: any; /** * Sets the height of an element. The content area of the element height does not include the padding, border, and margin of the element. */ height?: any; /** * Specifies the minimum number of characters in a hyphenated word */ hyphenateLimitChars?: any; /** * Indicates the maximum number of successive hyphenated lines in an element. The ‘no-limit’ value means that there is no limit. */ hyphenateLimitLines?: any; /** * Specifies the maximum amount of trailing whitespace (before justification) that may be left in a line before hyphenation is triggered to pull part of a word from the next line back up into the current one. */ hyphenateLimitZone?: any; /** * Specifies whether or not words in a sentence can be split by the use of a manual or automatic hyphenation mechanism. */ hyphens?: any; imeMode?: any; layoutGrid?: any; layoutGridChar?: any; layoutGridLine?: any; layoutGridMode?: any; layoutGridType?: any; /** * Sets the left edge of an element */ left?: any; /** * The letter-spacing CSS property specifies the spacing behavior between text characters. */ letterSpacing?: any; /** * Deprecated. Gets or sets line-breaking rules for text in selected languages such as Japanese, Chinese, and Korean. */ lineBreak?: any; lineClamp?: number; /** * Specifies the height of an inline block level element. */ lineHeight?: number | string; /** * Shorthand property that sets the list-style-type, list-style-position and list-style-image properties in one declaration. */ listStyle?: any; /** * This property sets the image that will be used as the list item marker. When the image is available, it will replace the marker set with the 'list-style-type' marker. That also means that if the image is not available, it will show the style specified by list-style-property */ listStyleImage?: any; /** * Specifies if the list-item markers should appear inside or outside the content flow. */ listStylePosition?: any; /** * Specifies the type of list-item marker in a list. */ listStyleType?: any; /** * The margin property is shorthand to allow you to set all four margins of an element at once. Its equivalent longhand properties are margin-top, margin-right, margin-bottom and margin-left. Negative values are also allowed. */ margin?: any; /** * margin-bottom sets the bottom margin of an element. */ marginBottom?: any; /** * margin-left sets the left margin of an element.