@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.
Files changed (54) hide show
  1. package/checkbox/Checkbox.d.ts +1 -1
  2. package/checkbox/interfaces/CheckboxProps.d.ts +4 -4
  3. package/colors/ColorContrastLabels.d.ts +1 -1
  4. package/colors/ColorContrastSvg.d.ts +1 -1
  5. package/colors/ColorGradient.d.ts +4 -4
  6. package/colors/ColorInput.d.ts +2 -2
  7. package/colors/ColorPalette.d.ts +2 -2
  8. package/colors/ColorPicker.d.ts +1 -1
  9. package/colors/FlatColorPicker.d.ts +3 -3
  10. package/colors/Picker.d.ts +1 -1
  11. package/colors/interfaces/ColorGradientProps.d.ts +1 -1
  12. package/colors/interfaces/ColorPaletteChangeEvent.d.ts +1 -1
  13. package/colors/interfaces/ColorPaletteProps.d.ts +2 -2
  14. package/colors/interfaces/ColorPickerPaletteSettings.d.ts +1 -1
  15. package/colors/interfaces/ColorPickerProps.d.ts +8 -8
  16. package/colors/interfaces/PickerProps.d.ts +1 -1
  17. package/colors/utils/color-cache.d.ts +2 -2
  18. package/colors/utils/color-palette.service.d.ts +1 -1
  19. package/colors/utils/color-parser.d.ts +4 -4
  20. package/common/SwitchController.d.ts +1 -1
  21. package/dist/cdn/js/kendo-react-inputs.js +1 -1
  22. package/index.d.mts +37 -37
  23. package/index.d.ts +37 -37
  24. package/input/Input.d.ts +1 -1
  25. package/maskedtextbox/MaskedTextBox.d.ts +1 -1
  26. package/maskedtextbox/utils.d.ts +1 -1
  27. package/numerictextbox/NumericTextBox.d.ts +2 -2
  28. package/numerictextbox/interfaces/NumericTextBoxBlurEvent.d.ts +1 -1
  29. package/numerictextbox/interfaces/NumericTextBoxChangeEvent.d.ts +1 -1
  30. package/numerictextbox/interfaces/NumericTextBoxFocusEvent.d.ts +1 -1
  31. package/numerictextbox/interfaces/NumericTextBoxHandle.d.ts +1 -1
  32. package/numerictextbox/interfaces/NumericTextBoxProps.d.ts +3 -3
  33. package/numerictextbox/utils/index.d.ts +1 -1
  34. package/package-metadata.js +1 -1
  35. package/package-metadata.mjs +2 -2
  36. package/package.json +10 -10
  37. package/radiobutton/RadioButton.d.ts +1 -1
  38. package/radiobutton/RadioGroup.d.ts +1 -1
  39. package/radiobutton/interfaces/RadioButtonProps.d.ts +3 -3
  40. package/radiobutton/interfaces/RadioGroupProps.d.ts +3 -3
  41. package/range-slider/RangeSlider.d.ts +1 -1
  42. package/signature/Signature.d.ts +2 -2
  43. package/signature/interfaces/SignatureBlurEvent.d.ts +1 -1
  44. package/signature/interfaces/SignatureChangeEvent.d.ts +1 -1
  45. package/signature/interfaces/SignatureCloseEvent.d.ts +1 -1
  46. package/signature/interfaces/SignatureFocusEvent.d.ts +1 -1
  47. package/signature/interfaces/SignatureHandle.d.ts +1 -1
  48. package/signature/interfaces/SignatureOpenEvent.d.ts +1 -1
  49. package/signature/interfaces/SignatureProps.d.ts +5 -5
  50. package/signature/interfaces/index.d.ts +7 -7
  51. package/slider/Slider.d.ts +1 -1
  52. package/switch/Switch.d.ts +1 -1
  53. package/textarea/TextArea.d.ts +1 -1
  54. package/textarea/interfaces/TextAreaProps.d.ts +3 -3
@@ -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 { CheckboxProps } from './interfaces/CheckboxProps.js';
8
+ import { CheckboxProps } from './interfaces/CheckboxProps';
9
9
  import * as React from 'react';
