@progress/kendo-react-inputs 14.4.1-develop.9 → 14.4.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/checkbox/Checkbox.d.ts +1 -1
- package/checkbox/interfaces/CheckboxProps.d.ts +4 -4
- package/colors/ColorContrastLabels.d.ts +1 -1
- package/colors/ColorContrastSvg.d.ts +1 -1
- package/colors/ColorGradient.d.ts +4 -4
- package/colors/ColorInput.d.ts +2 -2
- package/colors/ColorPalette.d.ts +2 -2
- package/colors/ColorPicker.d.ts +1 -1
- package/colors/FlatColorPicker.d.ts +3 -3
- package/colors/Picker.d.ts +1 -1
- package/colors/interfaces/ColorGradientProps.d.ts +1 -1
- package/colors/interfaces/ColorPaletteChangeEvent.d.ts +1 -1
- package/colors/interfaces/ColorPaletteProps.d.ts +2 -2
- package/colors/interfaces/ColorPickerPaletteSettings.d.ts +1 -1
- package/colors/interfaces/ColorPickerProps.d.ts +8 -8
- package/colors/interfaces/PickerProps.d.ts +1 -1
- package/colors/utils/color-cache.d.ts +2 -2
- package/colors/utils/color-palette.service.d.ts +1 -1
- package/colors/utils/color-parser.d.ts +4 -4
- package/common/SwitchController.d.ts +1 -1
- package/dist/cdn/js/kendo-react-inputs.js +1 -1
- package/index.d.mts +37 -37
- package/index.d.ts +37 -37
- package/input/Input.d.ts +1 -1
- package/maskedtextbox/MaskedTextBox.d.ts +1 -1
- package/maskedtextbox/utils.d.ts +1 -1
- package/numerictextbox/NumericTextBox.d.ts +2 -2
- package/numerictextbox/interfaces/NumericTextBoxBlurEvent.d.ts +1 -1
- package/numerictextbox/interfaces/NumericTextBoxChangeEvent.d.ts +1 -1
- package/numerictextbox/interfaces/NumericTextBoxFocusEvent.d.ts +1 -1
- package/numerictextbox/interfaces/NumericTextBoxHandle.d.ts +1 -1
- package/numerictextbox/interfaces/NumericTextBoxProps.d.ts +3 -3
- package/numerictextbox/utils/index.d.ts +1 -1
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/radiobutton/RadioButton.d.ts +1 -1
- package/radiobutton/RadioGroup.d.ts +1 -1
- package/radiobutton/interfaces/RadioButtonProps.d.ts +3 -3
- package/radiobutton/interfaces/RadioGroupProps.d.ts +3 -3
- package/range-slider/RangeSlider.d.ts +1 -1
- package/signature/Signature.d.ts +2 -2
- package/signature/interfaces/SignatureBlurEvent.d.ts +1 -1
- package/signature/interfaces/SignatureChangeEvent.d.ts +1 -1
- package/signature/interfaces/SignatureCloseEvent.d.ts +1 -1
- package/signature/interfaces/SignatureFocusEvent.d.ts +1 -1
- package/signature/interfaces/SignatureHandle.d.ts +1 -1
- package/signature/interfaces/SignatureOpenEvent.d.ts +1 -1
- package/signature/interfaces/SignatureProps.d.ts +5 -5
- package/signature/interfaces/index.d.ts +7 -7
- package/slider/Slider.d.ts +1 -1
- package/switch/Switch.d.ts +1 -1
- package/textarea/TextArea.d.ts +1 -1
- package/textarea/interfaces/TextAreaProps.d.ts +3 -3
package/index.d.mts
CHANGED
|
@@ -9,65 +9,65 @@ import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
|
9
9
|
import { default as ColorInput } from './colors/ColorInput.js';
|
|
10
10
|
export { type FormComponentValidity };
|
|
11
11
|
export { ColorInput };
|
|
12
|
-
export { type InputChangeEvent } from './input/interfaces/InputChangeEvent
|
|
12
|
+
export { type InputChangeEvent } from './input/interfaces/InputChangeEvent';
|
|
13
13
|
export { messages as inputsMessages, numericDecreaseValue, numericIncreaseValue } from './messages/index.js';
|
|
14
14
|
export { ColorGradient, ColorGradientWithoutContext, type ColorGradientHandle, ColorGradientPropsContext, type ColorGradientState } from './colors/ColorGradient.js';
|
|
15
15
|
export { ColorPalette, ColorPaletteWithoutContext, ColorPalettePropsContext, type ColorPaletteState } from './colors/ColorPalette.js';
|
|
16
16
|
export { PALETTEPRESETS } from './colors/models/palette-presets.js';
|
|
17
17
|
export * from './colors/ColorPicker.js';
|
|
18
|
-
export * from './colors/interfaces/ColorGradientChangeEvent
|
|
19
|
-
export * from './colors/interfaces/ColorGradientProps
|
|
20
|
-
export * from './colors/interfaces/ColorPaletteChangeEvent
|
|
21
|
-
export * from './colors/interfaces/ColorPaletteProps
|
|
22
|
-
export * from './colors/interfaces/ColorPaletteHandle
|
|
23
|
-
export * from './colors/interfaces/ColorPickerBlurEvent
|
|
24
|
-
export * from './colors/interfaces/ColorPickerChangeEvent
|
|
25
|
-
export * from './colors/interfaces/ColorPickerFocusEvent
|
|
26
|
-
export * from './colors/interfaces/ColorPickerGradientSettings
|
|
27
|
-
export * from './colors/interfaces/ColorPickerPaletteSettings
|
|
28
|
-
export * from './colors/interfaces/ColorPickerPopupSettings
|
|
29
|
-
export * from './colors/interfaces/ColorPickerProps
|
|
30
|
-
export * from './colors/interfaces/ColorPickerView
|
|
18
|
+
export * from './colors/interfaces/ColorGradientChangeEvent';
|
|
19
|
+
export * from './colors/interfaces/ColorGradientProps';
|
|
20
|
+
export * from './colors/interfaces/ColorPaletteChangeEvent';
|
|
21
|
+
export * from './colors/interfaces/ColorPaletteProps';
|
|
22
|
+
export * from './colors/interfaces/ColorPaletteHandle';
|
|
23
|
+
export * from './colors/interfaces/ColorPickerBlurEvent';
|
|
24
|
+
export * from './colors/interfaces/ColorPickerChangeEvent';
|
|
25
|
+
export * from './colors/interfaces/ColorPickerFocusEvent';
|
|
26
|
+
export * from './colors/interfaces/ColorPickerGradientSettings';
|
|
27
|
+
export * from './colors/interfaces/ColorPickerPaletteSettings';
|
|
28
|
+
export * from './colors/interfaces/ColorPickerPopupSettings';
|
|
29
|
+
export * from './colors/interfaces/ColorPickerProps';
|
|
30
|
+
export * from './colors/interfaces/ColorPickerView';
|
|
31
31
|
export * from './colors/FlatColorPicker.js';
|
|
32
32
|
export { Input, type InputHandle, type InputProps, InputPropsContext, type InputState } from './input/Input.js';
|
|
33
33
|
export { MaskedTextBox, MaskedTextBoxWithoutContext, type MaskedTextBoxHandle, type MaskedTextBoxPropsContext } from './maskedtextbox/MaskedTextBox.js';
|
|
34
34
|
export { maskingChanged } from './maskedtextbox/utils.js';
|
|
35
|
-
export * from './maskedtextbox/MaskedTextBoxProps
|
|
35
|
+
export * from './maskedtextbox/MaskedTextBoxProps';
|
|
36
36
|
export * from './numerictextbox/NumericTextBox.js';
|
|
37
|
-
export * from './numerictextbox/interfaces/NumericTextBoxHandle
|
|
38
|
-
export * from './numerictextbox/interfaces/NumericTextBoxChangeEvent
|
|
39
|
-
export * from './numerictextbox/interfaces/NumericTextBoxBlurEvent
|
|
40
|
-
export * from './numerictextbox/interfaces/NumericTextBoxFocusEvent
|
|
41
|
-
export * from './numerictextbox/interfaces/NumericTextBoxProps
|
|
37
|
+
export * from './numerictextbox/interfaces/NumericTextBoxHandle';
|
|
38
|
+
export * from './numerictextbox/interfaces/NumericTextBoxChangeEvent';
|
|
39
|
+
export * from './numerictextbox/interfaces/NumericTextBoxBlurEvent';
|
|
40
|
+
export * from './numerictextbox/interfaces/NumericTextBoxFocusEvent';
|
|
41
|
+
export * from './numerictextbox/interfaces/NumericTextBoxProps';
|
|
42
42
|
export { Slider, SliderWithoutContext, type SliderHandle, type SliderProps, type SliderPropsContext, type SliderChangeEvent } from './slider/Slider.js';
|
|
43
43
|
export * from './slider/SliderLabel.js';
|
|
44
44
|
export { sanitizeNumber } from './numerictextbox/utils/index.js';
|
|
45
45
|
export { rangeReducer, RANGE_ACTION } from './range-slider/range-raducer.js';
|
|
46
46
|
export * from './range-slider/RangeSlider.js';
|
|
47
|
-
export * from './interfaces/ToggleBaseProps
|
|
47
|
+
export * from './interfaces/ToggleBaseProps';
|
|
48
48
|
export { Switch, SwitchWithoutContext, type SwitchHandle, type SwitchProps, type SwitchPropsContext, type SwitchChangeEvent } from './switch/Switch.js';
|
|
49
|
-
export * from './checkbox/interfaces/CheckboxProps
|
|
50
|
-
export * from './checkbox/interfaces/CheckboxChangeEvent
|
|
51
|
-
export * from './checkbox/interfaces/CheckboxFocusEvent
|
|
52
|
-
export * from './checkbox/interfaces/CheckboxBlurEvent
|
|
49
|
+
export * from './checkbox/interfaces/CheckboxProps';
|
|
50
|
+
export * from './checkbox/interfaces/CheckboxChangeEvent';
|
|
51
|
+
export * from './checkbox/interfaces/CheckboxFocusEvent';
|
|
52
|
+
export * from './checkbox/interfaces/CheckboxBlurEvent';
|
|
53
53
|
export * from './checkbox/Checkbox.js';
|
|
54
54
|
export * from './radiobutton/RadioGroup.js';
|
|
55
|
-
export * from './radiobutton/interfaces/RadioGroupProps
|
|
56
|
-
export * from './radiobutton/interfaces/RadioGroupChangeEvent
|
|
57
|
-
export * from './radiobutton/interfaces/RadioGroupFocusEvent
|
|
55
|
+
export * from './radiobutton/interfaces/RadioGroupProps';
|
|
56
|
+
export * from './radiobutton/interfaces/RadioGroupChangeEvent';
|
|
57
|
+
export * from './radiobutton/interfaces/RadioGroupFocusEvent';
|
|
58
58
|
export * from './radiobutton/RadioButton.js';
|
|
59
|
-
export * from './radiobutton/interfaces/RadioButtonProps
|
|
60
|
-
export * from './radiobutton/interfaces/RadioButtonChangeEvent
|
|
61
|
-
export * from './radiobutton/interfaces/RadioButtonFocusEvent
|
|
62
|
-
export * from './radiobutton/interfaces/RadioButtonBlurEvent
|
|
59
|
+
export * from './radiobutton/interfaces/RadioButtonProps';
|
|
60
|
+
export * from './radiobutton/interfaces/RadioButtonChangeEvent';
|
|
61
|
+
export * from './radiobutton/interfaces/RadioButtonFocusEvent';
|
|
62
|
+
export * from './radiobutton/interfaces/RadioButtonBlurEvent';
|
|
63
63
|
export * from './textarea/TextArea.js';
|
|
64
|
-
export * from './textarea/interfaces/TextAreaProps
|
|
65
|
-
export * from './textarea/interfaces/TextAreaChangeEvent
|
|
66
|
-
export * from './textarea/interfaces/TextAreaFocusEvent
|
|
67
|
-
export * from './textarea/interfaces/TextAreaBlurEvent
|
|
64
|
+
export * from './textarea/interfaces/TextAreaProps';
|
|
65
|
+
export * from './textarea/interfaces/TextAreaChangeEvent';
|
|
66
|
+
export * from './textarea/interfaces/TextAreaFocusEvent';
|
|
67
|
+
export * from './textarea/interfaces/TextAreaBlurEvent';
|
|
68
68
|
export * from './rating/Rating.js';
|
|
69
69
|
export * from './rating/RatingItem.js';
|
|
70
|
-
export * from './rating/models/index
|
|
70
|
+
export * from './rating/models/index';
|
|
71
71
|
export { ratingReducer, RATING_ACTION } from './rating/rating-reducer.js';
|
|
72
72
|
export { isHalf, isSelected, isCorrectValue, toRound } from './rating/utils/index.js';
|
|
73
73
|
export * from './signature/Signature.js';
|
package/index.d.ts
CHANGED
|
@@ -9,65 +9,65 @@ import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
|
9
9
|
import { default as ColorInput } from './colors/ColorInput.js';
|
|
10
10
|
export { type FormComponentValidity };
|
|
11
11
|
export { ColorInput };
|
|
12
|
-
export { type InputChangeEvent } from './input/interfaces/InputChangeEvent
|
|
12
|
+
export { type InputChangeEvent } from './input/interfaces/InputChangeEvent';
|
|
13
13
|
export { messages as inputsMessages, numericDecreaseValue, numericIncreaseValue } from './messages/index.js';
|
|
14
14
|
export { ColorGradient, ColorGradientWithoutContext, type ColorGradientHandle, ColorGradientPropsContext, type ColorGradientState } from './colors/ColorGradient.js';
|
|
15
15
|
export { ColorPalette, ColorPaletteWithoutContext, ColorPalettePropsContext, type ColorPaletteState } from './colors/ColorPalette.js';
|
|
16
16
|
export { PALETTEPRESETS } from './colors/models/palette-presets.js';
|
|
17
17
|
export * from './colors/ColorPicker.js';
|
|
18
|
-
export * from './colors/interfaces/ColorGradientChangeEvent
|
|
19
|
-
export * from './colors/interfaces/ColorGradientProps
|
|
20
|
-
export * from './colors/interfaces/ColorPaletteChangeEvent
|
|
21
|
-
export * from './colors/interfaces/ColorPaletteProps
|
|
22
|
-
export * from './colors/interfaces/ColorPaletteHandle
|
|
23
|
-
export * from './colors/interfaces/ColorPickerBlurEvent
|
|
24
|
-
export * from './colors/interfaces/ColorPickerChangeEvent
|
|
25
|
-
export * from './colors/interfaces/ColorPickerFocusEvent
|
|
26
|
-
export * from './colors/interfaces/ColorPickerGradientSettings
|
|
27
|
-
export * from './colors/interfaces/ColorPickerPaletteSettings
|
|
28
|
-
export * from './colors/interfaces/ColorPickerPopupSettings
|
|
29
|
-
export * from './colors/interfaces/ColorPickerProps
|
|
30
|
-
export * from './colors/interfaces/ColorPickerView
|
|
18
|
+
export * from './colors/interfaces/ColorGradientChangeEvent';
|
|
19
|
+
export * from './colors/interfaces/ColorGradientProps';
|
|
20
|
+
export * from './colors/interfaces/ColorPaletteChangeEvent';
|
|
21
|
+
export * from './colors/interfaces/ColorPaletteProps';
|
|
22
|
+
export * from './colors/interfaces/ColorPaletteHandle';
|
|
23
|
+
export * from './colors/interfaces/ColorPickerBlurEvent';
|
|
24
|
+
export * from './colors/interfaces/ColorPickerChangeEvent';
|
|
25
|
+
export * from './colors/interfaces/ColorPickerFocusEvent';
|
|
26
|
+
export * from './colors/interfaces/ColorPickerGradientSettings';
|
|
27
|
+
export * from './colors/interfaces/ColorPickerPaletteSettings';
|
|
28
|
+
export * from './colors/interfaces/ColorPickerPopupSettings';
|
|
29
|
+
export * from './colors/interfaces/ColorPickerProps';
|
|
30
|
+
export * from './colors/interfaces/ColorPickerView';
|
|
31
31
|
export * from './colors/FlatColorPicker.js';
|
|
32
32
|
export { Input, type InputHandle, type InputProps, InputPropsContext, type InputState } from './input/Input.js';
|
|
33
33
|
export { MaskedTextBox, MaskedTextBoxWithoutContext, type MaskedTextBoxHandle, type MaskedTextBoxPropsContext } from './maskedtextbox/MaskedTextBox.js';
|
|
34
34
|
export { maskingChanged } from './maskedtextbox/utils.js';
|
|
35
|
-
export * from './maskedtextbox/MaskedTextBoxProps
|
|
35
|
+
export * from './maskedtextbox/MaskedTextBoxProps';
|
|
36
36
|
export * from './numerictextbox/NumericTextBox.js';
|
|
37
|
-
export * from './numerictextbox/interfaces/NumericTextBoxHandle
|
|
38
|
-
export * from './numerictextbox/interfaces/NumericTextBoxChangeEvent
|
|
39
|
-
export * from './numerictextbox/interfaces/NumericTextBoxBlurEvent
|
|
40
|
-
export * from './numerictextbox/interfaces/NumericTextBoxFocusEvent
|
|
41
|
-
export * from './numerictextbox/interfaces/NumericTextBoxProps
|
|
37
|
+
export * from './numerictextbox/interfaces/NumericTextBoxHandle';
|
|
38
|
+
export * from './numerictextbox/interfaces/NumericTextBoxChangeEvent';
|
|
39
|
+
export * from './numerictextbox/interfaces/NumericTextBoxBlurEvent';
|
|
40
|
+
export * from './numerictextbox/interfaces/NumericTextBoxFocusEvent';
|
|
41
|
+
export * from './numerictextbox/interfaces/NumericTextBoxProps';
|
|
42
42
|
export { Slider, SliderWithoutContext, type SliderHandle, type SliderProps, type SliderPropsContext, type SliderChangeEvent } from './slider/Slider.js';
|
|
43
43
|
export * from './slider/SliderLabel.js';
|
|
44
44
|
export { sanitizeNumber } from './numerictextbox/utils/index.js';
|
|
45
45
|
export { rangeReducer, RANGE_ACTION } from './range-slider/range-raducer.js';
|
|
46
46
|
export * from './range-slider/RangeSlider.js';
|
|
47
|
-
export * from './interfaces/ToggleBaseProps
|
|
47
|
+
export * from './interfaces/ToggleBaseProps';
|
|
48
48
|
export { Switch, SwitchWithoutContext, type SwitchHandle, type SwitchProps, type SwitchPropsContext, type SwitchChangeEvent } from './switch/Switch.js';
|
|
49
|
-
export * from './checkbox/interfaces/CheckboxProps
|
|
50
|
-
export * from './checkbox/interfaces/CheckboxChangeEvent
|
|
51
|
-
export * from './checkbox/interfaces/CheckboxFocusEvent
|
|
52
|
-
export * from './checkbox/interfaces/CheckboxBlurEvent
|
|
49
|
+
export * from './checkbox/interfaces/CheckboxProps';
|
|
50
|
+
export * from './checkbox/interfaces/CheckboxChangeEvent';
|
|
51
|
+
export * from './checkbox/interfaces/CheckboxFocusEvent';
|
|
52
|
+
export * from './checkbox/interfaces/CheckboxBlurEvent';
|
|
53
53
|
export * from './checkbox/Checkbox.js';
|
|
54
54
|
export * from './radiobutton/RadioGroup.js';
|
|
55
|
-
export * from './radiobutton/interfaces/RadioGroupProps
|
|
56
|
-
export * from './radiobutton/interfaces/RadioGroupChangeEvent
|
|
57
|
-
export * from './radiobutton/interfaces/RadioGroupFocusEvent
|
|
55
|
+
export * from './radiobutton/interfaces/RadioGroupProps';
|
|
56
|
+
export * from './radiobutton/interfaces/RadioGroupChangeEvent';
|
|
57
|
+
export * from './radiobutton/interfaces/RadioGroupFocusEvent';
|
|
58
58
|
export * from './radiobutton/RadioButton.js';
|
|
59
|
-
export * from './radiobutton/interfaces/RadioButtonProps
|
|
60
|
-
export * from './radiobutton/interfaces/RadioButtonChangeEvent
|
|
61
|
-
export * from './radiobutton/interfaces/RadioButtonFocusEvent
|
|
62
|
-
export * from './radiobutton/interfaces/RadioButtonBlurEvent
|
|
59
|
+
export * from './radiobutton/interfaces/RadioButtonProps';
|
|
60
|
+
export * from './radiobutton/interfaces/RadioButtonChangeEvent';
|
|
61
|
+
export * from './radiobutton/interfaces/RadioButtonFocusEvent';
|
|
62
|
+
export * from './radiobutton/interfaces/RadioButtonBlurEvent';
|
|
63
63
|
export * from './textarea/TextArea.js';
|
|
64
|
-
export * from './textarea/interfaces/TextAreaProps
|
|
65
|
-
export * from './textarea/interfaces/TextAreaChangeEvent
|
|
66
|
-
export * from './textarea/interfaces/TextAreaFocusEvent
|
|
67
|
-
export * from './textarea/interfaces/TextAreaBlurEvent
|
|
64
|
+
export * from './textarea/interfaces/TextAreaProps';
|
|
65
|
+
export * from './textarea/interfaces/TextAreaChangeEvent';
|
|
66
|
+
export * from './textarea/interfaces/TextAreaFocusEvent';
|
|
67
|
+
export * from './textarea/interfaces/TextAreaBlurEvent';
|
|
68
68
|
export * from './rating/Rating.js';
|
|
69
69
|
export * from './rating/RatingItem.js';
|
|
70
|
-
export * from './rating/models/index
|
|
70
|
+
export * from './rating/models/index';
|
|
71
71
|
export { ratingReducer, RATING_ACTION } from './rating/rating-reducer.js';
|
|
72
72
|
export { isHalf, isSelected, isCorrectValue, toRound } from './rating/utils/index.js';
|
|
73
73
|
export * from './signature/Signature.js';
|
package/input/Input.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentProps, FormComponentValidity, InputsClassStructure } from '@progress/kendo-react-common';
|
|
9
|
-
import { InputChangeEvent } from './interfaces/InputChangeEvent
|
|
9
|
+
import { InputChangeEvent } from './interfaces/InputChangeEvent';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { default as PropTypes } from 'prop-types';
|
|
9
|
-
import { MaskedTextBoxProps } from './MaskedTextBoxProps
|
|
9
|
+
import { MaskedTextBoxProps } from './MaskedTextBoxProps';
|
|
10
10
|
import { FormComponent, FormComponentValidity } from '@progress/kendo-react-common';
|
|
11
11
|
import * as React from 'react';
|
|
12
12
|
/**
|
package/maskedtextbox/utils.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { MaskedTextBoxProps } from './MaskedTextBoxProps
|
|
8
|
+
import { MaskedTextBoxProps } from './MaskedTextBoxProps';
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { NumericTextBoxProps } from './interfaces/NumericTextBoxProps
|
|
9
|
-
import { NumericTextBoxHandle } from './interfaces/NumericTextBoxHandle
|
|
8
|
+
import { NumericTextBoxProps } from './interfaces/NumericTextBoxProps';
|
|
9
|
+
import { NumericTextBoxHandle } from './interfaces/NumericTextBoxHandle';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* Represents the PropsContext of the `NumericTextBox` component.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { NumericTextBoxHandle } from './NumericTextBoxHandle
|
|
9
|
+
import { NumericTextBoxHandle } from './NumericTextBoxHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onBlur` NumericTextBox event.
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { NumericTextBoxHandle } from './NumericTextBoxHandle
|
|
9
|
+
import { NumericTextBoxHandle } from './NumericTextBoxHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `change` event of the NumericTextBox.
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { NumericTextBoxHandle } from './NumericTextBoxHandle
|
|
9
|
+
import { NumericTextBoxHandle } from './NumericTextBoxHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onFocus` NumericTextBox event.
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
9
|
-
import { NumericTextBoxProps } from './NumericTextBoxProps
|
|
9
|
+
import { NumericTextBoxProps } from './NumericTextBoxProps';
|
|
10
10
|
/**
|
|
11
11
|
* The NumericTextBox ref.
|
|
12
12
|
*/
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { CustomComponent, FormComponentProps } from '@progress/kendo-react-common';
|
|
9
9
|
import { NumberFormatOptions } from '@progress/kendo-react-intl';
|
|
10
|
-
import { NumericTextBoxChangeEvent } from './NumericTextBoxChangeEvent
|
|
11
|
-
import { NumericTextBoxFocusEvent } from './NumericTextBoxFocusEvent
|
|
12
|
-
import { NumericTextBoxBlurEvent } from './NumericTextBoxBlurEvent
|
|
10
|
+
import { NumericTextBoxChangeEvent } from './NumericTextBoxChangeEvent';
|
|
11
|
+
import { NumericTextBoxFocusEvent } from './NumericTextBoxFocusEvent';
|
|
12
|
+
import { NumericTextBoxBlurEvent } from './NumericTextBoxBlurEvent';
|
|
13
13
|
type NumericTextBoxInputType = 'tel' | 'text' | 'number';
|
|
14
14
|
/**
|
|
15
15
|
* Represents the props of the [KendoReact NumericTextBox component](https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { NumericTextBoxState } from '../interfaces/NumericTextBoxState
|
|
8
|
+
import { NumericTextBoxState } from '../interfaces/NumericTextBoxState';
|
|
9
9
|
import { NumberFormatOptions } from '@progress/kendo-react-intl';
|
|
10
10
|
/**
|
|
11
11
|
* @hidden
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-inputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-inputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1777886214,version:"14.4.1",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = Object.freeze({
|
|
|
7
7
|
productName: 'KendoReact',
|
|
8
8
|
productCode: 'KENDOUIREACT',
|
|
9
9
|
productCodes: ['KENDOUIREACT'],
|
|
10
|
-
publishDate:
|
|
11
|
-
version: '14.4.1
|
|
10
|
+
publishDate: 1777886214,
|
|
11
|
+
version: '14.4.1',
|
|
12
12
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
|
|
13
13
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-inputs",
|
|
3
|
-
"version": "14.4.1
|
|
3
|
+
"version": "14.4.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",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"@progress/kendo-drawing": "^1.21.2",
|
|
29
29
|
"@progress/kendo-inputs-common": "^3.1.0",
|
|
30
30
|
"@progress/kendo-licensing": "^1.7.2",
|
|
31
|
-
"@progress/kendo-react-animation": "14.4.1
|
|
32
|
-
"@progress/kendo-react-buttons": "14.4.1
|
|
33
|
-
"@progress/kendo-react-common": "14.4.1
|
|
34
|
-
"@progress/kendo-react-dialogs": "14.4.1
|
|
35
|
-
"@progress/kendo-react-layout": "14.4.1
|
|
36
|
-
"@progress/kendo-react-intl": "14.4.1
|
|
37
|
-
"@progress/kendo-react-labels": "14.4.1
|
|
38
|
-
"@progress/kendo-react-popup": "14.4.1
|
|
31
|
+
"@progress/kendo-react-animation": "14.4.1",
|
|
32
|
+
"@progress/kendo-react-buttons": "14.4.1",
|
|
33
|
+
"@progress/kendo-react-common": "14.4.1",
|
|
34
|
+
"@progress/kendo-react-dialogs": "14.4.1",
|
|
35
|
+
"@progress/kendo-react-layout": "14.4.1",
|
|
36
|
+
"@progress/kendo-react-intl": "14.4.1",
|
|
37
|
+
"@progress/kendo-react-labels": "14.4.1",
|
|
38
|
+
"@progress/kendo-react-popup": "14.4.1",
|
|
39
39
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
40
40
|
"react": "^18.0.0 || ^19.0.0",
|
|
41
41
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"package": {
|
|
83
83
|
"productName": "KendoReact",
|
|
84
84
|
"productCode": "KENDOUIREACT",
|
|
85
|
-
"publishDate":
|
|
85
|
+
"publishDate": 1777886214,
|
|
86
86
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
87
87
|
}
|
|
88
88
|
},
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { RadioButtonProps } from './interfaces/RadioButtonProps
|
|
8
|
+
import { RadioButtonProps } from './interfaces/RadioButtonProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The RadioButton ref.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { RadioGroupProps } from './interfaces/RadioGroupProps
|
|
8
|
+
import { RadioGroupProps } from './interfaces/RadioGroupProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The RadioGroup ref.
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { RadioButtonBlurEvent } from './RadioButtonBlurEvent
|
|
9
|
-
import { RadioButtonChangeEvent } from './RadioButtonChangeEvent
|
|
10
|
-
import { RadioButtonFocusEvent } from './RadioButtonFocusEvent
|
|
8
|
+
import { RadioButtonBlurEvent } from './RadioButtonBlurEvent';
|
|
9
|
+
import { RadioButtonChangeEvent } from './RadioButtonChangeEvent';
|
|
10
|
+
import { RadioButtonFocusEvent } from './RadioButtonFocusEvent';
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { RadioButtonProps } from './RadioButtonProps
|
|
9
|
-
import { RadioGroupFocusEvent } from './RadioGroupFocusEvent
|
|
10
|
-
import { RadioGroupChangeEvent } from './RadioGroupChangeEvent
|
|
8
|
+
import { RadioButtonProps } from './RadioButtonProps';
|
|
9
|
+
import { RadioGroupFocusEvent } from './RadioGroupFocusEvent';
|
|
10
|
+
import { RadioGroupChangeEvent } from './RadioGroupChangeEvent';
|
|
11
11
|
import { HTMLAttributes } from 'react';
|
|
12
12
|
/**
|
|
13
13
|
* Represents the props of the [KendoReact RadioGroup component](https://www.telerik.com/kendo-react-ui/components/inputs/radiobutton).
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentProps, DraggableDragEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { Direction } from '../interfaces/Direction
|
|
9
|
+
import { Direction } from '../interfaces/Direction';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* The range object representing the value of the RangeSlider.
|
package/signature/Signature.d.ts
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { SignatureHandle } from './interfaces/SignatureHandle
|
|
9
|
-
import { SignatureProps } from './interfaces/SignatureProps
|
|
8
|
+
import { SignatureHandle } from './interfaces/SignatureHandle';
|
|
9
|
+
import { SignatureProps } from './interfaces/SignatureProps';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* Represents the PropsContext of the `Signature` component.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { SignatureHandle } from './SignatureHandle
|
|
9
|
+
import { SignatureHandle } from './SignatureHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onBlur` Signature event.
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { SignatureHandle } from './SignatureHandle
|
|
9
|
+
import { SignatureHandle } from './SignatureHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `change` event of the Signature.
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { SignatureHandle } from './SignatureHandle
|
|
9
|
+
import { SignatureHandle } from './SignatureHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onClose` Signature event.
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { SignatureHandle } from './SignatureHandle
|
|
9
|
+
import { SignatureHandle } from './SignatureHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onFocus` Signature event.
|
|
12
12
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { SignatureProps } from './SignatureProps
|
|
8
|
+
import { SignatureProps } from './SignatureProps';
|
|
9
9
|
/**
|
|
10
10
|
* The Signature ref.
|
|
11
11
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { SignatureHandle } from './SignatureHandle
|
|
9
|
+
import { SignatureHandle } from './SignatureHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onOpen` Signature event.
|
|
12
12
|
*/
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
9
|
-
import { SignatureChangeEvent } from './SignatureChangeEvent
|
|
10
|
-
import { SignatureFocusEvent } from './SignatureFocusEvent
|
|
11
|
-
import { SignatureBlurEvent } from './SignatureBlurEvent
|
|
12
|
-
import { SignatureOpenEvent } from './SignatureOpenEvent
|
|
13
|
-
import { SignatureCloseEvent } from './SignatureCloseEvent
|
|
9
|
+
import { SignatureChangeEvent } from './SignatureChangeEvent';
|
|
10
|
+
import { SignatureFocusEvent } from './SignatureFocusEvent';
|
|
11
|
+
import { SignatureBlurEvent } from './SignatureBlurEvent';
|
|
12
|
+
import { SignatureOpenEvent } from './SignatureOpenEvent';
|
|
13
|
+
import { SignatureCloseEvent } from './SignatureCloseEvent';
|
|
14
14
|
/**
|
|
15
15
|
* Represents the props of the [KendoReact Signature component](https://www.telerik.com/kendo-react-ui/components/inputs/signature).
|
|
16
16
|
*/
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
export { type SignatureBlurEvent } from './SignatureBlurEvent
|
|
9
|
-
export { type SignatureChangeEvent } from './SignatureChangeEvent
|
|
10
|
-
export { type SignatureCloseEvent } from './SignatureCloseEvent
|
|
11
|
-
export { type SignatureFocusEvent } from './SignatureFocusEvent
|
|
12
|
-
export { type SignatureHandle } from './SignatureHandle
|
|
13
|
-
export { type SignatureOpenEvent } from './SignatureOpenEvent
|
|
14
|
-
export { type SignatureProps } from './SignatureProps
|
|
8
|
+
export { type SignatureBlurEvent } from './SignatureBlurEvent';
|
|
9
|
+
export { type SignatureChangeEvent } from './SignatureChangeEvent';
|
|
10
|
+
export { type SignatureCloseEvent } from './SignatureCloseEvent';
|
|
11
|
+
export { type SignatureFocusEvent } from './SignatureFocusEvent';
|
|
12
|
+
export { type SignatureHandle } from './SignatureHandle';
|
|
13
|
+
export { type SignatureOpenEvent } from './SignatureOpenEvent';
|
|
14
|
+
export { type SignatureProps } from './SignatureProps';
|
package/slider/Slider.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentProps, BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { Direction } from '../interfaces/Direction
|
|
9
|
+
import { Direction } from '../interfaces/Direction';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* The arguments for the `onChange` Slider event.
|
package/switch/Switch.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent, FormComponentProps, FormComponentValidity } from '@progress/kendo-react-common';
|
|
9
|
-
import { ToggleBaseProps } from '../interfaces/ToggleBaseProps
|
|
9
|
+
import { ToggleBaseProps } from '../interfaces/ToggleBaseProps';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* The arguments for the `onChange` Switch event.
|
package/textarea/TextArea.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { TextAreaProps } from './interfaces/TextAreaProps
|
|
8
|
+
import { TextAreaProps } from './interfaces/TextAreaProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* @hidden
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { CustomComponent, FormComponentProps } from '@progress/kendo-react-common';
|
|
9
|
-
import { TextAreaBlurEvent } from './TextAreaBlurEvent
|
|
10
|
-
import { TextAreaChangeEvent } from './TextAreaChangeEvent
|
|
11
|
-
import { TextAreaFocusEvent } from './TextAreaFocusEvent
|
|
9
|
+
import { TextAreaBlurEvent } from './TextAreaBlurEvent';
|
|
10
|
+
import { TextAreaChangeEvent } from './TextAreaChangeEvent';
|
|
11
|
+
import { TextAreaFocusEvent } from './TextAreaFocusEvent';
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
14
14
|
*/
|