@progress/kendo-react-inputs 13.3.0-develop.1 → 13.3.0-develop.3
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/index.d.mts +115 -115
- package/index.d.ts +115 -115
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/index.d.mts
CHANGED
|
@@ -25,7 +25,7 @@ import { SvgIconHandle } from '@progress/kendo-react-common';
|
|
|
25
25
|
import { SvgIconProps } from '@progress/kendo-react-common';
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
* Represents the [KendoReact Checkbox component](
|
|
28
|
+
* Represents the [KendoReact Checkbox component](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox).
|
|
29
29
|
*
|
|
30
30
|
* @example
|
|
31
31
|
* ```jsx
|
|
@@ -82,13 +82,13 @@ export declare interface CheckboxHandle {
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
/**
|
|
85
|
-
* Represents the props of the [KendoReact Checkbox component](
|
|
85
|
+
* Represents the props of the [KendoReact Checkbox component](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox).
|
|
86
86
|
* Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
|
87
87
|
*/
|
|
88
88
|
export declare interface CheckboxProps extends ToggleBaseProps, FormComponentProps, Omit_3<React.InputHTMLAttributes<HTMLInputElement>, 'checked' | 'value' | 'size' | 'onChange' | 'onFocus' | 'onBlur'> {
|
|
89
89
|
/**
|
|
90
90
|
* Sets the checked state of the Checkbox.
|
|
91
|
-
* Set to null to enable the indeterminate state of the Checkbox ([see example](
|
|
91
|
+
* Set to null to enable the indeterminate state of the Checkbox ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox)).
|
|
92
92
|
*
|
|
93
93
|
* @example
|
|
94
94
|
* ```jsx
|
|
@@ -99,7 +99,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
99
99
|
/**
|
|
100
100
|
* If the type is different than boolean and the `checked` property is provided it's passed to the underlying `input` element.
|
|
101
101
|
* If set to boolean and the `checked` property is omitted sets the checked state of the Checkbox.
|
|
102
|
-
* Set null to enable the indeterminate state of the Checkbox ([see example](
|
|
102
|
+
* Set null to enable the indeterminate state of the Checkbox ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox)).
|
|
103
103
|
*/
|
|
104
104
|
value?: string | number | string[] | boolean | null;
|
|
105
105
|
/**
|
|
@@ -115,7 +115,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
115
115
|
*/
|
|
116
116
|
children?: any;
|
|
117
117
|
/**
|
|
118
|
-
* Sets the default value of checked attribute when used in uncontrolled mode ([see example](
|
|
118
|
+
* Sets the default value of checked attribute when used in uncontrolled mode ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/switch/default-state)).
|
|
119
119
|
*/
|
|
120
120
|
defaultChecked?: boolean;
|
|
121
121
|
/**
|
|
@@ -128,7 +128,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
128
128
|
dir?: string;
|
|
129
129
|
/**
|
|
130
130
|
* Sets the disabled state of the Checkbox
|
|
131
|
-
* ([see example](
|
|
131
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox/disabled)).
|
|
132
132
|
*/
|
|
133
133
|
disabled?: boolean;
|
|
134
134
|
/**
|
|
@@ -169,7 +169,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
169
169
|
*/
|
|
170
170
|
ariaLabelledBy?: string;
|
|
171
171
|
/**
|
|
172
|
-
* Sets the label of the Checkbox component ([see example](
|
|
172
|
+
* Sets the label of the Checkbox component ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox/labels)).
|
|
173
173
|
*
|
|
174
174
|
* @example
|
|
175
175
|
* ```jsx
|
|
@@ -178,7 +178,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
178
178
|
*/
|
|
179
179
|
label?: React.ReactNode;
|
|
180
180
|
/**
|
|
181
|
-
* Sets the label position of the Checkbox component ([see example](
|
|
181
|
+
* Sets the label position of the Checkbox component ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox/labels)).
|
|
182
182
|
*
|
|
183
183
|
* @example
|
|
184
184
|
* ```jsx
|
|
@@ -217,7 +217,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
217
217
|
* Represents the PropsContext of the `Checkbox` component.
|
|
218
218
|
* Used for global configuration of all `Checkbox` instances.
|
|
219
219
|
*
|
|
220
|
-
* For more information, refer to the [Inputs Props Context](
|
|
220
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
221
221
|
*/
|
|
222
222
|
export declare const CheckboxPropsContext: React_2.Context<(p: CheckboxProps) => CheckboxProps>;
|
|
223
223
|
|
|
@@ -225,10 +225,10 @@ export declare const CheckboxPropsContext: React_2.Context<(p: CheckboxProps) =>
|
|
|
225
225
|
export declare type ColorGradient = ColorGradientHandle;
|
|
226
226
|
|
|
227
227
|
/**
|
|
228
|
-
* Represents the [KendoReact ColorGradient component](
|
|
228
|
+
* Represents the [KendoReact ColorGradient component](https://www.telerik.com/kendo-react-ui/components/inputs/colorgradient).
|
|
229
229
|
*
|
|
230
|
-
* Accepts properties of type [ColorGradientProps](
|
|
231
|
-
* Obtaining the `ref` returns an object of type [ColorGradientHandle](
|
|
230
|
+
* Accepts properties of type [ColorGradientProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/colorgradientprops).
|
|
231
|
+
* Obtaining the `ref` returns an object of type [ColorGradientHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/colorgradienthandle).
|
|
232
232
|
*
|
|
233
233
|
* @example
|
|
234
234
|
* ```jsx
|
|
@@ -256,7 +256,7 @@ export declare interface ColorGradientHandle extends Pick<ColorGradientWithoutCo
|
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
/**
|
|
259
|
-
* Represents the props of the [KendoReact ColorGradient component](
|
|
259
|
+
* Represents the props of the [KendoReact ColorGradient component](https://www.telerik.com/kendo-react-ui/components/inputs/colorgradient).
|
|
260
260
|
*/
|
|
261
261
|
export declare interface ColorGradientProps {
|
|
262
262
|
/**
|
|
@@ -302,7 +302,7 @@ export declare interface ColorGradientProps {
|
|
|
302
302
|
defaultValue?: string;
|
|
303
303
|
/**
|
|
304
304
|
* Determines whether the ColorGradient is disabled
|
|
305
|
-
* ([more information and example](
|
|
305
|
+
* ([more information and example](https://www.telerik.com/kendo-react-ui/components/inputs/colorgradient/disabled)).
|
|
306
306
|
*
|
|
307
307
|
* @example
|
|
308
308
|
* ```jsx
|
|
@@ -404,7 +404,7 @@ export declare interface ColorGradientProps {
|
|
|
404
404
|
* Represents the PropsContext of the `ColorGradient` component.
|
|
405
405
|
* Used for global configuration of all `ColorGradient` instances.
|
|
406
406
|
*
|
|
407
|
-
* For more information, refer to the [Inputs Props Context](
|
|
407
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
408
408
|
*/
|
|
409
409
|
export declare const ColorGradientPropsContext: React_2.Context<(p: ColorGradientProps) => ColorGradientProps>;
|
|
410
410
|
|
|
@@ -617,10 +617,10 @@ declare interface ColorInputProps {
|
|
|
617
617
|
export declare type ColorPalette = ColorPaletteHandle;
|
|
618
618
|
|
|
619
619
|
/**
|
|
620
|
-
* Represents the [KendoReact ColorPalette component](
|
|
620
|
+
* Represents the [KendoReact ColorPalette component](https://www.telerik.com/kendo-react-ui/components/inputs/colorpalette).
|
|
621
621
|
*
|
|
622
|
-
* Accepts properties of type [ColorPaletteProps](
|
|
623
|
-
* Obtaining the `ref` returns an object of type [ColorPaletteHandle](
|
|
622
|
+
* Accepts properties of type [ColorPaletteProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/colorpaletteprops).
|
|
623
|
+
* Obtaining the `ref` returns an object of type [ColorPaletteHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/colorpalettehandle).
|
|
624
624
|
*
|
|
625
625
|
* ```jsx
|
|
626
626
|
* const App = () => {
|
|
@@ -651,7 +651,7 @@ export declare interface ColorPaletteHandle extends Pick<ColorPaletteWithoutCont
|
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
/**
|
|
654
|
-
* Represents the props of the [KendoReact ColorPalette component](
|
|
654
|
+
* Represents the props of the [KendoReact ColorPalette component](https://www.telerik.com/kendo-react-ui/components/inputs/colorpalette).
|
|
655
655
|
*/
|
|
656
656
|
export declare interface ColorPaletteProps {
|
|
657
657
|
/**
|
|
@@ -697,7 +697,7 @@ export declare interface ColorPaletteProps {
|
|
|
697
697
|
value?: string;
|
|
698
698
|
/**
|
|
699
699
|
* Determines whether the ColorPalette is disabled
|
|
700
|
-
* ([more information and example](
|
|
700
|
+
* ([more information and example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpalette/disabled)).
|
|
701
701
|
*
|
|
702
702
|
* @example
|
|
703
703
|
* ```jsx
|
|
@@ -758,7 +758,7 @@ export declare interface ColorPaletteProps {
|
|
|
758
758
|
* Represents the PropsContext of the `ColorPalette` component.
|
|
759
759
|
* Used for global configuration of all `ColorPalette` instances.
|
|
760
760
|
*
|
|
761
|
-
* For more information, refer to the [Inputs Props Context](
|
|
761
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
762
762
|
*/
|
|
763
763
|
export declare const ColorPalettePropsContext: React_2.Context<(p: ColorPaletteProps) => ColorPaletteProps>;
|
|
764
764
|
|
|
@@ -845,7 +845,7 @@ export declare class ColorPaletteWithoutContext extends React_2.Component<ColorP
|
|
|
845
845
|
}
|
|
846
846
|
|
|
847
847
|
/**
|
|
848
|
-
* Represents the [KendoReact ColorPicker component](
|
|
848
|
+
* Represents the [KendoReact ColorPicker component](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker).
|
|
849
849
|
*
|
|
850
850
|
* @example
|
|
851
851
|
* ```jsx
|
|
@@ -930,7 +930,7 @@ export declare interface ColorPickerFocusEvent {
|
|
|
930
930
|
|
|
931
931
|
/**
|
|
932
932
|
* The settings of the ColorGradient that is nested inside the popup of the ColorPicker
|
|
933
|
-
* ([see example](
|
|
933
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#toc-customizing-the-gradient-popup)).
|
|
934
934
|
*/
|
|
935
935
|
export declare interface ColorPickerGradientSettings {
|
|
936
936
|
/**
|
|
@@ -961,7 +961,7 @@ export declare interface ColorPickerHandle {
|
|
|
961
961
|
|
|
962
962
|
/**
|
|
963
963
|
* The settings of the ColorPalette that is nested inside the popup of the ColorPicker
|
|
964
|
-
* ([see example](
|
|
964
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#toc-customizing-the-palette-popup)).
|
|
965
965
|
*/
|
|
966
966
|
export declare interface ColorPickerPaletteSettings {
|
|
967
967
|
/**
|
|
@@ -1006,12 +1006,12 @@ export declare interface ColorPickerPopupSettings {
|
|
|
1006
1006
|
}
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
* Represents the props of the [KendoReact ColorPicker component](
|
|
1009
|
+
* Represents the props of the [KendoReact ColorPicker component](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker).
|
|
1010
1010
|
*/
|
|
1011
1011
|
export declare interface ColorPickerProps {
|
|
1012
1012
|
/**
|
|
1013
1013
|
* The default value of the ColorPicker
|
|
1014
|
-
* ([see example](
|
|
1014
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/default-value)).
|
|
1015
1015
|
*
|
|
1016
1016
|
* @example
|
|
1017
1017
|
* ```jsx
|
|
@@ -1032,12 +1032,12 @@ export declare interface ColorPickerProps {
|
|
|
1032
1032
|
* Overrides the validity state of the component.
|
|
1033
1033
|
* If `valid` is set, the `required` property will be ignored.
|
|
1034
1034
|
*
|
|
1035
|
-
* This property is part of the [FormComponentProps](
|
|
1035
|
+
* This property is part of the [FormComponentProps](https://www.telerik.com/kendo-react-ui/components/common/api/formcomponentprops) interface.
|
|
1036
1036
|
*/
|
|
1037
1037
|
valid?: boolean;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* Sets the disabled state of the ColorPicker
|
|
1040
|
-
* ([see example](
|
|
1040
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/disabled)).
|
|
1041
1041
|
*
|
|
1042
1042
|
* @example
|
|
1043
1043
|
* ```jsx
|
|
@@ -1078,10 +1078,10 @@ export declare interface ColorPickerProps {
|
|
|
1078
1078
|
*/
|
|
1079
1079
|
dir?: string;
|
|
1080
1080
|
/**
|
|
1081
|
-
* Defines the name of an [existing icon in the KendoReact theme](
|
|
1081
|
+
* Defines the name of an [existing icon in the KendoReact theme](https://www.telerik.com/kendo-react-ui/components/styling/icons).
|
|
1082
1082
|
* You have to provide only the name of the icon without the `k-icon` or the `k-i-` prefixes.
|
|
1083
1083
|
* For example, `edit-tools` will be parsed to `k-icon k-i-edit-tools`
|
|
1084
|
-
* ([see example](
|
|
1084
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#displaying-custom-icons)).
|
|
1085
1085
|
*/
|
|
1086
1086
|
icon?: string;
|
|
1087
1087
|
/**
|
|
@@ -1090,17 +1090,17 @@ export declare interface ColorPickerProps {
|
|
|
1090
1090
|
svgIcon?: SVGIcon;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* The class name which displays an icon in the ColorPicker button
|
|
1093
|
-
* ([see example](
|
|
1093
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#toc-displaying-custom-icons)).
|
|
1094
1094
|
*/
|
|
1095
1095
|
iconClassName?: string;
|
|
1096
1096
|
/**
|
|
1097
1097
|
* Configures the ColorGradient that is displayed in the ColorPicker popup
|
|
1098
|
-
* ([see example](
|
|
1098
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#toc-customizing-the-gradient-popup)).
|
|
1099
1099
|
*/
|
|
1100
1100
|
gradientSettings?: ColorPickerGradientSettings;
|
|
1101
1101
|
/**
|
|
1102
1102
|
* Configures the ColorPalette that is displayed in the ColorPicker popup
|
|
1103
|
-
* ([see example](
|
|
1103
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#toc-customizing-the-palette-popup)).
|
|
1104
1104
|
*/
|
|
1105
1105
|
paletteSettings?: ColorPickerPaletteSettings;
|
|
1106
1106
|
/**
|
|
@@ -1232,13 +1232,13 @@ export declare interface ColorPickerProps {
|
|
|
1232
1232
|
* Represents the PropsContext of the `ColorPicker` component.
|
|
1233
1233
|
* Used for global configuration of all `ColorPicker` instances.
|
|
1234
1234
|
*
|
|
1235
|
-
* For more information, refer to the [Inputs Props Context](
|
|
1235
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
1236
1236
|
*/
|
|
1237
1237
|
export declare const ColorPickerPropsContext: React_2.Context<(p: ColorPickerProps) => ColorPickerProps>;
|
|
1238
1238
|
|
|
1239
1239
|
/**
|
|
1240
1240
|
* Specifies the view which the ColorPicker will render in the popup
|
|
1241
|
-
* ([see example](
|
|
1241
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/views)).
|
|
1242
1242
|
*
|
|
1243
1243
|
* The possible values are:
|
|
1244
1244
|
* * `palette`
|
|
@@ -1250,8 +1250,8 @@ export declare type ColorPickerView = 'gradient' | 'palette' | 'combo';
|
|
|
1250
1250
|
declare type Direction = 'ltr' | 'rtl';
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
|
-
* Represents the [KendoReact FlatColorPicker component](
|
|
1254
|
-
* Accepts properties of type [FlatColorPickerProps](
|
|
1253
|
+
* Represents the [KendoReact FlatColorPicker component](https://www.telerik.com/kendo-react-ui/components/inputs/flatcolorpicker).
|
|
1254
|
+
* Accepts properties of type [FlatColorPickerProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/flatcolorpickerprops). Obtaining the [FlatColorPickerHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/flatcolorpickerhandle).
|
|
1255
1255
|
*
|
|
1256
1256
|
* @example
|
|
1257
1257
|
* ```jsx
|
|
@@ -1303,7 +1303,7 @@ export declare interface FlatColorPickerHandle {
|
|
|
1303
1303
|
}
|
|
1304
1304
|
|
|
1305
1305
|
/**
|
|
1306
|
-
* Represents the properties of [FlatColorPicker](
|
|
1306
|
+
* Represents the properties of [FlatColorPicker](https://www.telerik.com/kendo-react-ui/components/inputs/api/flatcolorpicker) component.
|
|
1307
1307
|
*/
|
|
1308
1308
|
export declare interface FlatColorPickerProps {
|
|
1309
1309
|
/**
|
|
@@ -1440,10 +1440,10 @@ declare interface HSVA {
|
|
|
1440
1440
|
}
|
|
1441
1441
|
|
|
1442
1442
|
/**
|
|
1443
|
-
* Represents the [KendoReact Input component](
|
|
1443
|
+
* Represents the [KendoReact Input component](https://www.telerik.com/kendo-react-ui/components/inputs/input).
|
|
1444
1444
|
*
|
|
1445
|
-
* Accepts properties of type [InputProps](
|
|
1446
|
-
* Obtaining the `ref` returns an object of type [InputHandle](
|
|
1445
|
+
* Accepts properties of type [InputProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/inputprops).
|
|
1446
|
+
* Obtaining the `ref` returns an object of type [InputHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/inputhandle).
|
|
1447
1447
|
*/
|
|
1448
1448
|
export declare const Input: React_2.ForwardRefExoticComponent<InputProps & React_2.RefAttributes<InputHandle | null>>;
|
|
1449
1449
|
|
|
@@ -1531,7 +1531,7 @@ export declare interface InputPrefixProps extends React_2.HTMLAttributes<HTMLSpa
|
|
|
1531
1531
|
}
|
|
1532
1532
|
|
|
1533
1533
|
/**
|
|
1534
|
-
* Represents the props of the [KendoReact Input component](
|
|
1534
|
+
* Represents the props of the [KendoReact Input component](https://www.telerik.com/kendo-react-ui/components/inputs/input).
|
|
1535
1535
|
* Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
|
1536
1536
|
*/
|
|
1537
1537
|
export declare interface InputProps extends Omit_2<React_2.InputHTMLAttributes<HTMLInputElement>, 'onChange'>, FormComponentProps {
|
|
@@ -1594,7 +1594,7 @@ export declare interface InputProps extends Omit_2<React_2.InputHTMLAttributes<H
|
|
|
1594
1594
|
* Represents the PropsContext of the `Input` component.
|
|
1595
1595
|
* Used for global configuration of all `Input` instances.
|
|
1596
1596
|
*
|
|
1597
|
-
* For more information, refer to the [Inputs Props Context](
|
|
1597
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
1598
1598
|
*/
|
|
1599
1599
|
export declare const InputPropsContext: React_2.Context<(p: InputProps) => InputProps>;
|
|
1600
1600
|
|
|
@@ -1730,10 +1730,10 @@ export declare const isSelected: (index: number, value: number | null, step: num
|
|
|
1730
1730
|
export declare type MaskedTextBox = MaskedTextBoxHandle;
|
|
1731
1731
|
|
|
1732
1732
|
/**
|
|
1733
|
-
* Represents the props of the [KendoReact MaskedTextBox component](
|
|
1733
|
+
* Represents the props of the [KendoReact MaskedTextBox component](https://www.telerik.com/kendo-react-ui/components/inputs/maskedtextbox).
|
|
1734
1734
|
*
|
|
1735
|
-
* Accepts properties of type [MaskedTextBoxProps](
|
|
1736
|
-
* Obtaining the `ref` returns an object of type [MaskedTextBoxHandle](
|
|
1735
|
+
* Accepts properties of type [MaskedTextBoxProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/maskedtextboxprops).
|
|
1736
|
+
* Obtaining the `ref` returns an object of type [MaskedTextBoxHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/maskedtextboxhandle).
|
|
1737
1737
|
*/
|
|
1738
1738
|
export declare const MaskedTextBox: React_2.ForwardRefExoticComponent<MaskedTextBoxProps & React_2.RefAttributes<any>>;
|
|
1739
1739
|
|
|
@@ -1816,7 +1816,7 @@ export declare interface MaskedTextBoxHandle extends Pick<MaskedTextBoxWithoutCo
|
|
|
1816
1816
|
}
|
|
1817
1817
|
|
|
1818
1818
|
/**
|
|
1819
|
-
* Represents the props of the [KendoReact MaskedTextBox component](
|
|
1819
|
+
* Represents the props of the [KendoReact MaskedTextBox component](https://www.telerik.com/kendo-react-ui/components/inputs/maskedtextbox).
|
|
1820
1820
|
*/
|
|
1821
1821
|
export declare interface MaskedTextBoxProps extends FormComponentProps {
|
|
1822
1822
|
/**
|
|
@@ -2038,7 +2038,7 @@ export declare interface MaskedTextBoxProps extends FormComponentProps {
|
|
|
2038
2038
|
* Represents the PropsContext of the `MaskedTextBox` component.
|
|
2039
2039
|
* Used for global configuration of all `MaskedTextBox` instances.
|
|
2040
2040
|
*
|
|
2041
|
-
* For more information, refer to the [Inputs Props Context](
|
|
2041
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
2042
2042
|
*/
|
|
2043
2043
|
export declare const MaskedTextBoxPropsContext: React_2.Context<(p: MaskedTextBoxProps) => MaskedTextBoxProps>;
|
|
2044
2044
|
|
|
@@ -2215,7 +2215,7 @@ export declare const numericDecreaseValue = "numerictextbox.decrement";
|
|
|
2215
2215
|
export declare const numericIncreaseValue = "numerictextbox.increment";
|
|
2216
2216
|
|
|
2217
2217
|
/**
|
|
2218
|
-
* Represents the [KendoReact NumericTextBox component](
|
|
2218
|
+
* Represents the [KendoReact NumericTextBox component](https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox).
|
|
2219
2219
|
*/
|
|
2220
2220
|
export declare const NumericTextBox: React_2.ForwardRefExoticComponent<NumericTextBoxProps & React_2.RefAttributes<NumericTextBoxHandle | null>>;
|
|
2221
2221
|
|
|
@@ -2282,7 +2282,7 @@ export declare interface NumericTextBoxHandle {
|
|
|
2282
2282
|
declare type NumericTextBoxInputType = 'tel' | 'text' | 'number';
|
|
2283
2283
|
|
|
2284
2284
|
/**
|
|
2285
|
-
* Represents the props of the [KendoReact NumericTextBox component](
|
|
2285
|
+
* Represents the props of the [KendoReact NumericTextBox component](https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox).
|
|
2286
2286
|
*/
|
|
2287
2287
|
export declare interface NumericTextBoxProps extends FormComponentProps, Omit<React.HTMLAttributes<HTMLElement>, 'defaultValue' | 'prefix' | 'onChange' | 'onBlur' | 'onFocus'> {
|
|
2288
2288
|
/**
|
|
@@ -2298,11 +2298,11 @@ export declare interface NumericTextBoxProps extends FormComponentProps, Omit<Re
|
|
|
2298
2298
|
*/
|
|
2299
2299
|
defaultValue?: number | null;
|
|
2300
2300
|
/**
|
|
2301
|
-
* Specifies the value that is used to increment or decrement the value of the NumericTextBox ([see example](
|
|
2301
|
+
* Specifies the value that is used to increment or decrement the value of the NumericTextBox ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox/incremental-step)).
|
|
2302
2302
|
*/
|
|
2303
2303
|
step?: number;
|
|
2304
2304
|
/**
|
|
2305
|
-
* Specifies the number format which is used for formatting the value ([see example](
|
|
2305
|
+
* Specifies the number format which is used for formatting the value ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox/formats)). If set to `an empty string` or `undefined`, the default format will be used. Format cannot contain decimal separators or numbers. Power signs are supported.
|
|
2306
2306
|
*/
|
|
2307
2307
|
format?: string | NumberFormatOptions;
|
|
2308
2308
|
/**
|
|
@@ -2334,7 +2334,7 @@ export declare interface NumericTextBoxProps extends FormComponentProps, Omit<Re
|
|
|
2334
2334
|
*/
|
|
2335
2335
|
max?: number;
|
|
2336
2336
|
/**
|
|
2337
|
-
* Specifies whether the **Up** and **Down** spin buttons will be rendered ([see example](
|
|
2337
|
+
* Specifies whether the **Up** and **Down** spin buttons will be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox/spin-buttons)).
|
|
2338
2338
|
*/
|
|
2339
2339
|
spinners?: boolean;
|
|
2340
2340
|
/**
|
|
@@ -2472,7 +2472,7 @@ export declare interface NumericTextBoxProps extends FormComponentProps, Omit<Re
|
|
|
2472
2472
|
* Represents the PropsContext of the `NumericTextBox` component.
|
|
2473
2473
|
* Used for global configuration of all `NumericTextBox` instances.
|
|
2474
2474
|
*
|
|
2475
|
-
* For more information, refer to the [Inputs Props Context](
|
|
2475
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
2476
2476
|
*/
|
|
2477
2477
|
export declare const NumericTextBoxPropsContext: React_2.Context<(p: NumericTextBoxProps) => NumericTextBoxProps>;
|
|
2478
2478
|
|
|
@@ -2567,10 +2567,10 @@ export declare const PALETTEPRESETS: {
|
|
|
2567
2567
|
};
|
|
2568
2568
|
|
|
2569
2569
|
/**
|
|
2570
|
-
* Represents the [KendoReact RadioButton component](
|
|
2570
|
+
* Represents the [KendoReact RadioButton component](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton).
|
|
2571
2571
|
*
|
|
2572
|
-
* Accepts properties of type [RadioButtonProps](
|
|
2573
|
-
* Obtaining the `ref` returns an object of type [RadioButtonHandle](
|
|
2572
|
+
* Accepts properties of type [RadioButtonProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/radiobuttonprops).
|
|
2573
|
+
* Obtaining the `ref` returns an object of type [RadioButtonHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/radiobuttonhandle).
|
|
2574
2574
|
*/
|
|
2575
2575
|
export declare const RadioButton: React_2.ForwardRefExoticComponent<RadioButtonProps & React_2.RefAttributes<RadioButtonHandle | null>>;
|
|
2576
2576
|
|
|
@@ -2611,7 +2611,7 @@ export declare interface RadioButtonHandle {
|
|
|
2611
2611
|
}
|
|
2612
2612
|
|
|
2613
2613
|
/**
|
|
2614
|
-
* Represents the props of the [KendoReact RadioButton component](
|
|
2614
|
+
* Represents the props of the [KendoReact RadioButton component](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton).
|
|
2615
2615
|
* Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
|
2616
2616
|
*/
|
|
2617
2617
|
export declare interface RadioButtonProps extends Omit_4<React.InputHTMLAttributes<HTMLInputElement>, 'size' | 'onChange' | 'onFocus' | 'onBlur'> {
|
|
@@ -2657,11 +2657,11 @@ export declare interface RadioButtonProps extends Omit_4<React.InputHTMLAttribut
|
|
|
2657
2657
|
*/
|
|
2658
2658
|
size?: null | 'small' | 'medium' | 'large';
|
|
2659
2659
|
/**
|
|
2660
|
-
* Sets the label of the Radio button ([see example](
|
|
2660
|
+
* Sets the label of the Radio button ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton/labels)).
|
|
2661
2661
|
*/
|
|
2662
2662
|
label?: string;
|
|
2663
2663
|
/**
|
|
2664
|
-
* Sets the label position of the Radio button ([see example](
|
|
2664
|
+
* Sets the label position of the Radio button ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton/labels)).
|
|
2665
2665
|
* Accepts two options: `before` or `after`. Defaults to `after`.
|
|
2666
2666
|
*/
|
|
2667
2667
|
labelPlacement?: string;
|
|
@@ -2682,7 +2682,7 @@ export declare interface RadioButtonProps extends Omit_4<React.InputHTMLAttribut
|
|
|
2682
2682
|
* Overrides the validity state of the component.
|
|
2683
2683
|
* If `valid` is set, the `required` property will be ignored.
|
|
2684
2684
|
*
|
|
2685
|
-
* This property is part of the [FormComponentProps](
|
|
2685
|
+
* This property is part of the [FormComponentProps](https://www.telerik.com/kendo-react-ui/components/common/api/formcomponentprops) interface.
|
|
2686
2686
|
*/
|
|
2687
2687
|
valid?: boolean;
|
|
2688
2688
|
/**
|
|
@@ -2707,15 +2707,15 @@ export declare interface RadioButtonProps extends Omit_4<React.InputHTMLAttribut
|
|
|
2707
2707
|
* Represents the PropsContext of the `RadioButton` component.
|
|
2708
2708
|
* Used for global configuration of all `RadioButton` instances.
|
|
2709
2709
|
*
|
|
2710
|
-
* For more information, refer to the [Inputs Props Context](
|
|
2710
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
2711
2711
|
*/
|
|
2712
2712
|
export declare const RadioButtonPropsContext: React_2.Context<(p: RadioButtonProps) => RadioButtonProps>;
|
|
2713
2713
|
|
|
2714
2714
|
/**
|
|
2715
|
-
* Represents the [KendoReact RadioGroup component](
|
|
2715
|
+
* Represents the [KendoReact RadioGroup component](https://www.telerik.com/kendo-react-ui/components/inputs/radiogroup).
|
|
2716
2716
|
*
|
|
2717
|
-
* Accepts properties of type [RadioGroupProps](
|
|
2718
|
-
* Obtaining the `ref` returns an object of type [RadioGroupHandle](
|
|
2717
|
+
* Accepts properties of type [RadioGroupProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/radiogroupprops).
|
|
2718
|
+
* Obtaining the `ref` returns an object of type [RadioGroupHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/radiogrouphandle).
|
|
2719
2719
|
*/
|
|
2720
2720
|
export declare const RadioGroup: React_2.ForwardRefExoticComponent<RadioGroupProps & React_2.RefAttributes<RadioGroupHandle | null>>;
|
|
2721
2721
|
|
|
@@ -2750,7 +2750,7 @@ export declare interface RadioGroupHandle {
|
|
|
2750
2750
|
}
|
|
2751
2751
|
|
|
2752
2752
|
/**
|
|
2753
|
-
* Represents the props of the [KendoReact RadioGroup component](
|
|
2753
|
+
* Represents the props of the [KendoReact RadioGroup component](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton).
|
|
2754
2754
|
*/
|
|
2755
2755
|
export declare interface RadioGroupProps {
|
|
2756
2756
|
/**
|
|
@@ -2791,7 +2791,7 @@ export declare interface RadioGroupProps {
|
|
|
2791
2791
|
*/
|
|
2792
2792
|
id?: string;
|
|
2793
2793
|
/**
|
|
2794
|
-
* The collection of radio buttons that will be rendered in the RadioGroup ([see example](
|
|
2794
|
+
* The collection of radio buttons that will be rendered in the RadioGroup ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton)).
|
|
2795
2795
|
*
|
|
2796
2796
|
* @example
|
|
2797
2797
|
* ```jsx
|
|
@@ -2800,7 +2800,7 @@ export declare interface RadioGroupProps {
|
|
|
2800
2800
|
*/
|
|
2801
2801
|
data?: Array<RadioButtonProps>;
|
|
2802
2802
|
/**
|
|
2803
|
-
* Sets the default checked state of a radio button when used in uncontrolled mode ([see example](
|
|
2803
|
+
* Sets the default checked state of a radio button when used in uncontrolled mode ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton)).
|
|
2804
2804
|
* The `checked` property is passed to the underlying `input` element.
|
|
2805
2805
|
*
|
|
2806
2806
|
* @example
|
|
@@ -2819,7 +2819,7 @@ export declare interface RadioGroupProps {
|
|
|
2819
2819
|
*/
|
|
2820
2820
|
dir?: string;
|
|
2821
2821
|
/**
|
|
2822
|
-
* Disable all radio buttons ([see example](
|
|
2822
|
+
* Disable all radio buttons ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton/disabled)).
|
|
2823
2823
|
*
|
|
2824
2824
|
* @example
|
|
2825
2825
|
* ```jsx
|
|
@@ -2830,7 +2830,7 @@ export declare interface RadioGroupProps {
|
|
|
2830
2830
|
/**
|
|
2831
2831
|
* Overrides the default component responsible for visualizing a single item.
|
|
2832
2832
|
*
|
|
2833
|
-
* The default element is `li` with a [RadioButton](
|
|
2833
|
+
* The default element is `li` with a [RadioButton](https://www.telerik.com/kendo-react-ui/components/inputs/api/radiobutton) as `children`.
|
|
2834
2834
|
*
|
|
2835
2835
|
* @example
|
|
2836
2836
|
* ```jsx
|
|
@@ -2894,7 +2894,7 @@ export declare interface RadioGroupProps {
|
|
|
2894
2894
|
*/
|
|
2895
2895
|
style?: React.CSSProperties;
|
|
2896
2896
|
/**
|
|
2897
|
-
* Sets the default checked state of a radio button when used in controlled mode ([see example](
|
|
2897
|
+
* Sets the default checked state of a radio button when used in controlled mode ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/radiogroup/controlled_mode)).
|
|
2898
2898
|
* The `checked` property is passed to the underlying `input` element.
|
|
2899
2899
|
*
|
|
2900
2900
|
* @example
|
|
@@ -2907,7 +2907,7 @@ export declare interface RadioGroupProps {
|
|
|
2907
2907
|
* Overrides the validity state of the component.
|
|
2908
2908
|
* If `valid` is set, the `required` property will be ignored.
|
|
2909
2909
|
*
|
|
2910
|
-
* This property is part of the [FormComponentProps](
|
|
2910
|
+
* This property is part of the [FormComponentProps](https://www.telerik.com/kendo-react-ui/components/common/api/formcomponentprops) interface.
|
|
2911
2911
|
*
|
|
2912
2912
|
* @example
|
|
2913
2913
|
* ```jsx
|
|
@@ -2921,7 +2921,7 @@ export declare interface RadioGroupProps {
|
|
|
2921
2921
|
* Represents the PropsContext of the `RadioGroup` component.
|
|
2922
2922
|
* Used for global configuration of all `RadioGroup` instances.
|
|
2923
2923
|
*
|
|
2924
|
-
* For more information, refer to the [Inputs Props Context](
|
|
2924
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
2925
2925
|
*/
|
|
2926
2926
|
export declare const RadioGroupPropsContext: React_2.Context<(p: RadioGroupProps) => RadioGroupProps>;
|
|
2927
2927
|
|
|
@@ -2981,10 +2981,10 @@ declare type RangeActionDispatch = {
|
|
|
2981
2981
|
export declare const rangeReducer: (state: any, action: RangeAction) => any;
|
|
2982
2982
|
|
|
2983
2983
|
/**
|
|
2984
|
-
* Represents the [KendoReact RangeSlider component](
|
|
2984
|
+
* Represents the [KendoReact RangeSlider component](https://www.telerik.com/kendo-react-ui/components/inputs/rangeslider).
|
|
2985
2985
|
*
|
|
2986
|
-
* Accepts properties of type [RangeSliderProps](
|
|
2987
|
-
* Obtaining the `ref` returns an object of type [RangeSliderHandle](
|
|
2986
|
+
* Accepts properties of type [RangeSliderProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/rangesliderprops).
|
|
2987
|
+
* Obtaining the `ref` returns an object of type [RangeSliderHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/rangesliderhandle).
|
|
2988
2988
|
*
|
|
2989
2989
|
* @remarks
|
|
2990
2990
|
* Supported children components are: {@link SliderLabel}.
|
|
@@ -3028,7 +3028,7 @@ export declare interface RangeSliderHandle {
|
|
|
3028
3028
|
}
|
|
3029
3029
|
|
|
3030
3030
|
/**
|
|
3031
|
-
* Represents the properties of [RangeSlider](
|
|
3031
|
+
* Represents the properties of [RangeSlider](https://www.telerik.com/kendo-react-ui/components/inputs/api/rangeslider) component.
|
|
3032
3032
|
*/
|
|
3033
3033
|
export declare interface RangeSliderProps extends FormComponentProps {
|
|
3034
3034
|
/**
|
|
@@ -3110,15 +3110,15 @@ export declare interface RangeSliderProps extends FormComponentProps {
|
|
|
3110
3110
|
* Represents the PropsContext of the `RangeSlider` component.
|
|
3111
3111
|
* Used for global configuration of all `RangeSlider` instances.
|
|
3112
3112
|
*
|
|
3113
|
-
* For more information, refer to the [Inputs Props Context](
|
|
3113
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
3114
3114
|
*/
|
|
3115
3115
|
export declare const RangeSliderPropsContext: React_2.Context<(p: RangeSliderProps) => RangeSliderProps>;
|
|
3116
3116
|
|
|
3117
3117
|
/**
|
|
3118
|
-
* Represents the [KendoReact Rating component](
|
|
3118
|
+
* Represents the [KendoReact Rating component](https://www.telerik.com/kendo-react-ui/components/inputs/rating).
|
|
3119
3119
|
*
|
|
3120
|
-
* Accepts properties of type [RatingProps](
|
|
3121
|
-
* Obtaining the `ref` returns an object of type [RatingHandle](
|
|
3120
|
+
* Accepts properties of type [RatingProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/ratingprops).
|
|
3121
|
+
* Obtaining the `ref` returns an object of type [RatingHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/ratinghandle).
|
|
3122
3122
|
*/
|
|
3123
3123
|
export declare const Rating: React_2.ForwardRefExoticComponent<RatingProps & React_2.RefAttributes<RatingHandle | null>>;
|
|
3124
3124
|
|
|
@@ -3269,7 +3269,7 @@ export declare interface RatingItemMouseEvent {
|
|
|
3269
3269
|
}
|
|
3270
3270
|
|
|
3271
3271
|
/**
|
|
3272
|
-
* Represents the properties of [RatingItem](
|
|
3272
|
+
* Represents the properties of [RatingItem](https://www.telerik.com/kendo-react-ui/components/inputs/api/ratingitem) component.
|
|
3273
3273
|
*/
|
|
3274
3274
|
export declare interface RatingItemProps {
|
|
3275
3275
|
/**
|
|
@@ -3305,15 +3305,15 @@ export declare interface RatingItemProps {
|
|
|
3305
3305
|
*/
|
|
3306
3306
|
value: number;
|
|
3307
3307
|
/**
|
|
3308
|
-
* Sets the title of current RatingItem component. [See example](
|
|
3308
|
+
* Sets the title of current RatingItem component. [See example](https://www.telerik.com/kendo-react-ui/components/inputs/rating/controlled)
|
|
3309
3309
|
*/
|
|
3310
3310
|
title?: string;
|
|
3311
3311
|
/**
|
|
3312
|
-
* Sets the icon of current RatingItem component. [See example](
|
|
3312
|
+
* Sets the icon of current RatingItem component. [See example](https://www.telerik.com/kendo-react-ui/components/inputs/rating/label)
|
|
3313
3313
|
*/
|
|
3314
3314
|
icon?: any;
|
|
3315
3315
|
/**
|
|
3316
|
-
* Determines if current RatingItem is selected. [See example](
|
|
3316
|
+
* Determines if current RatingItem is selected. [See example](https://www.telerik.com/kendo-react-ui/components/inputs/rating/customization)
|
|
3317
3317
|
*/
|
|
3318
3318
|
selected?: boolean;
|
|
3319
3319
|
/**
|
|
@@ -3379,7 +3379,7 @@ export declare interface RatingMouseEvent {
|
|
|
3379
3379
|
}
|
|
3380
3380
|
|
|
3381
3381
|
/**
|
|
3382
|
-
* Represents the properties of [Rating](
|
|
3382
|
+
* Represents the properties of [Rating](https://www.telerik.com/kendo-react-ui/components/inputs/api/rating) component.
|
|
3383
3383
|
*/
|
|
3384
3384
|
export declare interface RatingProps extends FormComponentProps {
|
|
3385
3385
|
/**
|
|
@@ -3630,7 +3630,7 @@ export declare interface RatingProps extends FormComponentProps {
|
|
|
3630
3630
|
* Represents the PropsContext of the `Rating` component.
|
|
3631
3631
|
* Used for global configuration of all `Rating` instances.
|
|
3632
3632
|
*
|
|
3633
|
-
* For more information, refer to the [Inputs Props Context](
|
|
3633
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
3634
3634
|
*/
|
|
3635
3635
|
export declare const RatingPropsContext: React_2.Context<(p: RatingProps) => RatingProps>;
|
|
3636
3636
|
|
|
@@ -3655,7 +3655,7 @@ declare interface RGBA {
|
|
|
3655
3655
|
export declare const sanitizeNumber: (state: NumericTextBoxState, format: string | NumberFormatOptions | undefined, intlService: any) => NumericTextBoxState;
|
|
3656
3656
|
|
|
3657
3657
|
/**
|
|
3658
|
-
* Represents the [KendoReact Signature component](
|
|
3658
|
+
* Represents the [KendoReact Signature component](https://www.telerik.com/kendo-react-ui/components/inputs/signature).
|
|
3659
3659
|
*/
|
|
3660
3660
|
export declare const Signature: React_2.ForwardRefExoticComponent<SignatureProps & React_2.RefAttributes<SignatureHandle | null>>;
|
|
3661
3661
|
|
|
@@ -3736,7 +3736,7 @@ export declare interface SignatureOpenEvent extends BaseEvent<SignatureHandle> {
|
|
|
3736
3736
|
}
|
|
3737
3737
|
|
|
3738
3738
|
/**
|
|
3739
|
-
* Represents the props of the [KendoReact Signature component](
|
|
3739
|
+
* Represents the props of the [KendoReact Signature component](https://www.telerik.com/kendo-react-ui/components/inputs/signature).
|
|
3740
3740
|
*/
|
|
3741
3741
|
export declare interface SignatureProps extends FormComponentProps {
|
|
3742
3742
|
/**
|
|
@@ -4045,7 +4045,7 @@ export declare interface SignatureProps extends FormComponentProps {
|
|
|
4045
4045
|
* Represents the PropsContext of the `Signature` component.
|
|
4046
4046
|
* Used for global configuration of all `Signature` instances.
|
|
4047
4047
|
*
|
|
4048
|
-
* For more information, refer to the [Inputs Props Context](
|
|
4048
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
4049
4049
|
*/
|
|
4050
4050
|
export declare const SignaturePropsContext: React_2.Context<(p: SignatureProps) => SignatureProps>;
|
|
4051
4051
|
|
|
@@ -4053,10 +4053,10 @@ export declare const SignaturePropsContext: React_2.Context<(p: SignatureProps)
|
|
|
4053
4053
|
export declare type Slider = SliderHandle;
|
|
4054
4054
|
|
|
4055
4055
|
/**
|
|
4056
|
-
* Represents the [KendoReact Slider component](
|
|
4056
|
+
* Represents the [KendoReact Slider component](https://www.telerik.com/kendo-react-ui/components/inputs/slider).
|
|
4057
4057
|
*
|
|
4058
|
-
* Accepts properties of type [SliderProps](
|
|
4059
|
-
* Obtaining the `ref` returns an object of type [SliderHandle](
|
|
4058
|
+
* Accepts properties of type [SliderProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/sliderprops).
|
|
4059
|
+
* Obtaining the `ref` returns an object of type [SliderHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/sliderhandle).
|
|
4060
4060
|
*/
|
|
4061
4061
|
export declare const Slider: React_2.ForwardRefExoticComponent<SliderProps & React_2.RefAttributes<any>>;
|
|
4062
4062
|
|
|
@@ -4126,7 +4126,7 @@ export declare interface SliderLabelProps {
|
|
|
4126
4126
|
}
|
|
4127
4127
|
|
|
4128
4128
|
/**
|
|
4129
|
-
* Represents the props of the [KendoReact Slider component](
|
|
4129
|
+
* Represents the props of the [KendoReact Slider component](https://www.telerik.com/kendo-react-ui/components/inputs/slider).
|
|
4130
4130
|
*/
|
|
4131
4131
|
export declare interface SliderProps extends FormComponentProps {
|
|
4132
4132
|
/**
|
|
@@ -4301,7 +4301,7 @@ export declare interface SliderProps extends FormComponentProps {
|
|
|
4301
4301
|
* Represents the PropsContext of the `Slider` component.
|
|
4302
4302
|
* Used for global configuration of all `Slider` instances.
|
|
4303
4303
|
*
|
|
4304
|
-
* For more information, refer to the [Inputs Props Context](
|
|
4304
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
4305
4305
|
*/
|
|
4306
4306
|
export declare const SliderPropsContext: React_2.Context<(p: SliderProps) => SliderProps>;
|
|
4307
4307
|
|
|
@@ -4383,10 +4383,10 @@ export declare class SliderWithoutContext extends React_2.Component<SliderProps,
|
|
|
4383
4383
|
export declare type Switch = SwitchHandle;
|
|
4384
4384
|
|
|
4385
4385
|
/**
|
|
4386
|
-
* Represents the [KendoReact Switch component](
|
|
4386
|
+
* Represents the [KendoReact Switch component](https://www.telerik.com/kendo-react-ui/components/inputs/switch).
|
|
4387
4387
|
*
|
|
4388
|
-
* Accepts properties of type [SwitchProps](
|
|
4389
|
-
* Obtaining the `ref` returns an object of type [SwitchHandle](
|
|
4388
|
+
* Accepts properties of type [SwitchProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/switchprops).
|
|
4389
|
+
* Obtaining the `ref` returns an object of type [SwitchHandle](https://www.telerik.com/kendo-react-ui/components/inputs/api/switchhandle).
|
|
4390
4390
|
*/
|
|
4391
4391
|
export declare const Switch: React_2.ForwardRefExoticComponent<SwitchProps & React_2.RefAttributes<any>>;
|
|
4392
4392
|
|
|
@@ -4427,7 +4427,7 @@ export declare interface SwitchHandle extends Pick<SwitchWithoutContext, keyof S
|
|
|
4427
4427
|
}
|
|
4428
4428
|
|
|
4429
4429
|
/**
|
|
4430
|
-
* Represents the props of the [KendoReact Switch component](
|
|
4430
|
+
* Represents the props of the [KendoReact Switch component](https://www.telerik.com/kendo-react-ui/components/inputs/switch).
|
|
4431
4431
|
*/
|
|
4432
4432
|
export declare interface SwitchProps extends ToggleBaseProps, FormComponentProps {
|
|
4433
4433
|
/**
|
|
@@ -4440,7 +4440,7 @@ export declare interface SwitchProps extends ToggleBaseProps, FormComponentProps
|
|
|
4440
4440
|
*/
|
|
4441
4441
|
accessKey?: string;
|
|
4442
4442
|
/**
|
|
4443
|
-
* Sets the current value of the Switch ([see example](
|
|
4443
|
+
* Sets the current value of the Switch ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/switch/controlled-switch)).
|
|
4444
4444
|
*
|
|
4445
4445
|
* @example
|
|
4446
4446
|
* ```jsx
|
|
@@ -4458,7 +4458,7 @@ export declare interface SwitchProps extends ToggleBaseProps, FormComponentProps
|
|
|
4458
4458
|
*/
|
|
4459
4459
|
className?: string;
|
|
4460
4460
|
/**
|
|
4461
|
-
* Sets the value of the Switch when it is initially displayed ([see example](
|
|
4461
|
+
* Sets the value of the Switch when it is initially displayed ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/switch/default-state)).
|
|
4462
4462
|
*
|
|
4463
4463
|
* @example
|
|
4464
4464
|
* ```jsx
|
|
@@ -4476,7 +4476,7 @@ export declare interface SwitchProps extends ToggleBaseProps, FormComponentProps
|
|
|
4476
4476
|
*/
|
|
4477
4477
|
defaultValue?: any;
|
|
4478
4478
|
/**
|
|
4479
|
-
* Disables the Switch when set to `true` ([see example](
|
|
4479
|
+
* Disables the Switch when set to `true` ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/switch/disabled-state)).
|
|
4480
4480
|
*
|
|
4481
4481
|
* @example
|
|
4482
4482
|
* ```jsx
|
|
@@ -4648,7 +4648,7 @@ export declare interface SwitchProps extends ToggleBaseProps, FormComponentProps
|
|
|
4648
4648
|
* Represents the PropsContext of the `Switch` component.
|
|
4649
4649
|
* Used for global configuration of all `Switch` instances.
|
|
4650
4650
|
*
|
|
4651
|
-
* For more information, refer to the [Inputs Props Context](
|
|
4651
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
4652
4652
|
*/
|
|
4653
4653
|
export declare const SwitchPropsContext: React_2.Context<(p: SwitchProps) => SwitchProps>;
|
|
4654
4654
|
|
|
@@ -4773,10 +4773,10 @@ export declare class SwitchWithoutContext extends React_2.Component<SwitchProps,
|
|
|
4773
4773
|
}
|
|
4774
4774
|
|
|
4775
4775
|
/**
|
|
4776
|
-
* Represents the [KendoReact TextArea component](
|
|
4776
|
+
* Represents the [KendoReact TextArea component](https://www.telerik.com/kendo-react-ui/components/inputs/textarea).
|
|
4777
4777
|
*
|
|
4778
4778
|
*
|
|
4779
|
-
* Accepts properties of type [TextAreaProps](
|
|
4779
|
+
* Accepts properties of type [TextAreaProps](https://www.telerik.com/kendo-react-ui/components/inputs/api/textareaprops).
|
|
4780
4780
|
*
|
|
4781
4781
|
* @example
|
|
4782
4782
|
* ```jsx
|
|
@@ -4821,7 +4821,7 @@ export declare interface TextAreaHandle {
|
|
|
4821
4821
|
}
|
|
4822
4822
|
|
|
4823
4823
|
/**
|
|
4824
|
-
* Represents the props of the [KendoReact TextArea component](
|
|
4824
|
+
* Represents the props of the [KendoReact TextArea component](https://www.telerik.com/kendo-react-ui/components/inputs/textarea).
|
|
4825
4825
|
*/
|
|
4826
4826
|
export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'defaultValue' | 'onChange' | 'onFocus' | 'onBlur' | 'prefix'> {
|
|
4827
4827
|
/**
|
|
@@ -4834,7 +4834,7 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4834
4834
|
*/
|
|
4835
4835
|
ariaLabelledBy?: string;
|
|
4836
4836
|
/**
|
|
4837
|
-
* Specifies if the textarea element will resize its height automatically ([see example](
|
|
4837
|
+
* Specifies if the textarea element will resize its height automatically ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/textarea/sizing)).
|
|
4838
4838
|
* Defaults to `false`.
|
|
4839
4839
|
*
|
|
4840
4840
|
* Setting the value of the prop to `true` will make the TextArea component to ignore the resize behavior of the `resizable` prop.
|
|
@@ -4845,7 +4845,7 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4845
4845
|
*/
|
|
4846
4846
|
className?: string;
|
|
4847
4847
|
/**
|
|
4848
|
-
* The default value of the TextArea ([see example](
|
|
4848
|
+
* The default value of the TextArea ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/textarea/default_state)).
|
|
4849
4849
|
*/
|
|
4850
4850
|
defaultValue?: string | string[] | number;
|
|
4851
4851
|
/**
|
|
@@ -4853,7 +4853,7 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4853
4853
|
*/
|
|
4854
4854
|
dir?: string;
|
|
4855
4855
|
/**
|
|
4856
|
-
* Specifies if the TextArea is disabled ([see example](
|
|
4856
|
+
* Specifies if the TextArea is disabled ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/textarea/disabled)).
|
|
4857
4857
|
*/
|
|
4858
4858
|
disabled?: boolean;
|
|
4859
4859
|
/**
|
|
@@ -4861,7 +4861,7 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4861
4861
|
*/
|
|
4862
4862
|
readOnly?: boolean;
|
|
4863
4863
|
/**
|
|
4864
|
-
* Specifies an exact height size for the TextArea to take ([see example](
|
|
4864
|
+
* Specifies an exact height size for the TextArea to take ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/textarea/sizing)).
|
|
4865
4865
|
*/
|
|
4866
4866
|
rows?: number;
|
|
4867
4867
|
/**
|
|
@@ -4871,7 +4871,7 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4871
4871
|
/**
|
|
4872
4872
|
* Specifies the `name` property of the `textarea` DOM element.
|
|
4873
4873
|
*
|
|
4874
|
-
* This property is part of the [FormComponentProps](
|
|
4874
|
+
* This property is part of the [FormComponentProps](https://www.telerik.com/kendo-react-ui/components/common/api/formcomponentprops) interface.
|
|
4875
4875
|
*/
|
|
4876
4876
|
name?: string;
|
|
4877
4877
|
/**
|
|
@@ -4888,7 +4888,7 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4888
4888
|
*/
|
|
4889
4889
|
tabIndex?: number;
|
|
4890
4890
|
/**
|
|
4891
|
-
* Sets the value to be submitted ([see example](
|
|
4891
|
+
* Sets the value to be submitted ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/textarea/controlled_mode)).
|
|
4892
4892
|
*/
|
|
4893
4893
|
value?: string | string[] | number;
|
|
4894
4894
|
/**
|
|
@@ -4996,12 +4996,12 @@ export declare interface TextAreaProps extends FormComponentProps, Omit_5<React.
|
|
|
4996
4996
|
* Represents the PropsContext of the `TextArea` component.
|
|
4997
4997
|
* Used for global configuration of all `TextArea` instances.
|
|
4998
4998
|
*
|
|
4999
|
-
* For more information, refer to the [Inputs Props Context](
|
|
4999
|
+
* For more information, refer to the [Inputs Props Context](https://www.telerik.com/kendo-react-ui/components/inputs/props-context) article.
|
|
5000
5000
|
*/
|
|
5001
5001
|
export declare const TextAreaPropsContext: React_2.Context<(p: TextAreaProps) => TextAreaProps>;
|
|
5002
5002
|
|
|
5003
5003
|
/**
|
|
5004
|
-
* Represents the [KendoReact TextBox component](
|
|
5004
|
+
* Represents the [KendoReact TextBox component](https://www.telerik.com/kendo-react-ui/components/inputs/textbox).
|
|
5005
5005
|
*/
|
|
5006
5006
|
export declare const TextBox: React_2.ForwardRefExoticComponent<TextBoxProps & React_2.RefAttributes<TextBoxHandle | null>>;
|
|
5007
5007
|
|
|
@@ -5026,7 +5026,7 @@ export declare type TextBoxHandle = {
|
|
|
5026
5026
|
};
|
|
5027
5027
|
|
|
5028
5028
|
/**
|
|
5029
|
-
* Represents the properties of the KendoReact [TextBox](
|
|
5029
|
+
* Represents the properties of the KendoReact [TextBox](https://www.telerik.com/kendo-react-ui/components/inputs/api/textbox) component
|
|
5030
5030
|
*/
|
|
5031
5031
|
export declare interface TextBoxProps extends Omit<React_2.InputHTMLAttributes<HTMLInputElement>, 'size' | 'prefix' | 'onChange'> {
|
|
5032
5032
|
/**
|