@progress/kendo-react-inputs 7.1.0-develop.7 → 7.1.0-develop.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-inputs",
3
- "version": "7.1.0-develop.7",
3
+ "version": "7.1.0-develop.9",
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",
@@ -25,14 +25,14 @@
25
25
  "@progress/kendo-drawing": "^1.19.0",
26
26
  "@progress/kendo-inputs-common": "^3.1.0",
27
27
  "@progress/kendo-licensing": "^1.3.4",
28
- "@progress/kendo-react-animation": "7.1.0-develop.7",
29
- "@progress/kendo-react-buttons": "7.1.0-develop.7",
30
- "@progress/kendo-react-common": "7.1.0-develop.7",
31
- "@progress/kendo-react-dialogs": "7.1.0-develop.7",
32
- "@progress/kendo-react-form": "7.1.0-develop.7",
33
- "@progress/kendo-react-intl": "7.1.0-develop.7",
34
- "@progress/kendo-react-labels": "7.1.0-develop.7",
35
- "@progress/kendo-react-popup": "7.1.0-develop.7",
28
+ "@progress/kendo-react-animation": "7.1.0-develop.9",
29
+ "@progress/kendo-react-buttons": "7.1.0-develop.9",
30
+ "@progress/kendo-react-common": "7.1.0-develop.9",
31
+ "@progress/kendo-react-dialogs": "7.1.0-develop.9",
32
+ "@progress/kendo-react-form": "7.1.0-develop.9",
33
+ "@progress/kendo-react-intl": "7.1.0-develop.9",
34
+ "@progress/kendo-react-labels": "7.1.0-develop.9",
35
+ "@progress/kendo-react-popup": "7.1.0-develop.9",
36
36
  "@progress/kendo-svg-icons": "^2.1.0",
37
37
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
38
38
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the package root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { FormComponentProps } from '@progress/kendo-react-common';
5
+ import { CustomComponent, FormComponentProps } from '@progress/kendo-react-common';
6
6
  import { TextAreaBlurEvent } from './TextAreaBlurEvent';
7
7
  import { TextAreaChangeEvent } from './TextAreaChangeEvent';
8
8
  import { TextAreaFocusEvent } from './TextAreaFocusEvent';
@@ -13,7 +13,7 @@ type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
13
13
  /**
14
14
  * Represents the props of the [KendoReact TextArea component]({% slug overview_textarea %}).
15
15
  */
16
- export interface TextAreaProps extends FormComponentProps, Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'defaultValue' | 'onChange' | 'onFocus' | 'onBlur'> {
16
+ export interface TextAreaProps extends FormComponentProps, Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'defaultValue' | 'onChange' | 'onFocus' | 'onBlur' | 'prefix'> {
17
17
  /**
18
18
  * Identifies the element(s) which will describe the component, similar to [HTML aria-describedby attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute).
19
19
  * For example these elements could contain error or hint message.
@@ -128,5 +128,13 @@ export interface TextAreaProps extends FormComponentProps, Omit<React.TextareaHT
128
128
  * @default `solid`
129
129
  */
130
130
  fillMode?: null | 'solid' | 'flat' | 'outline';
131
+ /**
132
+ * Sets a custom prefix to the TextArea component.
133
+ */
134
+ prefix?: CustomComponent<any>;
135
+ /**
136
+ * Sets a custom suffix to the TextArea component.
137
+ */
138
+ suffix?: CustomComponent<any>;
131
139
  }
132
140
  export {};