10
10
  /**
11
11
  * The Checkbox ref.
@@ -5,11 +5,11 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { ToggleBaseProps } from '../../interfaces/ToggleBaseProps.js';
8
+ import { ToggleBaseProps } from '../../interfaces/ToggleBaseProps';
9
9
  import { FormComponentProps } from '@progress/kendo-react-common';
10
- import { CheckboxChangeEvent } from './CheckboxChangeEvent.js';
11
- import { CheckboxFocusEvent } from './CheckboxFocusEvent.js';
12
- import { CheckboxBlurEvent } from './CheckboxBlurEvent.js';
10
+ import { CheckboxChangeEvent } from './CheckboxChangeEvent';
11
+ import { CheckboxFocusEvent } from './CheckboxFocusEvent';
12
+ import { CheckboxBlurEvent } from './CheckboxBlurEvent';
13
13
  /**
14
14
  * @hidden
15
15
  */
@@ -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 { RGBA } from './models/rgba.js';
8
+ import { RGBA } from './models/rgba';
9
9
  import * as React from 'react';
10
10
  /**
11
11
  * @hidden
@@ -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 { HSVA } from './models/hsva.js';
8
+ import { HSVA } from './models/hsva';
9
9
  import * as React from 'react';
10
10
  /**
11
11
  * @hidden
@@ -8,10 +8,10 @@
8
8
  import { default as PropTypes } from 'prop-types';
9
9
  import { DraggableDragEvent } from '@progress/kendo-react-common';
10
10
  import { SliderChangeEvent } from './../slider/Slider.js';
11
- import { NumericTextBoxChangeEvent } from './../numerictextbox/interfaces/NumericTextBoxChangeEvent.js';
12
- import { HSVA } from './models/hsva.js';
13
- import { RGBA } from './models/rgba.js';
14
- import { ColorGradientProps } from './interfaces/ColorGradientProps.js';
11
+ import { NumericTextBoxChangeEvent } from './../numerictextbox/interfaces/NumericTextBoxChangeEvent';
12
+ import { HSVA } from './models/hsva';
13
+ import { RGBA } from './models/rgba';
14
+ import { ColorGradientProps } from './interfaces/ColorGradientProps';
15
15
  import * as React from 'react';
16
16
  /**
17
17
  * @hidden
@@ -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 { NumericTextBoxChangeEvent } from '../numerictextbox/interfaces/NumericTextBoxChangeEvent.js';
9
- import { RGBA } from './models/rgba.js';
8
+ import { NumericTextBoxChangeEvent } from '../numerictextbox/interfaces/NumericTextBoxChangeEvent';
9
+ import { RGBA } from './models/rgba';
10
10
  import * as React from 'react';
11
11
  /**
12
12
  * @hidden
@@ -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 { ColorPaletteProps } from './interfaces/ColorPaletteProps.js';
9
- import { ColorPaletteHandle } from './interfaces/ColorPaletteHandle.js';
8
+ import { ColorPaletteProps } from './interfaces/ColorPaletteProps';
9
+ import { ColorPaletteHandle } from './interfaces/ColorPaletteHandle';
10
10
  import * as React from 'react';
11
11
  /**
12
12
  * @hidden
@@ -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 { ColorPickerProps } from './interfaces/ColorPickerProps.js';
8
+ import { ColorPickerProps } from './interfaces/ColorPickerProps';
9
9
  import * as React from 'react';
10
10
  /**
11
11
  * @hidden
@@ -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 { ColorPickerView } from './interfaces/ColorPickerView.js';
9
- import { ColorPickerGradientSettings } from './interfaces/ColorPickerGradientSettings.js';
10
- import { ColorPickerPaletteSettings } from './interfaces/ColorPickerPaletteSettings.js';
8
+ import { ColorPickerView } from './interfaces/ColorPickerView';
9
+ import { ColorPickerGradientSettings } from './interfaces/ColorPickerGradientSettings';
10
+ import { ColorPickerPaletteSettings } from './interfaces/ColorPickerPaletteSettings';
11
11
  import * as React from 'react';
12
12
  /**
13
13
  * The arguments for the `onChange` FlatColorPicker event.
@@ -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 { PickerProps } from './interfaces/PickerProps.js';
8
+ import { PickerProps } from './interfaces/PickerProps';
9
9
  import * as React from 'react';
10
10
  /**
11
11
  * @hidden
@@ -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 { ColorGradientChangeEvent } from './ColorGradientChangeEvent.js';
8
+ import { ColorGradientChangeEvent } from './ColorGradientChangeEvent';
9
9
  /**
10
10
  * Represents the props of the [KendoReact ColorGradient component](https://www.telerik.com/kendo-react-ui/components/inputs/colorgradient).
11
11
  */
