typescript-test-1
Advanced tools
Comparing version 1.0.0 to 1.0.1
import * as React from 'react'; | ||
interface OptionProps { | ||
disabled?: boolean; | ||
value?: any; | ||
title?: string; | ||
children?: React.ReactNode; | ||
} | ||
import { OptionProps } from './option'; | ||
interface SelectProps { | ||
@@ -27,2 +22,3 @@ prefixCls?: string; | ||
declare class Select extends React.Component<SelectProps, any> { | ||
static Option: (props: OptionProps) => JSX.Element; | ||
componentDidMount(): void; | ||
@@ -29,0 +25,0 @@ render(): JSX.Element; |
@@ -15,2 +15,3 @@ var __extends = (this && this.__extends) || (function () { | ||
import * as React from 'react'; | ||
import Option from './option'; | ||
var Select = (function (_super) { | ||
@@ -29,2 +30,3 @@ __extends(Select, _super); | ||
}(React.Component)); | ||
Select.Option = Option; | ||
export default Select; |
@@ -1,2 +0,2 @@ | ||
export { default as Input } from './components/input'; | ||
export { default as Select } from './components/select'; | ||
export { default as Input } from './components/input/input'; | ||
export { default as Select } from './components/select/select'; |
{ | ||
"name": "typescript-test-1", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
10817
19
287