@progress/kendo-react-dropdowns 10.1.0-develop.8 → 10.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,10 +6,10 @@
6
6
  >
7
7
  > - This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns)—an enterprise-grade UI library with 120+ free and premium components.
8
8
  > - It contains both free and premium KendoReact components and tools. To use the premium components, you will need to [purchase a license](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns) or register for a [free trial](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns). You can use the free components without having to sign up or get a license key.
9
- > - If you're looking for free React components, check out [Get Started with KendoReact Free](https://www.telerik.com/kendo-react-ui/components/free).
10
- > - If you have an active license, visit the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns) to learn how to configure your KendoReact licensing.
11
- > - Installing and working with this package indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns).
12
- The 30-day free trial gives you access to all KendoReact components and their full functionality. Additionally, for the period of your trial, you can use our legendary technical support provided directly by the KendoReact dev team!
9
+ > - If you're looking for free React components, check out [Get Started with KendoReact Free](https://www.telerik.com/kendo-react-ui/components/free).
10
+ > - If you have an active license, visit the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns) to learn how to configure your KendoReact licensing.
11
+ > - Installing and working with this package indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns).
12
+ > The 30-day free trial gives you access to all KendoReact components and their full functionality. Additionally, for the period of your trial, you can use our legendary technical support provided directly by the KendoReact dev team!
13
13
  >
14
14
  > [Start using KendoReact](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-dropdowns) and speed up your development process!
15
15
 
@@ -18,7 +18,7 @@ The React DropDowns, part of KendoReact, offer a highly customizable interface f
18
18
  How to start:
19
19
 
20
20
  ```sh
21
- npm install --save @progress/kendo-react-dropdowns @progress/kendo-licensing @progress/kendo-react-buttons @progress/kendo-react-common @progress/kendo-react-inputs @progress/kendo-react-intl @progress/kendo-react-labels @progress/kendo-react-layout @progress/kendo-react-popup @progress/kendo-react-treeview @progress/kendo-svg-icons
21
+ npm i @progress/kendo-react-dropdowns
22
22
  ```
23
23
 
24
24
  What's in this package:
@@ -64,7 +64,7 @@ How to use the AutoComplete component in your apps:
64
64
  import { AutoComplete } from '@progress/kendo-react-dropdowns';
65
65
  ...
66
66
  /**
67
- * Provide the data to populate the list of suggestions.
67
+ * Provide the data to populate the list of suggestions.
68
68
  */
69
69
  <Autocomplete
70
70
  data={data}
@@ -83,7 +83,7 @@ How to use the ComboBox component in your apps:
83
83
  import { ComboBox } from '@progress/kendo-react-dropdowns';
84
84
  ...
85
85
  /**
86
- * Provide the data to populate the choices in the ComboBox.
86
+ * Provide the data to populate the choices in the ComboBox.
87
87
  */
88
88
  <ComboBox
89
89
  data={data}
@@ -102,7 +102,7 @@ How to use the DropDownList component in your apps:
102
102
  import { DropDownList } from '@progress/kendo-react-dropdowns';
103
103
  ...
104
104
  /**
105
- * Provide the data to populate the choices in the DropDownList.
105
+ * Provide the data to populate the choices in the DropDownList.
106
106
  */
107
107
  <DropDownList
108
108
  data={data}
@@ -121,7 +121,7 @@ How to use the DropDownTree component in your apps:
121
121
  import { DropDownTree } from '@progress/kendo-react-dropdowns';
122
122
  ...
123
123
  /**
124
- * Provide the data to populate the choices in the DropDownTree.
124
+ * Provide the data to populate the choices in the DropDownTree.
125
125
  */
126
126
  <DropDownTree
127
127
  data={data}
@@ -140,7 +140,7 @@ How to use the MultiColumnComboBox component in your apps:
140
140
  import { MultiColumnComboBox } from '@progress/kendo-react-dropdowns';
141
141
  ...
142
142
  /**
143
- * Provide the data to populate the columns in the MultiColumnComboBox.
143
+ * Provide the data to populate the columns in the MultiColumnComboBox.
144
144
  * Define the columns for the MultiColumnComboBox.
145
145
  */
146
146
  <MultiColumnComboBox
@@ -161,7 +161,7 @@ How to use the MultiSelect component in your apps:
161
161
  import { MultiSelect } from '@progress/kendo-react-dropdowns';
162
162
  ...
163
163
  /**
164
- * Provide the data to populate the contents of the MultiSelect.
164
+ * Provide the data to populate the contents of the MultiSelect.
165
165
  */
166
166
  <MultiSelect
167
167
  data={data}
@@ -180,7 +180,7 @@ How to use the MultiSelect component in your apps:
180
180
  import { MultiSelectTree } from '@progress/kendo-react-dropdowns';
181
181
  ...
182
182
  /**
183
- * Provide the data to populate the contents of the MultiSelectTree.
183
+ * Provide the data to populate the contents of the MultiSelectTree.
184
184
  */
185
185
  <MultiSelectTree
186
186
  data={data}