@@ -6,7 +6,7 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { BaseEvent } from '@progress/kendo-react-common';
9
- import { ColorPaletteHandle } from './ColorPaletteHandle.js';
9
+ import { ColorPaletteHandle } from './ColorPaletteHandle';
10
10
  /**
11
11
  * The arguments for the `onChange` ColorPalette event.
12
12
  */
@@ -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 { TileSize } from '../models/tile-size.js';
9
- import { ColorPaletteChangeEvent } from './ColorPaletteChangeEvent.js';
8
+ import { TileSize } from '../models/tile-size';
9
+ import { ColorPaletteChangeEvent } from './ColorPaletteChangeEvent';
10
10
  /**
11
11
  * Represents the props of the [KendoReact ColorPalette component](https://www.telerik.com/kendo-react-ui/components/inputs/colorpalette).
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 { TileSize } from '../models/tile-size.js';
8
+ import { TileSize } from '../models/tile-size';
9
9
  /**
10
10
  * The settings of the ColorPalette that is nested inside the popup of the ColorPicker
11
11
  * ([see example](https://www.telerik.com/kendo-react-ui/components/inputs/colorpicker/custom#toc-customizing-the-palette-popup)).
@@ -5,14 +5,14 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { ColorPickerBlurEvent } from './ColorPickerBlurEvent.js';
9
- import { ColorPickerFocusEvent } from './ColorPickerFocusEvent.js';
10
- import { ColorPickerChangeEvent } from './ColorPickerChangeEvent.js';
11
- import { ColorPickerActiveColorClick } from './ColorPickerActiveColorClick.js';
12
- import { ColorPickerPopupSettings } from './ColorPickerPopupSettings.js';
13
- import { ColorPickerPaletteSettings } from './ColorPickerPaletteSettings.js';
14
- import { ColorPickerGradientSettings } from './ColorPickerGradientSettings.js';
15
- import { ColorPickerView } from './ColorPickerView.js';
8
+ import { ColorPickerBlurEvent } from './ColorPickerBlurEvent';
9
+ import { ColorPickerFocusEvent } from './ColorPickerFocusEvent';
10
+ import { ColorPickerChangeEvent } from './ColorPickerChangeEvent';
11
+ import { ColorPickerActiveColorClick } from './ColorPickerActiveColorClick';
12
+ import { ColorPickerPopupSettings } from './ColorPickerPopupSettings';
13
+ import { ColorPickerPaletteSettings } from './ColorPickerPaletteSettings';
14
+ import { ColorPickerGradientSettings } from './ColorPickerGradientSettings';
15
+ import { ColorPickerView } from './ColorPickerView';
16
16
  import { SVGIcon } from '@progress/kendo-react-common';
17
17
  import { FlatColorPickerProps } from '../FlatColorPicker.js';
18
18
  /**
@@ -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 { PickerPopupSettings } from './PickerPopupSettings.js';
8
+ import { PickerPopupSettings } from './PickerPopupSettings';
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 { HSVA } from '../models/hsva.js';
9
- import { RGBA } from '../models/rgba.js';
8
+ import { HSVA } from '../models/hsva';
9
+ import { RGBA } from '../models/rgba';
10
10
  /**
11
11
  * @hidden
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 { TableCell } from '../models/table-cell.js';
8
+ import { TableCell } from '../models/table-cell';
9
9
  /**
10
10
  * @hidden
11
11
  */
@@ -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
- import { HSVA } from '../models/hsva.js';
9
- import { OutputFormat } from '../models/output-format.js';
10
- import { RGB } from '../models/rgb.js';
11
- import { RGBA } from '../models/rgba.js';
8
+ import { HSVA } from '../models/hsva';
9
+ import { OutputFormat } from '../models/output-format';
10
+ import { RGB } from '../models/rgb';
11
+ import { RGBA } from '../models/rgba';
12
12
  /**
13
13
  * @hidden
14
14
  *
@@ -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 { default as SwitchModel } from './SwitchModel.js';
8
+ import { default as SwitchModel } from './SwitchModel';
9
9
  /**
10
10
  * @hidden
11
11
  */