@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/input/Input.d.ts CHANGED
@@ -81,7 +81,7 @@ export declare class InputWithoutContext extends React.Component<InputProps, Inp
81
81
  validityStyles: boolean;
82
82
  };
83
83
  private _input;
84
- private _inputId;
84
+ private get _inputId();
85
85
  private valueDuringOnChange?;
86
86
  constructor(props: InputProps);
87
87
  /**
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-inputs",
3
- "version": "7.0.0-develop.9",
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.0-develop.9",
22
- "@progress/kendo-react-buttons": "7.0.0-develop.9",
23
- "@progress/kendo-react-common": "7.0.0-develop.9",
24
- "@progress/kendo-react-dialogs": "7.0.0-develop.9",
25
- "@progress/kendo-react-form": "7.0.0-develop.9",
26
- "@progress/kendo-react-intl": "7.0.0-develop.9",
27
- "@progress/kendo-react-labels": "7.0.0-develop.9",
28
- "@progress/kendo-react-popup": "7.0.0-develop.9",
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
  */