@progress/kendo-react-inputs 4.10.0 → 4.11.0-dev.202110291317
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/dist/cdn/js/kendo-react-inputs.js +1 -1
- package/dist/es/input/Input.d.ts +12 -0
- package/dist/es/input/Input.js +3 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/input/Input.d.ts +12 -0
- package/dist/npm/input/Input.js +3 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-inputs.js +1 -1
- package/package.json +11 -11
package/dist/es/input/Input.d.ts
CHANGED
|
@@ -15,7 +15,13 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
15
15
|
* Renders a floating label for the Input component.
|
|
16
16
|
*/
|
|
17
17
|
label?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Represents the Input value.
|
|
20
|
+
*/
|
|
18
21
|
value?: string | string[] | number;
|
|
22
|
+
/**
|
|
23
|
+
* Represents the Input default value.
|
|
24
|
+
*/
|
|
19
25
|
defaultValue?: string | string[];
|
|
20
26
|
/**
|
|
21
27
|
* 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).
|
|
@@ -26,6 +32,9 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
26
32
|
* Identifies the element(s) which will label the component.
|
|
27
33
|
*/
|
|
28
34
|
ariaLabelledBy?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Triggered after value change.
|
|
37
|
+
*/
|
|
29
38
|
onChange?: (event: InputChangeEvent) => void;
|
|
30
39
|
}
|
|
31
40
|
/**
|
|
@@ -34,6 +43,9 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
34
43
|
export interface InputState {
|
|
35
44
|
value?: string | string[] | number;
|
|
36
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Represents the Input component.
|
|
48
|
+
*/
|
|
37
49
|
export declare class Input extends React.Component<InputProps, InputState> implements FormComponent {
|
|
38
50
|
/**
|
|
39
51
|
* @hidden
|
package/dist/es/input/Input.js
CHANGED
|
@@ -37,6 +37,9 @@ import { guid, classNames } from '@progress/kendo-react-common';
|
|
|
37
37
|
import { FloatingLabel } from '@progress/kendo-react-labels';
|
|
38
38
|
import { validatePackage } from '@progress/kendo-react-common';
|
|
39
39
|
import { packageMetadata } from '../package-metadata';
|
|
40
|
+
/**
|
|
41
|
+
* Represents the Input component.
|
|
42
|
+
*/
|
|
40
43
|
var Input = /** @class */ (function (_super) {
|
|
41
44
|
__extends(Input, _super);
|
|
42
45
|
function Input(props) {
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-react-inputs',
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1635512672,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -15,7 +15,13 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
15
15
|
* Renders a floating label for the Input component.
|
|
16
16
|
*/
|
|
17
17
|
label?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Represents the Input value.
|
|
20
|
+
*/
|
|
18
21
|
value?: string | string[] | number;
|
|
22
|
+
/**
|
|
23
|
+
* Represents the Input default value.
|
|
24
|
+
*/
|
|
19
25
|
defaultValue?: string | string[];
|
|
20
26
|
/**
|
|
21
27
|
* 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).
|
|
@@ -26,6 +32,9 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
26
32
|
* Identifies the element(s) which will label the component.
|
|
27
33
|
*/
|
|
28
34
|
ariaLabelledBy?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Triggered after value change.
|
|
37
|
+
*/
|
|
29
38
|
onChange?: (event: InputChangeEvent) => void;
|
|
30
39
|
}
|
|
31
40
|
/**
|
|
@@ -34,6 +43,9 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
34
43
|
export interface InputState {
|
|
35
44
|
value?: string | string[] | number;
|
|
36
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Represents the Input component.
|
|
48
|
+
*/
|
|
37
49
|
export declare class Input extends React.Component<InputProps, InputState> implements FormComponent {
|
|
38
50
|
/**
|
|
39
51
|
* @hidden
|
package/dist/npm/input/Input.js
CHANGED
|
@@ -39,6 +39,9 @@ var kendo_react_common_1 = require("@progress/kendo-react-common");
|
|
|
39
39
|
var kendo_react_labels_1 = require("@progress/kendo-react-labels");
|
|
40
40
|
var kendo_react_common_2 = require("@progress/kendo-react-common");
|
|
41
41
|
var package_metadata_1 = require("../package-metadata");
|
|
42
|
+
/**
|
|
43
|
+
* Represents the Input component.
|
|
44
|
+
*/
|
|
42
45
|
var Input = /** @class */ (function (_super) {
|
|
43
46
|
__extends(Input, _super);
|
|
44
47
|
function Input(props) {
|
|
@@ -7,7 +7,7 @@ exports.packageMetadata = {
|
|
|
7
7
|
name: '@progress/kendo-react-inputs',
|
|
8
8
|
productName: 'KendoReact',
|
|
9
9
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
10
|
-
publishDate:
|
|
10
|
+
publishDate: 1635512672,
|
|
11
11
|
version: '',
|
|
12
12
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
13
13
|
};
|