@types/react-widgets
Advanced tools
Comparing version 3.2.26 to 3.2.27
// Type definitions for react-widgets v3.2.1 | ||
// Project: https://github.com/jquense/react-widgets | ||
// Definitions by: Rogier Schouten <https://github.com/rogierschouten/> | ||
// Definitions by: Rogier Schouten <https://github.com/rogierschouten/>, Balázs Sándor <https://github.com/sanyatuning> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -5,0 +5,0 @@ // TypeScript Version: 2.1 |
import * as React from 'react'; | ||
import {ReactWidgetsCommonProps} from './CommonProps'; | ||
interface CalendarProps extends React.Props<CalendarClass>{ | ||
interface CalendarProps extends ReactWidgetsCommonProps<CalendarClass>{ | ||
/** | ||
@@ -100,8 +101,2 @@ * The current selected date, should be a Date object or null. | ||
centuryFormat?: string | ((day: Date) => string); | ||
/** | ||
* Mark whether the widget should render right-to-left. This property can also be implicitly | ||
* passed to the widget through a childContext prop (isRtl) this allows higher level | ||
* application components to specify the direction. | ||
*/ | ||
isRtl?: boolean; | ||
messages?: CalendarMessages; | ||
@@ -108,0 +103,0 @@ } |
import * as React from 'react'; | ||
import {ReactWidgetsCommonDropdownProps} from './CommonProps'; | ||
@@ -18,3 +19,3 @@ interface ComboBoxMessages { | ||
interface ComboBoxProps extends React.Props<ComboBoxClass> { | ||
interface ComboBoxProps extends ReactWidgetsCommonDropdownProps<ComboBoxClass> { | ||
/** | ||
@@ -67,12 +68,2 @@ * The current value of the Combobox. This can be an object (such as a member of the data | ||
/** | ||
* Disable the widget, if an Array of values is passed in only those values will be | ||
* disabled. | ||
*/ | ||
disabled?: boolean | any[]; | ||
/** | ||
* Place the Combobox in a read-only mode, If an Array of values is passed in only those | ||
* values will be read-only. | ||
*/ | ||
readOnly?: boolean | any[]; | ||
/** | ||
* Determines how to group the Combobox. Providing a string will group the data array by | ||
@@ -133,8 +124,2 @@ * that property. You can also provide a function which should return the group value. | ||
/** | ||
* mark whether the widget should render right-to-left. This property can also be implicitly | ||
* passed to the widget through a childContext prop (isRtl) this allows higher level | ||
* application components to specify the direction. | ||
*/ | ||
isRtl?: boolean; | ||
/** | ||
* Object hash containing display text and/or text for screen readers. Use the messages | ||
@@ -141,0 +126,0 @@ * object to localize widget text and increase accessibility. |
import * as React from 'react'; | ||
import {ReactWidgetsCommonDropdownProps} from './CommonProps'; | ||
interface DateTimePickerProps extends React.Props<DateTimePickerClass> { | ||
interface DateTimePickerProps extends ReactWidgetsCommonDropdownProps<DateTimePickerClass> { | ||
/** | ||
@@ -120,8 +121,2 @@ * Whether to show the date picker button. | ||
/** | ||
* Mark whether the widget should render right-to-left. This property can also be implicitly | ||
* passed to the widget through a childContext prop (isRtl) this allows higher level | ||
* application components to specify the direction. | ||
*/ | ||
isRtl?: boolean; | ||
/** | ||
* Object hash containing display text and/or text for screen readers. Use the messages | ||
@@ -128,0 +123,0 @@ * object to localize widget text and increase accessibility. |
import * as React from 'react'; | ||
import {ReactWidgetsCommonDropdownProps} from './CommonProps'; | ||
interface DropdownListProps extends React.Props<DropdownListClass> { | ||
interface DropdownListProps extends ReactWidgetsCommonDropdownProps<DropdownListClass> { | ||
/** | ||
@@ -54,11 +55,2 @@ * The current value of the DropdownList. This can be an object (such as a member of the | ||
/** | ||
* Disable the widget, if an Array of values is passed in only those values will be disabled. | ||
*/ | ||
disabled?: boolean | any[]; | ||
/** | ||
* Place the DropdownList in a read-only mode, If an Array of values is passed in only those | ||
* values will be read-only. | ||
*/ | ||
readOnly?: boolean | any[]; | ||
/** | ||
* Determines how to group the DropdownList. Providing a string will group the data array by | ||
@@ -136,8 +128,2 @@ * that property. You can also provide a function which should return the group value. | ||
/** | ||
* Mark whether the widget should render right-to-left. This property can also be implicitly | ||
* passed to the widget through a childContext prop (isRtl) this allows higher level | ||
* application components to specify the direction. | ||
*/ | ||
isRtl?: boolean; | ||
/** | ||
* Object hash containing display text and/or text for screen readers. Use the messages | ||
@@ -144,0 +130,0 @@ * object to localize widget text and increase accessibility. |
import * as React from 'react'; | ||
import {ReactWidgetsCommonDropdownProps} from './CommonProps'; | ||
interface MultiselectProps extends React.Props<MultiselectClass> { | ||
interface MultiselectProps extends ReactWidgetsCommonDropdownProps<MultiselectClass> { | ||
/** | ||
@@ -131,19 +132,2 @@ * The current values of the Multiselect. The value should can null, or an array of | ||
/** | ||
* Disable the widget, If an Array of values is passed in only the tags specified will be | ||
* disabled. | ||
*/ | ||
disabled?: boolean | any[]; | ||
/** | ||
* Place the widget in a readonly mode, If an Array of values is passed in only the tags | ||
* specified will be readonly. | ||
*/ | ||
readOnly?: boolean | any[]; | ||
/** | ||
* Mark whether the widget should render right-to-left. This property can also be implicitly | ||
* passed to the widget through a childContext prop (isRtl) this allows higher level | ||
* application components to specify the direction. | ||
* @default false | ||
*/ | ||
isRtl?: boolean; | ||
/** | ||
* Object hash containing display text and/or text for screen readers. Use the messages | ||
@@ -150,0 +134,0 @@ * object to localize widget text and increase accessibility. |
import * as React from 'react'; | ||
import {ReactWidgetsCommonProps} from './CommonProps'; | ||
interface NumberPickerProps extends React.Props<NumberPickerClass>{ | ||
interface NumberPickerProps extends ReactWidgetsCommonProps<NumberPickerClass>{ | ||
/** | ||
@@ -49,9 +50,2 @@ * The current value of the NumberPicker. | ||
/** | ||
* Mark whether the widget should render right-to-left. This property can also be implicitly | ||
* passed to the widget through a childContext prop (isRtl) this allows higher level | ||
* application components to specify the direction. | ||
* @default false | ||
*/ | ||
isRtl?: boolean; | ||
/** | ||
* Object hash containing display text and/or text for screen readers. Use the messages | ||
@@ -58,0 +52,0 @@ * object to localize widget text and increase accessibility. |
import * as React from 'react'; | ||
import {ReactWidgetsCommonProps} from './CommonProps'; | ||
interface SelectListProps extends React.Props<SelectListClass>{ | ||
interface SelectListProps extends ReactWidgetsCommonProps<SelectListClass>{ | ||
/** | ||
@@ -75,19 +76,2 @@ * The current value or values of the SelectList. This can be an object (such as a member of | ||
/** | ||
* Disable the widget, if an Array of values is passed in only those values will be | ||
* disabled. | ||
*/ | ||
disabled?: boolean | any[]; | ||
/** | ||
* Place the SelectList in a read-only mode, If an Array of values is passed in only those | ||
* values will be read-only. | ||
*/ | ||
readOnly?: boolean | any[]; | ||
/** | ||
* Mark whether the SelectList should render right-to-left. This property can also be | ||
* implicitly passed to the widget through a childContext prop (isRtl) this allows higher | ||
* level application components to specify the direction. | ||
* @default false | ||
*/ | ||
isRtl?: boolean; | ||
/** | ||
* Object hash containing display text and/or text for screen readers. Use the messages | ||
@@ -94,0 +78,0 @@ * object to localize widget text and increase accessibility. |
{ | ||
"name": "@types/react-widgets", | ||
"version": "3.2.26", | ||
"version": "3.2.27", | ||
"description": "TypeScript definitions for react-widgets", | ||
"license": "MIT", | ||
"author": "Rogier Schouten <https://github.com/rogierschouten/>", | ||
"contributors": [ | ||
{ | ||
"name": "Rogier Schouten", | ||
"url": "https://github.com/rogierschouten/" | ||
}, | ||
{ | ||
"name": "Balázs Sándor", | ||
"url": "https://github.com/sanyatuning" | ||
} | ||
], | ||
"main": "", | ||
@@ -17,4 +26,4 @@ "repository": { | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "0a7b6452847721a999d2e8a5a2000d132c2b7ad412a2d4148a883bff8cb07dd7", | ||
"typesPublisherContentHash": "66378c48e5757194cc781b2961b89a844f1836c11b5bb2fce0b26f497022c89f", | ||
"typeScriptVersion": "2.1" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/react-widgets | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-widgets | ||
Additional Details | ||
* Last updated: Thu, 26 Jan 2017 07:14:32 GMT | ||
* Last updated: Tue, 18 Apr 2017 15:11:46 GMT | ||
* Dependencies: react | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Rogier Schouten <https://github.com/rogierschouten/>. | ||
These definitions were written by Rogier Schouten <https://github.com/rogierschouten/>, Balázs Sándor <https://github.com/sanyatuning>. |
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
12
39627
895