@progress/kendo-react-inputs 7.0.0-develop.9 → 7.0.1-develop.1
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/colors/ColorPalette.d.ts +1 -1
- package/dist/cdn/js/kendo-react-inputs.js +3 -3
- package/index.js +3 -3
- package/index.mjs +1286 -1277
- package/input/Input.d.ts +1 -1
- package/package.json +10 -9
- package/radiobutton/interfaces/RadioGroupProps.d.ts +4 -0
package/input/Input.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-inputs",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1-develop.1",
|
|
4
4
|
"description": "React Inputs offer a customizable interface for users to enter and pick different information. KendoReact Input package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"homepage": "https://www.telerik.com/kendo-react-ui",
|
|
8
8
|
"main": "./index.js",
|
|
9
|
+
"module": "./index.mjs",
|
|
9
10
|
"types": "./index.d.ts",
|
|
10
11
|
"exports": {
|
|
11
12
|
".": {
|
|
@@ -18,14 +19,14 @@
|
|
|
18
19
|
"@progress/kendo-drawing": "^1.17.2",
|
|
19
20
|
"@progress/kendo-inputs-common": "^3.1.0",
|
|
20
21
|
"@progress/kendo-licensing": "^1.3.0",
|
|
21
|
-
"@progress/kendo-react-animation": "7.0.
|
|
22
|
-
"@progress/kendo-react-buttons": "7.0.
|
|
23
|
-
"@progress/kendo-react-common": "7.0.
|
|
24
|
-
"@progress/kendo-react-dialogs": "7.0.
|
|
25
|
-
"@progress/kendo-react-form": "7.0.
|
|
26
|
-
"@progress/kendo-react-intl": "7.0.
|
|
27
|
-
"@progress/kendo-react-labels": "7.0.
|
|
28
|
-
"@progress/kendo-react-popup": "7.0.
|
|
22
|
+
"@progress/kendo-react-animation": "7.0.1-develop.1",
|
|
23
|
+
"@progress/kendo-react-buttons": "7.0.1-develop.1",
|
|
24
|
+
"@progress/kendo-react-common": "7.0.1-develop.1",
|
|
25
|
+
"@progress/kendo-react-dialogs": "7.0.1-develop.1",
|
|
26
|
+
"@progress/kendo-react-form": "7.0.1-develop.1",
|
|
27
|
+
"@progress/kendo-react-intl": "7.0.1-develop.1",
|
|
28
|
+
"@progress/kendo-react-labels": "7.0.1-develop.1",
|
|
29
|
+
"@progress/kendo-react-popup": "7.0.1-develop.1",
|
|
29
30
|
"@progress/kendo-svg-icons": "^2.0.0",
|
|
30
31
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
31
32
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|
|
@@ -23,6 +23,10 @@ export interface RadioGroupProps {
|
|
|
23
23
|
* Specifies a list of CSS classes that will be added to the RadioGroup element.
|
|
24
24
|
*/
|
|
25
25
|
className?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Specifies the value of the `id` attribute that will be added to the RadioGroup element.
|
|
28
|
+
*/
|
|
29
|
+
id?: string;
|
|
26
30
|
/**
|
|
27
31
|
* The collection of radio buttons that will be rendered in the RadioGroup ([see example]({% slug overview_radiobutton %})).
|
|
28
32
|
*/
|