@progress/kendo-react-common
Advanced tools
Comparing version 1.3.0-dev.201808201254 to 1.3.0-dev.201808231222
@@ -8,11 +8,11 @@ import * as React from 'react'; | ||
/** | ||
* Specifies the value of an input element. Used to define if the input is empty. | ||
* Specifies the value of an `input` element. Used to define if the input is empty. | ||
*/ | ||
value?: string; | ||
/** | ||
* Specifies the placeholder of an input element. Used to define if the input is empty. | ||
* Specifies the placeholder of an `input` element. Used to define if the input is empty. | ||
*/ | ||
placeholder?: string; | ||
/** | ||
* Specifies the validity of an input element. Used to define invalid state. | ||
* Specifies the validity of an `input` element. Used to define the invalid state of the input. | ||
*/ | ||
@@ -19,0 +19,0 @@ valid?: boolean; |
@@ -6,11 +6,44 @@ /** | ||
/** | ||
* Controls the form error message of the component. If set to an empty sting, no error will be shown. | ||
* Controls the form error message of the component. If set to an empty string, no error will be thrown. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
validationMessage?: string; | ||
/** | ||
* Sets if `null` is a valid value of the component. | ||
* Sets if `null` is a valid value for the component. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
required?: boolean; | ||
/** | ||
* Specifies the name property of the input DOM element. | ||
* Specifies the `name` property of the `input` DOM element. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
@@ -20,6 +53,28 @@ name?: string; | ||
* Overrides the `validity` state of the component. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
valid?: boolean; | ||
/** | ||
* If set to `false` no visual representation of the invalid state of the component will be applied. | ||
* If set to `false`, no visual representation of the invalid state of the component will be applied. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
@@ -37,3 +92,14 @@ validityStyles?: boolean; | ||
/** | ||
* Represents the `validity` states of a Kendo UI for React Form Component. | ||
* Represents the `validity` state of the Kendo UI form components for React. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
@@ -40,0 +106,0 @@ export interface FormComponentValidity { |
@@ -8,11 +8,11 @@ import * as React from 'react'; | ||
/** | ||
* Specifies the value of an input element. Used to define if the input is empty. | ||
* Specifies the value of an `input` element. Used to define if the input is empty. | ||
*/ | ||
value?: string; | ||
/** | ||
* Specifies the placeholder of an input element. Used to define if the input is empty. | ||
* Specifies the placeholder of an `input` element. Used to define if the input is empty. | ||
*/ | ||
placeholder?: string; | ||
/** | ||
* Specifies the validity of an input element. Used to define invalid state. | ||
* Specifies the validity of an `input` element. Used to define the invalid state of the input. | ||
*/ | ||
@@ -19,0 +19,0 @@ valid?: boolean; |
@@ -6,11 +6,44 @@ /** | ||
/** | ||
* Controls the form error message of the component. If set to an empty sting, no error will be shown. | ||
* Controls the form error message of the component. If set to an empty string, no error will be thrown. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
validationMessage?: string; | ||
/** | ||
* Sets if `null` is a valid value of the component. | ||
* Sets if `null` is a valid value for the component. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
required?: boolean; | ||
/** | ||
* Specifies the name property of the input DOM element. | ||
* Specifies the `name` property of the `input` DOM element. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
@@ -20,6 +53,28 @@ name?: string; | ||
* Overrides the `validity` state of the component. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
valid?: boolean; | ||
/** | ||
* If set to `false` no visual representation of the invalid state of the component will be applied. | ||
* If set to `false`, no visual representation of the invalid state of the component will be applied. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
@@ -37,3 +92,14 @@ validityStyles?: boolean; | ||
/** | ||
* Represents the `validity` states of a Kendo UI for React Form Component. | ||
* Represents the `validity` state of the Kendo UI form components for React. | ||
* | ||
* For runnable examples on forms support, refer to the documentation of the respective form component: | ||
* * [DateInput]({% slug forms_dateinput %}) | ||
* * [DatePicker]({% slug forms_datepicker %}) | ||
* * [TimePicker]({% slug forms_timepicker %}) | ||
* * [AutoComplete]({% slug forms_autocomplete %}) | ||
* * [ComboBox]({% slug forms_combobox %}) | ||
* * [DropDownList]({% slug forms_dropdownlist %}) | ||
* * [MultiSelect]({% slug forms_multiselect %}) | ||
* * [Input]({% slug forms_input %}) | ||
* * [NumericTextBox]({% slug forms_numerictextbox %}) | ||
*/ | ||
@@ -40,0 +106,0 @@ export interface FormComponentValidity { |
{ | ||
"name": "@progress/kendo-react-common", | ||
"description": "Kendo UI for React Common Utilities package", | ||
"version": "1.3.0-dev.201808201254", | ||
"version": "1.3.0-dev.201808231222", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
44094
743