@types/halogenium
Advanced tools
+11
-11
@@ -23,22 +23,22 @@ // Type definitions for halogenium 2.3 | ||
| export interface HalogenCommonProps { | ||
| loading?: boolean; | ||
| color?: string; | ||
| id?: string; | ||
| className?: string; | ||
| verticalAlign?: VerticalAlign; | ||
| loading?: boolean | undefined; | ||
| color?: string | undefined; | ||
| id?: string | undefined; | ||
| className?: string | undefined; | ||
| verticalAlign?: VerticalAlign | undefined; | ||
| } | ||
| export interface SizeLoaderProps extends HalogenCommonProps { | ||
| size?: number | string; | ||
| size?: number | string | undefined; | ||
| } | ||
| export interface MarginLoaderProps extends HalogenCommonProps { | ||
| margin?: number | string; | ||
| size?: number | string; | ||
| margin?: number | string | undefined; | ||
| size?: number | string | undefined; | ||
| } | ||
| export interface RadiusLoaderProps extends MarginLoaderProps { | ||
| height?: number | string; | ||
| width?: number | string; | ||
| radius?: number | string; | ||
| height?: number | string | undefined; | ||
| width?: number | string | undefined; | ||
| radius?: number | string | undefined; | ||
| } | ||
@@ -45,0 +45,0 @@ |
| MIT License | ||
| Copyright (c) Microsoft Corporation. All rights reserved. | ||
| Copyright (c) Microsoft Corporation. | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
| { | ||
| "name": "@types/halogenium", | ||
| "version": "2.3.0", | ||
| "version": "2.3.1", | ||
| "description": "TypeScript definitions for halogenium", | ||
| "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/halogenium", | ||
| "license": "MIT", | ||
@@ -14,3 +15,3 @@ "contributors": [ | ||
| "main": "", | ||
| "types": "index", | ||
| "types": "index.d.ts", | ||
| "repository": { | ||
@@ -25,4 +26,4 @@ "type": "git", | ||
| }, | ||
| "typesPublisherContentHash": "0b620915ee829261fd887eec4d35da3fc36ac353de3c48aa9e9c7db06637f01b", | ||
| "typeScriptVersion": "2.8" | ||
| "typesPublisherContentHash": "2abc9c45a4cddbda569cdd5486098f4c02bbb89a31a70c4ad9d76f8573849b2f", | ||
| "typeScriptVersion": "3.6" | ||
| } |
+87
-5
@@ -8,10 +8,92 @@ # Installation | ||
| # Details | ||
| Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/halogenium | ||
| Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/halogenium. | ||
| ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/halogenium/index.d.ts) | ||
| ````ts | ||
| // Type definitions for halogenium 2.3 | ||
| // Project: https://github.com/kirillDanshin/halogenium#readme | ||
| // Definitions by: Weslley Nascimento Rocha <https://github.com/WeslleyNasRocha> | ||
| // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
| // TypeScript Version: 2.8 | ||
| Additional Details | ||
| * Last updated: Wed, 02 Oct 2019 16:09:00 GMT | ||
| * Dependencies: @types/react | ||
| import * as React from 'react'; | ||
| export type VerticalAlign = | ||
| | 'baseline' | ||
| | 'length' | ||
| | 'sub' | ||
| | 'super' | ||
| | 'top' | ||
| | 'text-top' | ||
| | 'middle' | ||
| | 'bottom' | ||
| | 'text-bottom' | ||
| | 'initial' | ||
| | 'inherit'; | ||
| export interface HalogenCommonProps { | ||
| loading?: boolean | undefined; | ||
| color?: string | undefined; | ||
| id?: string | undefined; | ||
| className?: string | undefined; | ||
| verticalAlign?: VerticalAlign | undefined; | ||
| } | ||
| export interface SizeLoaderProps extends HalogenCommonProps { | ||
| size?: number | string | undefined; | ||
| } | ||
| export interface MarginLoaderProps extends HalogenCommonProps { | ||
| margin?: number | string | undefined; | ||
| size?: number | string | undefined; | ||
| } | ||
| export interface RadiusLoaderProps extends MarginLoaderProps { | ||
| height?: number | string | undefined; | ||
| width?: number | string | undefined; | ||
| radius?: number | string | undefined; | ||
| } | ||
| /** | ||
| * React components | ||
| */ | ||
| export class PulseLoader extends React.Component<MarginLoaderProps> { } | ||
| export class RotateLoader extends React.Component<MarginLoaderProps> { } | ||
| export class BeatLoader extends React.Component<MarginLoaderProps> { } | ||
| export class RiseLoader extends React.Component<MarginLoaderProps> { } | ||
| export class SyncLoader extends React.Component<MarginLoaderProps> { } | ||
| export class GridLoader extends React.Component<MarginLoaderProps> { } | ||
| export class ClipLoader extends React.Component<SizeLoaderProps> { } | ||
| export class SquareLoader extends React.Component<SizeLoaderProps> { } | ||
| export class DotLoader extends React.Component<SizeLoaderProps> { } | ||
| export class PacmanLoader extends React.Component<MarginLoaderProps> { } | ||
| export class MoonLoader extends React.Component<SizeLoaderProps> { } | ||
| export class RingLoader extends React.Component<SizeLoaderProps> { } | ||
| export class BounceLoader extends React.Component<SizeLoaderProps> { } | ||
| export class SkewLoader extends React.Component<SizeLoaderProps> { } | ||
| export class FadeLoader extends React.Component<RadiusLoaderProps> { } | ||
| export class ScaleLoader extends React.Component<RadiusLoaderProps> { } | ||
| ```` | ||
| ### Additional Details | ||
| * Last updated: Thu, 08 Jul 2021 14:22:40 GMT | ||
| * Dependencies: [@types/react](https://npmjs.com/package/@types/react) | ||
| * Global values: none | ||
| # Credits | ||
| These definitions were written by Weslley Nascimento Rocha <https://github.com/WeslleyNasRocha>. | ||
| These definitions were written by [Weslley Nascimento Rocha](https://github.com/WeslleyNasRocha). |
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
7316
57.54%0
-100%99
482.35%