react-input-range
Advanced tools
Comparing version 1.1.4 to 1.1.5
@@ -0,1 +1,11 @@ | ||
<a name="1.1.5"></a> | ||
## [1.1.5](https://github.com/davidchin/react-input-range/compare/v1.1.4...v1.1.5) (2017-07-09) | ||
### Bug Fixes | ||
* Fix Typescript definition file ([4935745](https://github.com/davidchin/react-input-range/commit/4935745)) | ||
<a name="1.1.4"></a> | ||
@@ -2,0 +12,0 @@ ## [1.1.4](https://github.com/davidchin/react-input-range/compare/v1.1.3...v1.1.4) (2017-05-20) |
{ | ||
"name": "react-input-range", | ||
"version": "1.1.4", | ||
"version": "1.1.5", | ||
"description": "React component for inputting numeric values within a range", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
import * as React from 'react'; | ||
declare interface Range { | ||
export interface Range { | ||
max: number; | ||
@@ -8,3 +8,3 @@ min: number; | ||
declare interface InputRangeClassNames { | ||
export interface InputRangeClassNames { | ||
activeTrack: string; | ||
@@ -22,3 +22,3 @@ disabledInputRange: string; | ||
declare interface InputRangeProps { | ||
export interface InputRangeProps { | ||
ariaLabelledby?: string; | ||
@@ -39,4 +39,3 @@ ariaControls?: string; | ||
declare class InputRange extends React.Component<InputRangeProps, any> { | ||
} | ||
export default class InputRange extends React.Component<InputRangeProps, any> { | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
868672
6168