@progress/kendo-react-inputs 5.6.0-dev.202208251227 → 5.7.0-sig.202208281415
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/api.json +71211 -0
- package/dist/cdn/js/kendo-react-inputs.js +1 -1
- package/dist/es/main.d.ts +2 -0
- package/dist/es/main.js +2 -0
- package/dist/es/messages/index.d.ts +15 -0
- package/dist/es/messages/index.js +15 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/signature/Signature.d.ts +14 -0
- package/dist/es/signature/Signature.js +346 -0
- package/dist/es/signature/interfaces/SignatureBlurEvent.d.ts +7 -0
- package/dist/es/signature/interfaces/SignatureBlurEvent.js +1 -0
- package/dist/es/signature/interfaces/SignatureChangeEvent.d.ts +11 -0
- package/dist/es/signature/interfaces/SignatureChangeEvent.js +1 -0
- package/dist/es/signature/interfaces/SignatureCloseEvent.d.ts +7 -0
- package/dist/es/signature/interfaces/SignatureCloseEvent.js +1 -0
- package/dist/es/signature/interfaces/SignatureFocusEvent.d.ts +7 -0
- package/dist/es/signature/interfaces/SignatureFocusEvent.js +1 -0
- package/dist/es/signature/interfaces/SignatureHandle.d.ts +34 -0
- package/dist/es/signature/interfaces/SignatureHandle.js +1 -0
- package/dist/es/signature/interfaces/SignatureOpenEvent.d.ts +7 -0
- package/dist/es/signature/interfaces/SignatureOpenEvent.js +1 -0
- package/dist/es/signature/interfaces/SignatureProps.d.ts +192 -0
- package/dist/es/signature/interfaces/SignatureProps.js +1 -0
- package/dist/es/signature/interfaces/index.d.ts +7 -0
- package/dist/es/signature/interfaces/index.js +1 -0
- package/dist/es/signature/utils/index.d.ts +4 -0
- package/dist/es/signature/utils/index.js +10 -0
- package/dist/npm/main.d.ts +2 -0
- package/dist/npm/main.js +2 -0
- package/dist/npm/messages/index.d.ts +15 -0
- package/dist/npm/messages/index.js +16 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/signature/Signature.d.ts +14 -0
- package/dist/npm/signature/Signature.js +349 -0
- package/dist/npm/signature/interfaces/SignatureBlurEvent.d.ts +7 -0
- package/dist/npm/signature/interfaces/SignatureBlurEvent.js +2 -0
- package/dist/npm/signature/interfaces/SignatureChangeEvent.d.ts +11 -0
- package/dist/npm/signature/interfaces/SignatureChangeEvent.js +2 -0
- package/dist/npm/signature/interfaces/SignatureCloseEvent.d.ts +7 -0
- package/dist/npm/signature/interfaces/SignatureCloseEvent.js +2 -0
- package/dist/npm/signature/interfaces/SignatureFocusEvent.d.ts +7 -0
- package/dist/npm/signature/interfaces/SignatureFocusEvent.js +2 -0
- package/dist/npm/signature/interfaces/SignatureHandle.d.ts +34 -0
- package/dist/npm/signature/interfaces/SignatureHandle.js +2 -0
- package/dist/npm/signature/interfaces/SignatureOpenEvent.d.ts +7 -0
- package/dist/npm/signature/interfaces/SignatureOpenEvent.js +2 -0
- package/dist/npm/signature/interfaces/SignatureProps.d.ts +192 -0
- package/dist/npm/signature/interfaces/SignatureProps.js +2 -0
- package/dist/npm/signature/interfaces/SignatureState.d.ts +15 -0
- package/dist/npm/signature/interfaces/SignatureState.js +2 -0
- package/dist/npm/signature/interfaces/index.d.ts +7 -0
- package/dist/npm/signature/interfaces/index.js +2 -0
- package/dist/npm/signature/utils/index.d.ts +4 -0
- package/dist/npm/signature/utils/index.js +14 -0
- package/dist/systemjs/kendo-react-inputs.js +1 -1
- package/docs/_meta.yml +3 -0
- package/docs/api/Checkbox.md +23 -0
- package/docs/api/CheckboxBlurEvent.md +132 -0
- package/docs/api/CheckboxChangeEvent.md +167 -0
- package/docs/api/CheckboxFocusEvent.md +132 -0
- package/docs/api/CheckboxHandle.md +167 -0
- package/docs/api/CheckboxProps.md +1068 -0
- package/docs/api/CheckboxPropsContext.md +17 -0
- package/docs/api/ColorGradient.md +27 -0
- package/docs/api/ColorGradientChangeEvent.md +167 -0
- package/docs/api/ColorGradientHandle.md +99 -0
- package/docs/api/ColorGradientProps.md +538 -0
- package/docs/api/ColorGradientPropsContext.md +17 -0
- package/docs/api/ColorPalette.md +26 -0
- package/docs/api/ColorPaletteChangeEvent.md +202 -0
- package/docs/api/ColorPaletteHandle.md +64 -0
- package/docs/api/ColorPaletteProps.md +542 -0
- package/docs/api/ColorPalettePropsContext.md +17 -0
- package/docs/api/ColorPicker.md +23 -0
- package/docs/api/ColorPickerActiveColorClick.md +132 -0
- package/docs/api/ColorPickerBlurEvent.md +97 -0
- package/docs/api/ColorPickerChangeEvent.md +132 -0
- package/docs/api/ColorPickerFocusEvent.md +97 -0
- package/docs/api/ColorPickerGradientSettings.md +102 -0
- package/docs/api/ColorPickerPaletteSettings.md +148 -0
- package/docs/api/ColorPickerPopupSettings.md +97 -0
- package/docs/api/ColorPickerProps.md +1078 -0
- package/docs/api/ColorPickerPropsContext.md +17 -0
- package/docs/api/ColorPickerView.md +19 -0
- package/docs/api/Direction.md +12 -0
- package/docs/api/FlatColorPicker.md +13 -0
- package/docs/api/FlatColorPickerHandle.md +127 -0
- package/docs/api/FlatColorPickerProps.md +412 -0
- package/docs/api/FormComponentValidity.md +428 -0
- package/docs/api/Input.md +17 -0
- package/docs/api/InputChangeEvent.md +167 -0
- package/docs/api/InputHandle.md +204 -0
- package/docs/api/InputProps.md +428 -0
- package/docs/api/InputPropsContext.md +17 -0
- package/docs/api/MaskedTextBox.md +17 -0
- package/docs/api/MaskedTextBoxChangeEvent.md +237 -0
- package/docs/api/MaskedTextBoxEvent.md +132 -0
- package/docs/api/MaskedTextBoxHandle.md +265 -0
- package/docs/api/MaskedTextBoxProps.md +1395 -0
- package/docs/api/MaskedTextBoxPropsContext.md +17 -0
- package/docs/api/NumericTextBox.md +13 -0
- package/docs/api/NumericTextBoxBlurEvent.md +132 -0
- package/docs/api/NumericTextBoxChangeEvent.md +167 -0
- package/docs/api/NumericTextBoxFocusEvent.md +132 -0
- package/docs/api/NumericTextBoxHandle.md +197 -0
- package/docs/api/NumericTextBoxProps.md +1471 -0
- package/docs/api/NumericTextBoxPropsContext.md +17 -0
- package/docs/api/RadioButton.md +17 -0
- package/docs/api/RadioButtonBlurEvent.md +132 -0
- package/docs/api/RadioButtonChangeEvent.md +167 -0
- package/docs/api/RadioButtonFocusEvent.md +132 -0
- package/docs/api/RadioButtonHandle.md +97 -0
- package/docs/api/RadioButtonProps.md +791 -0
- package/docs/api/RadioButtonPropsContext.md +17 -0
- package/docs/api/RadioGroup.md +17 -0
- package/docs/api/RadioGroupChangeEvent.md +167 -0
- package/docs/api/RadioGroupFocusEvent.md +132 -0
- package/docs/api/RadioGroupHandle.md +97 -0
- package/docs/api/RadioGroupProps.md +707 -0
- package/docs/api/RadioGroupPropsContext.md +17 -0
- package/docs/api/Range.md +13 -0
- package/docs/api/RangeSlider.md +17 -0
- package/docs/api/RangeSliderChangeEvent.md +132 -0
- package/docs/api/RangeSliderHandle.md +127 -0
- package/docs/api/RangeSliderProps.md +853 -0
- package/docs/api/RangeSliderPropsContext.md +17 -0
- package/docs/api/Rating.md +17 -0
- package/docs/api/RatingChangeEvent.md +132 -0
- package/docs/api/RatingFocusEvent.md +97 -0
- package/docs/api/RatingHandle.md +97 -0
- package/docs/api/RatingItem.md +13 -0
- package/docs/api/RatingItemFocusEvent.md +97 -0
- package/docs/api/RatingItemHandle.md +132 -0
- package/docs/api/RatingItemKeyboardEvent.md +97 -0
- package/docs/api/RatingItemMouseEvent.md +97 -0
- package/docs/api/RatingItemProps.md +941 -0
- package/docs/api/RatingKeyboardEvent.md +97 -0
- package/docs/api/RatingMouseEvent.md +97 -0
- package/docs/api/RatingProps.md +1308 -0
- package/docs/api/RatingPropsContext.md +17 -0
- package/docs/api/Signature.md +13 -0
- package/docs/api/SignatureBlurEvent.md +132 -0
- package/docs/api/SignatureChangeEvent.md +167 -0
- package/docs/api/SignatureCloseEvent.md +132 -0
- package/docs/api/SignatureFocusEvent.md +132 -0
- package/docs/api/SignatureHandle.md +162 -0
- package/docs/api/SignatureOpenEvent.md +132 -0
- package/docs/api/SignatureProps.md +1592 -0
- package/docs/api/SignaturePropsContext.md +17 -0
- package/docs/api/Slider.md +17 -0
- package/docs/api/SliderChangeEvent.md +167 -0
- package/docs/api/SliderHandle.md +99 -0
- package/docs/api/SliderLabel.md +62 -0
- package/docs/api/SliderLabelProps.md +171 -0
- package/docs/api/SliderProps.md +902 -0
- package/docs/api/SliderPropsContext.md +17 -0
- package/docs/api/Switch.md +17 -0
- package/docs/api/SwitchChangeEvent.md +167 -0
- package/docs/api/SwitchHandle.md +239 -0
- package/docs/api/SwitchProps.md +1081 -0
- package/docs/api/SwitchPropsContext.md +17 -0
- package/docs/api/TextArea.md +27 -0
- package/docs/api/TextAreaBlurEvent.md +132 -0
- package/docs/api/TextAreaChangeEvent.md +167 -0
- package/docs/api/TextAreaFocusEvent.md +132 -0
- package/docs/api/TextAreaProps.md +1082 -0
- package/docs/api/TextAreaPropsContext.md +17 -0
- package/docs/api/TileSize.md +18 -0
- package/docs/api/ToggleBaseProps.md +132 -0
- package/docs/api/_meta.yml +3 -0
- package/docs/api/index.md +425 -0
- package/docs/auto-imports.js +40 -0
- package/docs/checkbox/_meta.yml +3 -0
- package/docs/checkbox/accessibility.md +26 -0
- package/docs/checkbox/appearance.md +28 -0
- package/docs/checkbox/controlled.md +57 -0
- package/docs/checkbox/default-state.md +24 -0
- package/docs/checkbox/disabled.md +23 -0
- package/docs/checkbox/forms-support.md +90 -0
- package/docs/checkbox/index.md +46 -0
- package/docs/checkbox/keyboard-navigation.md +36 -0
- package/docs/checkbox/labels.md +36 -0
- package/docs/colorgradient/_meta.yml +3 -0
- package/docs/colorgradient/color-contrast.md +34 -0
- package/docs/colorgradient/controlled.md +32 -0
- package/docs/colorgradient/disabled.md +23 -0
- package/docs/colorgradient/index.md +42 -0
- package/docs/colorgradient/noopacity.md +28 -0
- package/docs/colorpalette/_meta.yml +3 -0
- package/docs/colorpalette/assets/demo-img.png +0 -0
- package/docs/colorpalette/controlled.md +32 -0
- package/docs/colorpalette/custom.md +23 -0
- package/docs/colorpalette/disabled.md +23 -0
- package/docs/colorpalette/events.md +27 -0
- package/docs/colorpalette/index.md +47 -0
- package/docs/colorpalette/keyboard-navigation.md +36 -0
- package/docs/colorpalette/presets.md +23 -0
- package/docs/colorpicker/_meta.yml +3 -0
- package/docs/colorpicker/appearance.md +30 -0
- package/docs/colorpicker/color-contrast.md +33 -0
- package/docs/colorpicker/combined-views.md +46 -0
- package/docs/colorpicker/controlled.md +57 -0
- package/docs/colorpicker/custom.md +67 -0
- package/docs/colorpicker/default-value.md +20 -0
- package/docs/colorpicker/disabled.md +20 -0
- package/docs/colorpicker/index.md +41 -0
- package/docs/colorpicker/keyboard-navigation.md +39 -0
- package/docs/custom-attributes.md +27 -0
- package/docs/examples/attribute/class/main.tsx +44 -0
- package/docs/examples/attribute/func/main.tsx +58 -0
- package/docs/examples/checkbox/appearance/func/main.tsx +33 -0
- package/docs/examples/checkbox/controlled/checked/class/main.tsx +32 -0
- package/docs/examples/checkbox/controlled/checked/func/main.tsx +29 -0
- package/docs/examples/checkbox/controlled/value/class/main.tsx +32 -0
- package/docs/examples/checkbox/controlled/value/func/main.tsx +28 -0
- package/docs/examples/checkbox/default/func/main.tsx +15 -0
- package/docs/examples/checkbox/disabled/func/main.tsx +19 -0
- package/docs/examples/checkbox/forms/basic/class/main.tsx +79 -0
- package/docs/examples/checkbox/forms/basic/func/main.tsx +71 -0
- package/docs/examples/checkbox/forms/custom-message/class/main.tsx +117 -0
- package/docs/examples/checkbox/forms/custom-message/func/main.tsx +124 -0
- package/docs/examples/checkbox/forms/disable-styles/class/main.tsx +126 -0
- package/docs/examples/checkbox/forms/disable-styles/func/main.tsx +125 -0
- package/docs/examples/checkbox/forms/kendo-react-form/func/main.tsx +137 -0
- package/docs/examples/checkbox/keyboard/class/main.tsx +32 -0
- package/docs/examples/checkbox/keyboard/func/main.tsx +27 -0
- package/docs/examples/checkbox/labels/custom/func/main.tsx +20 -0
- package/docs/examples/checkbox/labels/setup/func/main.tsx +20 -0
- package/docs/examples/checkbox/main/func/main.tsx +22 -0
- package/docs/examples/colorgradient/colorcontrast/class/main.tsx +48 -0
- package/docs/examples/colorgradient/colorcontrast/func/main.tsx +43 -0
- package/docs/examples/colorgradient/controlled/class/main.tsx +29 -0
- package/docs/examples/colorgradient/controlled/func/main.tsx +21 -0
- package/docs/examples/colorgradient/disabled/func/main.tsx +17 -0
- package/docs/examples/colorgradient/opacity/class/main.tsx +32 -0
- package/docs/examples/colorgradient/opacity/func/main.tsx +24 -0
- package/docs/examples/colorgradient/overview/class/main.tsx +42 -0
- package/docs/examples/colorgradient/overview/func/main.tsx +34 -0
- package/docs/examples/colorpalette/controlled/class/main.tsx +25 -0
- package/docs/examples/colorpalette/controlled/func/main.tsx +17 -0
- package/docs/examples/colorpalette/custom/func/main.tsx +13 -0
- package/docs/examples/colorpalette/disabled/func/main.tsx +13 -0
- package/docs/examples/colorpalette/keyboard/class/main.tsx +30 -0
- package/docs/examples/colorpalette/keyboard/func/main.tsx +30 -0
- package/docs/examples/colorpalette/overview/basic/class/main.tsx +55 -0
- package/docs/examples/colorpalette/overview/basic/class/styles.css +50 -0
- package/docs/examples/colorpalette/overview/basic/func/main.tsx +47 -0
- package/docs/examples/colorpalette/overview/basic/func/styles.css +50 -0
- package/docs/examples/colorpalette/overview/events/class/main.tsx +48 -0
- package/docs/examples/colorpalette/overview/events/func/main.tsx +40 -0
- package/docs/examples/colorpalette/presets/func/main.tsx +70 -0
- package/docs/examples/colorpicker/appearance/func/main.tsx +37 -0
- package/docs/examples/colorpicker/colorcontrast/class/main.tsx +50 -0
- package/docs/examples/colorpicker/colorcontrast/func/main.tsx +44 -0
- package/docs/examples/colorpicker/controlled/popup/class/main.tsx +39 -0
- package/docs/examples/colorpicker/controlled/popup/func/main.tsx +31 -0
- package/docs/examples/colorpicker/controlled/value/class/main.tsx +25 -0
- package/docs/examples/colorpicker/controlled/value/func/main.tsx +17 -0
- package/docs/examples/colorpicker/custom/custom-icons/func/main.tsx +18 -0
- package/docs/examples/colorpicker/custom/gradient/func/main.tsx +24 -0
- package/docs/examples/colorpicker/custom/kendo-icons/func/main.tsx +18 -0
- package/docs/examples/colorpicker/custom/palette/func/main.tsx +28 -0
- package/docs/examples/colorpicker/default/func/main.tsx +24 -0
- package/docs/examples/colorpicker/disabled/func/main.tsx +17 -0
- package/docs/examples/colorpicker/keyboard/class/main.tsx +30 -0
- package/docs/examples/colorpicker/keyboard/func/main.tsx +29 -0
- package/docs/examples/colorpicker/overview/func/main.tsx +24 -0
- package/docs/examples/colorpicker/view/combined/class/main.tsx +37 -0
- package/docs/examples/colorpicker/view/combined/func/main.tsx +27 -0
- package/docs/examples/colorpicker/view/popup/class/main.tsx +66 -0
- package/docs/examples/colorpicker/view/popup/func/main.tsx +55 -0
- package/docs/examples/flatcolorpicker/basic/func/main.tsx +13 -0
- package/docs/examples/flatcolorpicker/customization/footer/func/main.tsx +13 -0
- package/docs/examples/flatcolorpicker/customization/header/func/main.tsx +13 -0
- package/docs/examples/flatcolorpicker/disabled/func/main.tsx +13 -0
- package/docs/examples/get-started/func/main.tsx +14 -0
- package/docs/examples/globalization/func/main.tsx +47 -0
- package/docs/examples/input/counter/main.tsx +30 -0
- package/docs/examples/input/forms/basic/class/main.tsx +87 -0
- package/docs/examples/input/forms/basic/func/main.tsx +79 -0
- package/docs/examples/input/forms/custom-message/class/main.tsx +94 -0
- package/docs/examples/input/forms/custom-message/func/main.tsx +86 -0
- package/docs/examples/input/forms/disable-styles/class/main.tsx +115 -0
- package/docs/examples/input/forms/disable-styles/func/main.tsx +106 -0
- package/docs/examples/input/forms/override/class/main.tsx +111 -0
- package/docs/examples/input/forms/override/func/main.tsx +102 -0
- package/docs/examples/input/main/main.jsx +17 -0
- package/docs/examples/input/overview/func/main.tsx +88 -0
- package/docs/examples/label/class/main.tsx +69 -0
- package/docs/examples/label/func/main.tsx +65 -0
- package/docs/examples/maskedtextbox/appearance/func/main.tsx +41 -0
- package/docs/examples/maskedtextbox/disabled/func/main.tsx +24 -0
- package/docs/examples/maskedtextbox/forms/basic/class/main.tsx +78 -0
- package/docs/examples/maskedtextbox/forms/basic/func/main.tsx +70 -0
- package/docs/examples/maskedtextbox/forms/custom-message/class/main.tsx +81 -0
- package/docs/examples/maskedtextbox/forms/custom-message/func/main.tsx +73 -0
- package/docs/examples/maskedtextbox/forms/disable-styles/class/main.tsx +75 -0
- package/docs/examples/maskedtextbox/forms/disable-styles/func/main.tsx +67 -0
- package/docs/examples/maskedtextbox/forms/override/class/main.tsx +85 -0
- package/docs/examples/maskedtextbox/forms/override/func/main.tsx +75 -0
- package/docs/examples/maskedtextbox/mask/basic/func/main.tsx +19 -0
- package/docs/examples/maskedtextbox/mask/extend/func/main.tsx +35 -0
- package/docs/examples/maskedtextbox/overview/basic/func/main.tsx +18 -0
- package/docs/examples/maskedtextbox/readonly/func/main.tsx +20 -0
- package/docs/examples/maskedtextbox/valid/class/main.tsx +59 -0
- package/docs/examples/maskedtextbox/valid/func/main.tsx +51 -0
- package/docs/examples/maskedtextbox/value/class/main.tsx +37 -0
- package/docs/examples/maskedtextbox/value/func/main.tsx +29 -0
- package/docs/examples/numerictextbox/appearance/func/main.tsx +39 -0
- package/docs/examples/numerictextbox/formats/func/main.tsx +53 -0
- package/docs/examples/numerictextbox/forms/basic/class/main.tsx +75 -0
- package/docs/examples/numerictextbox/forms/basic/func/main.tsx +67 -0
- package/docs/examples/numerictextbox/forms/custom-message/class/main.tsx +82 -0
- package/docs/examples/numerictextbox/forms/custom-message/func/main.tsx +74 -0
- package/docs/examples/numerictextbox/forms/disable-styles/class/main.tsx +98 -0
- package/docs/examples/numerictextbox/forms/disable-styles/func/main.tsx +85 -0
- package/docs/examples/numerictextbox/forms/override/class/main.tsx +96 -0
- package/docs/examples/numerictextbox/forms/override/func/main.tsx +87 -0
- package/docs/examples/numerictextbox/forms/ref/class/main.tsx +44 -0
- package/docs/examples/numerictextbox/forms/ref/func/main.tsx +34 -0
- package/docs/examples/numerictextbox/keyboard/func/main.tsx +20 -0
- package/docs/examples/numerictextbox/overview/class/main.tsx +55 -0
- package/docs/examples/numerictextbox/overview/func/main.tsx +43 -0
- package/docs/examples/numerictextbox/spin/func/main.tsx +22 -0
- package/docs/examples/numerictextbox/step/func/main.tsx +21 -0
- package/docs/examples/overview/func/main.tsx +102 -0
- package/docs/examples/props-context/overview/class/grid-with-filtering.tsx +32 -0
- package/docs/examples/props-context/overview/class/main.tsx +26 -0
- package/docs/examples/props-context/overview/class/sample-products.ts +182 -0
- package/docs/examples/props-context/overview/func/grid-with-filtering.tsx +32 -0
- package/docs/examples/props-context/overview/func/main.tsx +24 -0
- package/docs/examples/props-context/overview/func/sample-products.ts +182 -0
- package/docs/examples/radiobutton/appearance/func/main.tsx +28 -0
- package/docs/examples/radiobutton/custom-labels/func/main.tsx +28 -0
- package/docs/examples/radiobutton/disabled/func/main.tsx +20 -0
- package/docs/examples/radiobutton/labels/func/main.tsx +20 -0
- package/docs/examples/radiobutton/overview/class/main.tsx +35 -0
- package/docs/examples/radiobutton/overview/func/main.tsx +30 -0
- package/docs/examples/radiogroup/controlled/class/main.tsx +49 -0
- package/docs/examples/radiogroup/controlled/func/main.tsx +40 -0
- package/docs/examples/radiogroup/default-state/func/main.tsx +19 -0
- package/docs/examples/radiogroup/forms/class/main.tsx +150 -0
- package/docs/examples/radiogroup/forms/func/main.tsx +146 -0
- package/docs/examples/radiogroup/keyboard/class/main.tsx +37 -0
- package/docs/examples/radiogroup/keyboard/func/main.tsx +31 -0
- package/docs/examples/radiogroup/layout/class/main.tsx +49 -0
- package/docs/examples/radiogroup/layout/func/main.tsx +43 -0
- package/docs/examples/radiogroup/overview/func/main.tsx +18 -0
- package/docs/examples/rangeslider/controlled/class/main.tsx +45 -0
- package/docs/examples/rangeslider/controlled/func/main.tsx +37 -0
- package/docs/examples/rangeslider/disabled/func/main.tsx +27 -0
- package/docs/examples/rangeslider/labels/func/main.tsx +26 -0
- package/docs/examples/rangeslider/orientation/func/main.tsx +27 -0
- package/docs/examples/rangeslider/overview/func/main.tsx +26 -0
- package/docs/examples/rating/controlled/class/main.tsx +29 -0
- package/docs/examples/rating/controlled/func/main.tsx +21 -0
- package/docs/examples/rating/disabled/func/main.tsx +18 -0
- package/docs/examples/rating/forms/class/main.tsx +85 -0
- package/docs/examples/rating/forms/func/main.tsx +79 -0
- package/docs/examples/rating/icon/func/main.tsx +15 -0
- package/docs/examples/rating/items/func/main.tsx +15 -0
- package/docs/examples/rating/label/class/main.tsx +33 -0
- package/docs/examples/rating/label/func/main.tsx +26 -0
- package/docs/examples/rating/navigation/func/main.tsx +15 -0
- package/docs/examples/rating/overview/func/main.tsx +12 -0
- package/docs/examples/rating/precision/func/main.tsx +27 -0
- package/docs/examples/rating/rating-item/advanced/class/main.tsx +82 -0
- package/docs/examples/rating/rating-item/advanced/func/main.tsx +76 -0
- package/docs/examples/rating/rating-item/overview/func/main.tsx +75 -0
- package/docs/examples/rating/readonly/func/main.tsx +18 -0
- package/docs/examples/rating/selection/func/main.tsx +25 -0
- package/docs/examples/rtl/func/main.tsx +99 -0
- package/docs/examples/shared/checkbox-style-configurator.tsx +69 -0
- package/docs/examples/shared/es.json +6 -0
- package/docs/examples/shared/radiobutton-style-configurator.tsx +47 -0
- package/docs/examples/shared/sample-signature.ts +2 -0
- package/docs/examples/shared/style-configurator.tsx +93 -0
- package/docs/examples/shared/switch-style-configurator.tsx +91 -0
- package/docs/examples/signature/appearance/all-options/func/main.tsx +89 -0
- package/docs/examples/signature/appearance/color/func/main.tsx +17 -0
- package/docs/examples/signature/appearance/stroke-width/func/main.tsx +16 -0
- package/docs/examples/signature/controlled/export-scale/func/main.tsx +34 -0
- package/docs/examples/signature/controlled/popup/func/main.tsx +28 -0
- package/docs/examples/signature/controlled/value/func/main.tsx +19 -0
- package/docs/examples/signature/disabled/func/main.tsx +17 -0
- package/docs/examples/signature/events/func/main.tsx +66 -0
- package/docs/examples/signature/forms/kendo/func/main.tsx +148 -0
- package/docs/examples/signature/overview/func/main.tsx +239 -0
- package/docs/examples/signature/overview/func/styles.css +56 -0
- package/docs/examples/signature/popup/disabled/func/main.tsx +14 -0
- package/docs/examples/signature/popup/scale/func/main.tsx +14 -0
- package/docs/examples/signature/readonly/func/main.tsx +17 -0
- package/docs/examples/signature/smooth/func/main.tsx +14 -0
- package/docs/examples/slider/buttons/func/main.tsx +18 -0
- package/docs/examples/slider/controlled/class/main.tsx +45 -0
- package/docs/examples/slider/controlled/func/main.tsx +36 -0
- package/docs/examples/slider/labels/class/main.tsx +44 -0
- package/docs/examples/slider/labels/func/main.tsx +35 -0
- package/docs/examples/slider/orientation/func/main.tsx +25 -0
- package/docs/examples/slider/overview/func/main.tsx +24 -0
- package/docs/examples/switch/appearance/func/main.tsx +38 -0
- package/docs/examples/switch/controlled/manual/class/main.tsx +40 -0
- package/docs/examples/switch/controlled/manual/func/main.tsx +33 -0
- package/docs/examples/switch/controlled/readonly/func/main.tsx +15 -0
- package/docs/examples/switch/default/func/main.tsx +15 -0
- package/docs/examples/switch/disabled/func/main.tsx +15 -0
- package/docs/examples/switch/forms/basic/class/main.tsx +81 -0
- package/docs/examples/switch/forms/basic/func/main.tsx +72 -0
- package/docs/examples/switch/forms/custom-message/class/main.tsx +108 -0
- package/docs/examples/switch/forms/custom-message/func/main.tsx +100 -0
- package/docs/examples/switch/forms/disable-styles/class/main.tsx +129 -0
- package/docs/examples/switch/forms/disable-styles/func/main.tsx +118 -0
- package/docs/examples/switch/forms/kendo-react-form/class/main.tsx +104 -0
- package/docs/examples/switch/forms/kendo-react-form/func/main.tsx +106 -0
- package/docs/examples/switch/keyboard/class/main.tsx +22 -0
- package/docs/examples/switch/keyboard/func/main.tsx +23 -0
- package/docs/examples/switch/labels/func/main.tsx +15 -0
- package/docs/examples/switch/overview/basic/func/main.tsx +15 -0
- package/docs/examples/textarea/appearance/func/main.tsx +39 -0
- package/docs/examples/textarea/auto-sizing/func/main.tsx +18 -0
- package/docs/examples/textarea/controlled/class/main.tsx +32 -0
- package/docs/examples/textarea/controlled/func/main.tsx +26 -0
- package/docs/examples/textarea/counter/class/main.tsx +38 -0
- package/docs/examples/textarea/counter/func/main.tsx +32 -0
- package/docs/examples/textarea/default-state/func/main.tsx +18 -0
- package/docs/examples/textarea/disabled/func/main.tsx +20 -0
- package/docs/examples/textarea/forms/kendo-react-form/class/main.tsx +152 -0
- package/docs/examples/textarea/forms/kendo-react-form/func/main.tsx +140 -0
- package/docs/examples/textarea/main/func/main.tsx +15 -0
- package/docs/examples/textarea/overview/class/main.tsx +103 -0
- package/docs/examples/textarea/overview/func/main.tsx +90 -0
- package/docs/examples/textarea/sizing/func/main.tsx +15 -0
- package/docs/examples/tsconfig.json +29 -0
- package/docs/flatcolorpicker/_meta.yml +3 -0
- package/docs/flatcolorpicker/customization.md +33 -0
- package/docs/flatcolorpicker/disabled.md +22 -0
- package/docs/flatcolorpicker/index.md +30 -0
- package/docs/floating-labels.md +35 -0
- package/docs/get-started.md +153 -0
- package/docs/globalization.md +67 -0
- package/docs/index.md +212 -0
- package/docs/input/_meta.yml +3 -0
- package/docs/input/counter.md +20 -0
- package/docs/input/forms.md +87 -0
- package/docs/input/index.md +40 -0
- package/docs/maskedtextbox/_meta.yml +3 -0
- package/docs/maskedtextbox/accessibility.md +22 -0
- package/docs/maskedtextbox/appearance.md +30 -0
- package/docs/maskedtextbox/disabled-state.md +20 -0
- package/docs/maskedtextbox/forms.md +87 -0
- package/docs/maskedtextbox/index.md +40 -0
- package/docs/maskedtextbox/masks.md +44 -0
- package/docs/maskedtextbox/readonly-state.md +20 -0
- package/docs/maskedtextbox/valid-state.md +25 -0
- package/docs/maskedtextbox/value.md +23 -0
- package/docs/numerictextbox/_meta.yml +3 -0
- package/docs/numerictextbox/accessibility.md +25 -0
- package/docs/numerictextbox/appearance.md +30 -0
- package/docs/numerictextbox/formats.md +25 -0
- package/docs/numerictextbox/forms.md +87 -0
- package/docs/numerictextbox/index.md +49 -0
- package/docs/numerictextbox/keyboard-navigation.md +26 -0
- package/docs/numerictextbox/predefined-step.md +20 -0
- package/docs/numerictextbox/ref.md +28 -0
- package/docs/numerictextbox/spin-buttons.md +20 -0
- package/docs/props-context.md +65 -0
- package/docs/radiobutton/_meta.yml +3 -0
- package/docs/radiobutton/appearance.md +26 -0
- package/docs/radiobutton/disabled.md +23 -0
- package/docs/radiobutton/index.md +47 -0
- package/docs/radiobutton/labels.md +36 -0
- package/docs/radiogroup/_meta.yml +3 -0
- package/docs/radiogroup/accessibility.md +25 -0
- package/docs/radiogroup/controlled_mode.md +34 -0
- package/docs/radiogroup/default_state.md +24 -0
- package/docs/radiogroup/forms_support.md +37 -0
- package/docs/radiogroup/index.md +41 -0
- package/docs/radiogroup/keyboard_navigation.md +37 -0
- package/docs/radiogroup/layout.md +29 -0
- package/docs/rangeslider/_meta.yml +3 -0
- package/docs/rangeslider/accessibility.md +26 -0
- package/docs/rangeslider/controlled.md +32 -0
- package/docs/rangeslider/disabled.md +23 -0
- package/docs/rangeslider/index.md +41 -0
- package/docs/rangeslider/keyboard-navigation.md +33 -0
- package/docs/rangeslider/orientation.md +24 -0
- package/docs/rangeslider/ticks.md +26 -0
- package/docs/rating/_meta.yml +3 -0
- package/docs/rating/accessibility.md +26 -0
- package/docs/rating/forms_support.md +39 -0
- package/docs/rating/functionality-and-features/_meta.yml +2 -0
- package/docs/rating/functionality-and-features/controlled.md +34 -0
- package/docs/rating/functionality-and-features/disabled.md +23 -0
- package/docs/rating/functionality-and-features/icon.md +27 -0
- package/docs/rating/functionality-and-features/items.md +24 -0
- package/docs/rating/functionality-and-features/label.md +28 -0
- package/docs/rating/functionality-and-features/precision.md +51 -0
- package/docs/rating/functionality-and-features/readonly.md +23 -0
- package/docs/rating/functionality-and-features/selection.md +23 -0
- package/docs/rating/index.md +45 -0
- package/docs/rating/item_custamization.md +45 -0
- package/docs/rating/keyboard-navigation.md +33 -0
- package/docs/signature/_meta.yml +3 -0
- package/docs/signature/appearance.md +96 -0
- package/docs/signature/controlled.md +60 -0
- package/docs/signature/disabled.md +21 -0
- package/docs/signature/events.md +20 -0
- package/docs/signature/forms.md +28 -0
- package/docs/signature/index.md +34 -0
- package/docs/signature/line-smoothing.md +16 -0
- package/docs/signature/popup.md +34 -0
- package/docs/signature/readonly.md +21 -0
- package/docs/slider/_meta.yml +3 -0
- package/docs/slider/accessibility.md +26 -0
- package/docs/slider/controlled.md +32 -0
- package/docs/slider/index.md +41 -0
- package/docs/slider/keyboard-navigation.md +33 -0
- package/docs/slider/orientation.md +24 -0
- package/docs/slider/side-buttons.md +24 -0
- package/docs/slider/ticks.md +31 -0
- package/docs/switch/_meta.yml +3 -0
- package/docs/switch/accessibility.md +17 -0
- package/docs/switch/appearance.md +30 -0
- package/docs/switch/controlled-switch.md +44 -0
- package/docs/switch/default-state.md +20 -0
- package/docs/switch/disabled-state.md +20 -0
- package/docs/switch/forms-support.md +78 -0
- package/docs/switch/index.md +44 -0
- package/docs/switch/keyboard-navigation.md +31 -0
- package/docs/switch/labels.md +29 -0
- package/docs/textarea/_meta.yml +3 -0
- package/docs/textarea/appearance.md +30 -0
- package/docs/textarea/controlled_mode.md +37 -0
- package/docs/textarea/counter.md +28 -0
- package/docs/textarea/default_state.md +25 -0
- package/docs/textarea/disabled.md +24 -0
- package/docs/textarea/forms_support.md +39 -0
- package/docs/textarea/index.md +51 -0
- package/docs/textarea/sizing.md +38 -0
- package/e2e/a11y.tests.ts +154 -0
- package/e2e/input.tests.ts +143 -0
- package/e2e/numeric.tests.ts +134 -0
- package/e2e/switch.tests.ts +122 -0
- package/examples/checkbox/checkbox.html +9 -0
- package/examples/checkbox/checkbox.tsx +292 -0
- package/examples/checkbox/checkboxForm.html +9 -0
- package/examples/checkbox/checkboxForm.tsx +81 -0
- package/examples/checkbox/checked-n-value.html +9 -0
- package/examples/checkbox/checked-n-value.tsx +115 -0
- package/examples/checkbox/controlled-mode.html +9 -0
- package/examples/checkbox/controlled-mode.tsx +69 -0
- package/examples/checkbox/form.html +9 -0
- package/examples/checkbox/form.tsx +78 -0
- package/examples/checkbox/formik.html +9 -0
- package/examples/checkbox/formik.tsx +89 -0
- package/examples/colors/colorContrast.html +12 -0
- package/examples/colors/colorContrast.tsx +52 -0
- package/examples/colors/colorGradient.html +9 -0
- package/examples/colors/colorGradient.tsx +37 -0
- package/examples/colors/colorPalette.html +9 -0
- package/examples/colors/colorPalette.tsx +29 -0
- package/examples/colors/colorPicker.html +22 -0
- package/examples/colors/colorPicker.tsx +58 -0
- package/examples/colors/colorPickerLocalization.html +9 -0
- package/examples/colors/colorPickerLocalization.tsx +31 -0
- package/examples/colors/flatColorPicker.html +12 -0
- package/examples/colors/flatColorPicker.tsx +21 -0
- package/examples/context/class/grid-with-filtering.tsx +32 -0
- package/examples/context/class/index.html +9 -0
- package/examples/context/class/index.tsx +28 -0
- package/examples/context/class/sample-products.tsx +182 -0
- package/examples/context/func/grid-with-filtering.tsx +32 -0
- package/examples/context/func/index.html +9 -0
- package/examples/context/func/index.tsx +26 -0
- package/examples/context/func/sample-products.tsx +182 -0
- package/examples/e2e/accessibility/CheckboxExample.tsx +26 -0
- package/examples/e2e/accessibility/ColorGradientExample.tsx +28 -0
- package/examples/e2e/accessibility/ColorPaletteExample.tsx +33 -0
- package/examples/e2e/accessibility/ColorPickerExample.tsx +21 -0
- package/examples/e2e/accessibility/InputExample.tsx +49 -0
- package/examples/e2e/accessibility/MaskedTextBoxExample.tsx +29 -0
- package/examples/e2e/accessibility/NumericTextBoxExample.tsx +24 -0
- package/examples/e2e/accessibility/RadioButtonExample.tsx +29 -0
- package/examples/e2e/accessibility/RangeSliderExample.tsx +26 -0
- package/examples/e2e/accessibility/RatingExample.tsx +13 -0
- package/examples/e2e/accessibility/SliderExample.tsx +19 -0
- package/examples/e2e/accessibility/SwitchExample.tsx +26 -0
- package/examples/e2e/accessibility/TextAreaExample.tsx +70 -0
- package/examples/e2e/accessibility/main.html +14 -0
- package/examples/e2e/accessibility/main.tsx +104 -0
- package/examples/e2e/input/input.html +9 -0
- package/examples/e2e/input/input.tsx +58 -0
- package/examples/e2e/numerictextbox/numericLabel.html +9 -0
- package/examples/e2e/numerictextbox/numericLabel.tsx +38 -0
- package/examples/e2e/switch/switch.html +16 -0
- package/examples/e2e/switch/switch.tsx +74 -0
- package/examples/focus/focus.html +9 -0
- package/examples/focus/focus.tsx +81 -0
- package/examples/input/inputFloatingLabels.html +9 -0
- package/examples/input/inputFloatingLabels.tsx +26 -0
- package/examples/input/inputForm.html +9 -0
- package/examples/input/inputForm.tsx +151 -0
- package/examples/maskedtextbox/basic.html +9 -0
- package/examples/maskedtextbox/basic.tsx +54 -0
- package/examples/maskedtextbox/ipmask.html +9 -0
- package/examples/maskedtextbox/ipmask.tsx +79 -0
- package/examples/messages/index.ts +4 -0
- package/examples/numerictextbox/newNumeric.html +9 -0
- package/examples/numerictextbox/newNumeric.tsx +149 -0
- package/examples/numerictextbox/numeric.html +9 -0
- package/examples/numerictextbox/numeric.tsx +247 -0
- package/examples/numerictextbox/numericApiExample.html +9 -0
- package/examples/numerictextbox/numericApiExample.tsx +25 -0
- package/examples/numerictextbox/numericForm.html +9 -0
- package/examples/numerictextbox/numericForm.tsx +89 -0
- package/examples/numerictextbox/roundingIssues.html +9 -0
- package/examples/numerictextbox/roundingIssues.tsx +51 -0
- package/examples/numerictextbox/test.html +9 -0
- package/examples/numerictextbox/test.tsx +165 -0
- package/examples/numerictextbox/testingBlurDisabled.html +9 -0
- package/examples/numerictextbox/testingBlurDisabled.tsx +167 -0
- package/examples/radio-group/customization/index.html +12 -0
- package/examples/radio-group/customization/index.tsx +32 -0
- package/examples/radioButton/accessibility.html +12 -0
- package/examples/radioButton/accessibility.tsx +81 -0
- package/examples/radioButton/html-forms.html +9 -0
- package/examples/radioButton/html-forms.tsx +63 -0
- package/examples/radioButton/kendo-react-form.html +12 -0
- package/examples/radioButton/kendo-react-form.tsx +80 -0
- package/examples/radioButton/radio.html +9 -0
- package/examples/radioButton/radio.tsx +45 -0
- package/examples/radioButton/standalone-radio.html +9 -0
- package/examples/radioButton/standalone-radio.tsx +76 -0
- package/examples/range-slider/form/index.html +9 -0
- package/examples/range-slider/form/index.tsx +57 -0
- package/examples/range-slider/index.html +9 -0
- package/examples/range-slider/index.tsx +147 -0
- package/examples/rating/index.html +9 -0
- package/examples/rating/index.tsx +158 -0
- package/examples/rtl/index.html +12 -0
- package/examples/rtl/index.tsx +29 -0
- package/examples/signature/basic.html +9 -0
- package/examples/signature/basic.tsx +72 -0
- package/examples/signature/forms-basic.html +9 -0
- package/examples/signature/forms-basic.tsx +72 -0
- package/examples/signature/forms.html +9 -0
- package/examples/signature/forms.tsx +90 -0
- package/examples/slider/slider.html +15 -0
- package/examples/slider/slider.tsx +99 -0
- package/examples/slider/vertical.html +15 -0
- package/examples/slider/vertical.tsx +28 -0
- package/examples/switch/switch.html +9 -0
- package/examples/switch/switch.tsx +44 -0
- package/examples/switch/switchDoubleEvent.html +9 -0
- package/examples/switch/switchDoubleEvent.tsx +25 -0
- package/examples/switch/switchForm.html +9 -0
- package/examples/switch/switchForm.tsx +138 -0
- package/examples/textarea/formik.html +12 -0
- package/examples/textarea/formik.tsx +84 -0
- package/examples/textarea/textarea.html +12 -0
- package/examples/textarea/textarea.tsx +96 -0
- package/gulpfile.js +7 -0
- package/package.json +19 -16
- package/src/checkbox/Checkbox.tsx +352 -0
- package/src/checkbox/interfaces/CheckboxBlurEvent.ts +7 -0
- package/src/checkbox/interfaces/CheckboxChangeEvent.ts +12 -0
- package/src/checkbox/interfaces/CheckboxFocusEvent.ts +7 -0
- package/src/checkbox/interfaces/CheckboxProps.ts +122 -0
- package/src/colors/ColorContrastLabels.tsx +83 -0
- package/src/colors/ColorContrastSvg.tsx +88 -0
- package/src/colors/ColorGradient.tsx +450 -0
- package/src/colors/ColorInput.tsx +192 -0
- package/src/colors/ColorPalette.tsx +329 -0
- package/src/colors/ColorPicker.tsx +387 -0
- package/src/colors/FlatColorPicker.tsx +258 -0
- package/src/colors/HexInput.tsx +67 -0
- package/src/colors/Picker.tsx +56 -0
- package/src/colors/interfaces/ColorGradientChangeEvent.ts +12 -0
- package/src/colors/interfaces/ColorGradientProps.ts +77 -0
- package/src/colors/interfaces/ColorPaletteChangeEvent.ts +16 -0
- package/src/colors/interfaces/ColorPaletteProps.ts +78 -0
- package/src/colors/interfaces/ColorPickerActiveColorClick.ts +17 -0
- package/src/colors/interfaces/ColorPickerBlurEvent.ts +13 -0
- package/src/colors/interfaces/ColorPickerChangeEvent.ts +17 -0
- package/src/colors/interfaces/ColorPickerFocusEvent.ts +13 -0
- package/src/colors/interfaces/ColorPickerGradientSettings.ts +19 -0
- package/src/colors/interfaces/ColorPickerPaletteSettings.ts +35 -0
- package/src/colors/interfaces/ColorPickerPopupSettings.ts +16 -0
- package/src/colors/interfaces/ColorPickerProps.ts +170 -0
- package/src/colors/interfaces/ColorPickerView.ts +10 -0
- package/src/colors/interfaces/PickerPopupSettings.ts +21 -0
- package/src/colors/interfaces/PickerProps.ts +51 -0
- package/src/colors/models/hsva.ts +9 -0
- package/src/colors/models/output-format.ts +4 -0
- package/src/colors/models/palette-presets.ts +54 -0
- package/src/colors/models/rgb.ts +8 -0
- package/src/colors/models/rgba.ts +9 -0
- package/src/colors/models/table-cell.ts +7 -0
- package/src/colors/models/tile-size.ts +8 -0
- package/src/colors/utils/color-cache.ts +71 -0
- package/src/colors/utils/color-palette.service.ts +79 -0
- package/src/colors/utils/color-parser.ts +158 -0
- package/src/colors/utils/misc.ts +23 -0
- package/src/colors/utils/svg-calc.ts +115 -0
- package/src/common/SliderTooltip.tsx +83 -0
- package/src/common/SwitchController.ts +130 -0
- package/src/common/SwitchModel.ts +12 -0
- package/src/input/Input.tsx +346 -0
- package/src/input/interfaces/InputChangeEvent.tsx +12 -0
- package/src/interfaces/Direction.ts +1 -0
- package/src/interfaces/ToggleBaseProps.ts +8 -0
- package/src/main.ts +57 -0
- package/src/maskedtextbox/MaskedTextBox.tsx +541 -0
- package/src/maskedtextbox/MaskedTextBoxProps.ts +215 -0
- package/src/maskedtextbox/masking.service.ts +230 -0
- package/src/maskedtextbox/parsing/combinators.ts +30 -0
- package/src/maskedtextbox/parsing/parsers.ts +179 -0
- package/src/maskedtextbox/parsing/result.ts +39 -0
- package/src/maskedtextbox/parsing/stream.ts +41 -0
- package/src/maskedtextbox/utils.ts +70 -0
- package/src/messages/index.ts +151 -0
- package/src/numerictextbox/NumericTextBox.tsx +626 -0
- package/src/numerictextbox/interfaces/NumericTextBoxBlurEvent.tsx +7 -0
- package/src/numerictextbox/interfaces/NumericTextBoxChangeEvent.tsx +12 -0
- package/src/numerictextbox/interfaces/NumericTextBoxFocusEvent.tsx +7 -0
- package/src/numerictextbox/interfaces/NumericTextBoxHandle.tsx +40 -0
- package/src/numerictextbox/interfaces/NumericTextBoxProps.tsx +180 -0
- package/src/numerictextbox/interfaces/NumericTextBoxState.tsx +15 -0
- package/src/numerictextbox/utils/index.tsx +744 -0
- package/src/package-metadata.ts +13 -0
- package/src/radiobutton/RadioButton.tsx +194 -0
- package/src/radiobutton/RadioGroup.tsx +190 -0
- package/src/radiobutton/interfaces/RadioButtonBlurEvent.ts +7 -0
- package/src/radiobutton/interfaces/RadioButtonChangeEvent.ts +12 -0
- package/src/radiobutton/interfaces/RadioButtonFocusEvent.ts +7 -0
- package/src/radiobutton/interfaces/RadioButtonProps.ts +102 -0
- package/src/radiobutton/interfaces/RadioGroupChangeEvent.ts +12 -0
- package/src/radiobutton/interfaces/RadioGroupFocusEvent.ts +7 -0
- package/src/radiobutton/interfaces/RadioGroupProps.ts +89 -0
- package/src/range-slider/RangeSlider.tsx +644 -0
- package/src/range-slider/range-raducer.tsx +153 -0
- package/src/rating/Rating.tsx +633 -0
- package/src/rating/RatingItem.tsx +268 -0
- package/src/rating/models/index.tsx +91 -0
- package/src/rating/rating-reducer.tsx +70 -0
- package/src/rating/utils/index.tsx +65 -0
- package/src/signature/Signature.tsx +488 -0
- package/src/signature/interfaces/SignatureBlurEvent.tsx +7 -0
- package/src/signature/interfaces/SignatureChangeEvent.tsx +12 -0
- package/src/signature/interfaces/SignatureCloseEvent.tsx +7 -0
- package/src/signature/interfaces/SignatureFocusEvent.tsx +7 -0
- package/src/signature/interfaces/SignatureHandle.tsx +35 -0
- package/src/signature/interfaces/SignatureOpenEvent.tsx +7 -0
- package/src/signature/interfaces/SignatureProps.tsx +227 -0
- package/src/signature/interfaces/index.ts +7 -0
- package/src/signature/utils/index.ts +11 -0
- package/src/slider/Slider.tsx +470 -0
- package/src/slider/SliderLabel.tsx +69 -0
- package/src/switch/Switch.tsx +559 -0
- package/src/textarea/TextArea.tsx +263 -0
- package/src/textarea/interfaces/TextAreaBlurEvent.ts +7 -0
- package/src/textarea/interfaces/TextAreaChangeEvent.ts +12 -0
- package/src/textarea/interfaces/TextAreaFocusEvent.ts +7 -0
- package/src/textarea/interfaces/TextAreaProps.tsx +131 -0
- package/src/utils.ts +16 -0
- package/test/Checkbox.tsx +252 -0
- package/test/ColorGradient.tsx +260 -0
- package/test/ColorPalette.tsx +440 -0
- package/test/ColorPicker.tsx +74 -0
- package/test/Input.tsx +255 -0
- package/test/NumericTextBox.tsx +984 -0
- package/test/RadioButton.tsx +176 -0
- package/test/RangeSlider.tsx +502 -0
- package/test/Rating.tsx +227 -0
- package/test/Slider.tsx +198 -0
- package/test/Switch.tsx +154 -0
- package/test/TextArea.tsx +216 -0
- package/test/maskedtextbox/component.tsx +424 -0
- package/test/maskedtextbox/masking.service.tsx +1345 -0
- package/test/maskedtextbox/parser.tsx +364 -0
- package/tsconfig.es.json +25 -0
- package/tsconfig.json +26 -0
- package/tsconfig.npm.json +25 -0
- package/LICENSE.md +0 -11
- package/NOTICE.txt +0 -111
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Enzyme } from '@progress//kendo-react-tasks/test-utils';
|
|
3
|
+
const { mount, shallow } = Enzyme;
|
|
4
|
+
|
|
5
|
+
import { RadioGroup, RadioButton } from '../src/main';
|
|
6
|
+
|
|
7
|
+
const RADIO = '.k-radio';
|
|
8
|
+
const RADIO_LABEL = '.k-radio-label';
|
|
9
|
+
const RADIO_LIST = '.k-radio-list';
|
|
10
|
+
const RADIO_ITEM = '.k-radio-item';
|
|
11
|
+
|
|
12
|
+
const items = [
|
|
13
|
+
{ label: 'Foo', value: 'foo' },
|
|
14
|
+
{ label: 'Baz', value: 'baz' },
|
|
15
|
+
{ label: 'Xyz', value: 'xyz' }
|
|
16
|
+
];
|
|
17
|
+
|
|
18
|
+
describe('Radio', () => {
|
|
19
|
+
let result: any;
|
|
20
|
+
beforeEach(() => {
|
|
21
|
+
result = null;
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
describe('button', () => {
|
|
25
|
+
it('should render an input', () => {
|
|
26
|
+
result = mount(<RadioButton />);
|
|
27
|
+
|
|
28
|
+
expect(result.find(RADIO).type()).toEqual('input');
|
|
29
|
+
});
|
|
30
|
+
it('should render a label if provided', () => {
|
|
31
|
+
result = mount(<RadioButton label="test" />);
|
|
32
|
+
|
|
33
|
+
expect(result.find(RADIO_LABEL).type()).toEqual('label');
|
|
34
|
+
expect(result.find(RADIO_LABEL).text()).toEqual('test');
|
|
35
|
+
});
|
|
36
|
+
it('should render id to the input element by default', () => {
|
|
37
|
+
result = mount(<RadioButton />);
|
|
38
|
+
|
|
39
|
+
expect(result.find(RADIO).props().id).toBeTruthy();
|
|
40
|
+
});
|
|
41
|
+
it('should render id to the input element', () => {
|
|
42
|
+
result = mount(<RadioButton id={'foo'} />);
|
|
43
|
+
|
|
44
|
+
expect(result.find(RADIO).props().id).toEqual('foo');
|
|
45
|
+
});
|
|
46
|
+
it('should set id as `for` prop of the label element by default', () => {
|
|
47
|
+
result = mount(<RadioButton label="test" />);
|
|
48
|
+
|
|
49
|
+
expect(result.find(RADIO_LABEL).props().htmlFor).toBeTruthy();
|
|
50
|
+
expect(result.find(RADIO_LABEL).props().htmlFor).toEqual(result.find(RADIO).props().id);
|
|
51
|
+
});
|
|
52
|
+
it('should set id as `for` prop of the label element', () => {
|
|
53
|
+
result = mount(<RadioButton label="test" id={'foo'} />);
|
|
54
|
+
|
|
55
|
+
expect(result.find(RADIO_LABEL).props().htmlFor).toEqual('foo');
|
|
56
|
+
expect(result.find(RADIO_LABEL).props().htmlFor).toEqual(result.find(RADIO).props().id);
|
|
57
|
+
});
|
|
58
|
+
it('should set custom styles to the input element if `style` prop is passed', () => {
|
|
59
|
+
result = mount(<RadioButton label="test" style={{ background: 'red' }} />);
|
|
60
|
+
|
|
61
|
+
expect(result.find(RADIO).props().style).toEqual({ background: 'red' });
|
|
62
|
+
});
|
|
63
|
+
it('should set custom class to the input element if `className` prop is passed', () => {
|
|
64
|
+
result = mount(<RadioButton label="test" className={'foo'} />);
|
|
65
|
+
|
|
66
|
+
expect(result.find(RADIO).props().className).toEqual('k-radio k-radio-md foo');
|
|
67
|
+
});
|
|
68
|
+
it('should be checked when `checked` prop is true', () => {
|
|
69
|
+
result = mount(<RadioButton checked={true} />);
|
|
70
|
+
|
|
71
|
+
expect(result.find(RADIO).props().checked).toBeTruthy();
|
|
72
|
+
});
|
|
73
|
+
it('should be unchecked when `checked` prop is false', () => {
|
|
74
|
+
result = mount(<RadioButton checked={false} />);
|
|
75
|
+
|
|
76
|
+
expect(result.find(RADIO).props().checked).toBeFalsy();
|
|
77
|
+
});
|
|
78
|
+
it('should be unchecked when no related property is provided', () => {
|
|
79
|
+
result = mount(<RadioButton />);
|
|
80
|
+
|
|
81
|
+
expect(result.find(RADIO).props().checked).toBeUndefined();
|
|
82
|
+
});
|
|
83
|
+
it('should be disabled when `disabled` prop is provided', () => {
|
|
84
|
+
result = mount(<RadioButton disabled={true} />);
|
|
85
|
+
|
|
86
|
+
expect(result.props().disabled).toEqual(true);
|
|
87
|
+
});
|
|
88
|
+
it('should set tabIndex to -1 of disabled component by default', () => {
|
|
89
|
+
result = shallow(<RadioButton disabled={true} />);
|
|
90
|
+
|
|
91
|
+
expect(result.find(RADIO).props().tabIndex).toEqual(-1);
|
|
92
|
+
});
|
|
93
|
+
it('should set tabIndex if passed as props', () => {
|
|
94
|
+
result = shallow(<RadioButton tabIndex={2} />);
|
|
95
|
+
|
|
96
|
+
expect(result.find(RADIO).props().tabIndex).toEqual(2);
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
describe('group', () => {
|
|
101
|
+
it('should render a list with 3 items', () => {
|
|
102
|
+
result = shallow(<RadioGroup data={items} />);
|
|
103
|
+
|
|
104
|
+
expect(result.find(RADIO_LIST).type()).toEqual('ul');
|
|
105
|
+
expect(result.find(RADIO_ITEM).length).toEqual(3);
|
|
106
|
+
});
|
|
107
|
+
it('should render 3 li items', () => {
|
|
108
|
+
result = mount(<RadioGroup data={items} />);
|
|
109
|
+
expect(result.find('li' + RADIO_ITEM).at(0).type()).toBeTruthy();
|
|
110
|
+
expect(result.find('li' + RADIO_ITEM).at(1).type()).toBeTruthy();
|
|
111
|
+
expect(result.find('li' + RADIO_ITEM).at(2).type()).toBeTruthy();
|
|
112
|
+
});
|
|
113
|
+
it('should render role attribute equals to radiogroup to the ul element', () => {
|
|
114
|
+
result = mount(<RadioGroup data={items} />);
|
|
115
|
+
|
|
116
|
+
expect(result.find(RADIO_LIST).props().role).toBeTruthy();
|
|
117
|
+
expect(result.find(RADIO_LIST).props().role).toEqual('radiogroup');
|
|
118
|
+
});
|
|
119
|
+
it('should render role attribute equals to none to the li elements', () => {
|
|
120
|
+
result = mount(<RadioGroup data={items} />);
|
|
121
|
+
expect(result.find('li' + RADIO_ITEM).at(0).props().role).toEqual('none');
|
|
122
|
+
expect(result.find('li' + RADIO_ITEM).at(1).props().role).toEqual('none');
|
|
123
|
+
expect(result.find('li' + RADIO_ITEM).at(2).props().role).toEqual('none');
|
|
124
|
+
});
|
|
125
|
+
it('should render the same name attribute to all input element', () => {
|
|
126
|
+
result = mount(<RadioGroup data={items} name={'foo'} />);
|
|
127
|
+
|
|
128
|
+
expect(result.find(RADIO).at(0).props().name).toEqual('foo');
|
|
129
|
+
expect(result.find(RADIO).at(1).props().name).toEqual('foo');
|
|
130
|
+
expect(result.find(RADIO).at(2).props().name).toEqual('foo');
|
|
131
|
+
});
|
|
132
|
+
it('should be checked if defaultValue prop is provided to the RadioGroup (uncontrolled mode)', () => {
|
|
133
|
+
result = mount(<RadioGroup data={items} defaultValue={items[1].value} />);
|
|
134
|
+
|
|
135
|
+
expect(result.find(RADIO).at(1).props().checked).toEqual(true);
|
|
136
|
+
});
|
|
137
|
+
it('should be checked if value prop is provided to the RadioGroup (controlled mode)', () => {
|
|
138
|
+
result = mount(<RadioGroup data={items} value={items[1].value} />);
|
|
139
|
+
|
|
140
|
+
expect(result.find(RADIO).at(1).props().checked).toEqual(true);
|
|
141
|
+
});
|
|
142
|
+
it('should set tabindex attribute to 0 if checked, otherwise -1', () => {
|
|
143
|
+
result = mount(<RadioGroup data={items} defaultValue={items[0].value} />);
|
|
144
|
+
|
|
145
|
+
expect(result.find(RADIO).at(0).props().tabIndex).toEqual(0);
|
|
146
|
+
expect(result.find(RADIO).at(1).props().tabIndex).toEqual(-1);
|
|
147
|
+
expect(result.find(RADIO).at(2).props().tabIndex).toEqual(-1);
|
|
148
|
+
});
|
|
149
|
+
it('should set index attribute to all radio button inputs', () => {
|
|
150
|
+
result = mount(<RadioGroup data={items} />);
|
|
151
|
+
|
|
152
|
+
expect(result.find(RADIO).at(0).prop('index')).toEqual(0);
|
|
153
|
+
expect(result.find(RADIO).at(1).prop('index')).toEqual(1);
|
|
154
|
+
expect(result.find(RADIO).at(2).prop('index')).toEqual(2);
|
|
155
|
+
});
|
|
156
|
+
it('should set value attribute to all radio button inputs', () => {
|
|
157
|
+
result = mount(<RadioGroup data={items} />);
|
|
158
|
+
|
|
159
|
+
expect(result.find(RADIO).at(0).props().value).toEqual('foo');
|
|
160
|
+
expect(result.find(RADIO).at(1).props().value).toEqual('baz');
|
|
161
|
+
expect(result.find(RADIO).at(2).props().value).toEqual('xyz');
|
|
162
|
+
});
|
|
163
|
+
it('all radios should be disabled when `disabled` prop is provided to the RadioGroup', () => {
|
|
164
|
+
result = mount(<RadioGroup data={items} disabled={true} />);
|
|
165
|
+
|
|
166
|
+
expect(result.find(RADIO).at(0).props().disabled).toEqual(true);
|
|
167
|
+
expect(result.find(RADIO).at(1).props().disabled).toEqual(true);
|
|
168
|
+
expect(result.find(RADIO).at(2).props().disabled).toEqual(true);
|
|
169
|
+
});
|
|
170
|
+
it('should set correct dir', () => {
|
|
171
|
+
result = shallow(<RadioGroup data={items} dir="rtl" />);
|
|
172
|
+
|
|
173
|
+
expect(result.find('.k-radio-list').prop('dir')).toEqual('rtl');
|
|
174
|
+
});
|
|
175
|
+
});
|
|
176
|
+
});
|
|
@@ -0,0 +1,502 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Enzyme } from '@progress/kendo-react-tasks/test-utils';
|
|
3
|
+
const { mount } = Enzyme;
|
|
4
|
+
|
|
5
|
+
import { rangeReducer, RANGE_ACTION } from '../src/range-slider/range-raducer';
|
|
6
|
+
import { RangeSlider } from '../src/range-slider/RangeSlider';
|
|
7
|
+
|
|
8
|
+
// describe, it, expect
|
|
9
|
+
|
|
10
|
+
describe('RangeSlider', () => {
|
|
11
|
+
describe('rangeReducer', () => {
|
|
12
|
+
// action START increase
|
|
13
|
+
it('start action - should increase start with payload if new start < end', () => {
|
|
14
|
+
const result = rangeReducer(
|
|
15
|
+
{ start: 1, end: 5 },
|
|
16
|
+
{ type: RANGE_ACTION.start, payload: 4, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
17
|
+
);
|
|
18
|
+
expect(result).toEqual({
|
|
19
|
+
start: 4,
|
|
20
|
+
end: 5
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it('start action - should increase start with payload if new start = end', () => {
|
|
25
|
+
const result = rangeReducer(
|
|
26
|
+
{ start: 1, end: 5 },
|
|
27
|
+
{ type: RANGE_ACTION.start, payload: 5, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
28
|
+
);
|
|
29
|
+
expect(result).toEqual({
|
|
30
|
+
start: 5,
|
|
31
|
+
end: 5
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
it('start action - should set start = end if new start > end', () => {
|
|
36
|
+
const result = rangeReducer(
|
|
37
|
+
{ start: 1, end: 5 },
|
|
38
|
+
{ type: RANGE_ACTION.start, payload: 6, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
39
|
+
);
|
|
40
|
+
expect(result).toEqual({
|
|
41
|
+
start: 5,
|
|
42
|
+
end: 5
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
it('start action - should **not** increase start with payload if old start = end', () => {
|
|
47
|
+
const result = rangeReducer(
|
|
48
|
+
{ start: 5, end: 5 },
|
|
49
|
+
{ type: RANGE_ACTION.start, payload: 6, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
50
|
+
);
|
|
51
|
+
expect(result).toEqual({
|
|
52
|
+
start: 5,
|
|
53
|
+
end: 5
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
// action START decrease
|
|
58
|
+
it('start action - should decrease start with payload if new start < end', () => {
|
|
59
|
+
const result = rangeReducer(
|
|
60
|
+
{ start: 5, end: 5 },
|
|
61
|
+
{ type: RANGE_ACTION.start, payload: 1, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
62
|
+
);
|
|
63
|
+
expect(result).toEqual({
|
|
64
|
+
start: 1,
|
|
65
|
+
end: 5
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
it('start action - should decrease start with payload if new start = min', () => {
|
|
70
|
+
const result = rangeReducer(
|
|
71
|
+
{ start: 3, end: 5 },
|
|
72
|
+
{ type: RANGE_ACTION.start, payload: 0, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
73
|
+
);
|
|
74
|
+
expect(result).toEqual({
|
|
75
|
+
start: 0,
|
|
76
|
+
end: 5
|
|
77
|
+
});
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
it('start action - should decrease start with payload if new start > min', () => {
|
|
81
|
+
const result = rangeReducer(
|
|
82
|
+
{ start: 3, end: 5 },
|
|
83
|
+
{ type: RANGE_ACTION.start, payload: 2, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
84
|
+
);
|
|
85
|
+
expect(result).toEqual({
|
|
86
|
+
start: 2,
|
|
87
|
+
end: 5
|
|
88
|
+
});
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
it('start action - should set start = min if start < min', () => {
|
|
92
|
+
const result = rangeReducer(
|
|
93
|
+
{ start: 3, end: 5 },
|
|
94
|
+
{ type: RANGE_ACTION.start, payload: -1, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
95
|
+
);
|
|
96
|
+
expect(result).toEqual({
|
|
97
|
+
start: 0,
|
|
98
|
+
end: 5
|
|
99
|
+
});
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
// action END increase
|
|
103
|
+
it('end action - should increase end with payload if new end > start', () => {
|
|
104
|
+
const result = rangeReducer(
|
|
105
|
+
{ start: 5, end: 6 },
|
|
106
|
+
{ type: RANGE_ACTION.end, payload: 10, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
107
|
+
);
|
|
108
|
+
expect(result).toEqual({
|
|
109
|
+
start: 5,
|
|
110
|
+
end: 10
|
|
111
|
+
});
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
it('end action - should increase end with payload if old end = start', () => {
|
|
115
|
+
const result = rangeReducer(
|
|
116
|
+
{ start: 5, end: 5 },
|
|
117
|
+
{ type: RANGE_ACTION.end, payload: 10, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
118
|
+
);
|
|
119
|
+
expect(result).toEqual({
|
|
120
|
+
start: 5,
|
|
121
|
+
end: 10
|
|
122
|
+
});
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
it('end action - should increase end with payload if new end < max', () => {
|
|
126
|
+
const result = rangeReducer(
|
|
127
|
+
{ start: 1, end: 5 },
|
|
128
|
+
{ type: RANGE_ACTION.end, payload: 50, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
129
|
+
);
|
|
130
|
+
expect(result).toEqual({
|
|
131
|
+
start: 1,
|
|
132
|
+
end: 50
|
|
133
|
+
});
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
it('end action - should increase end with payload if new end = max', () => {
|
|
137
|
+
const result = rangeReducer(
|
|
138
|
+
{ start: 1, end: 5 },
|
|
139
|
+
{ type: RANGE_ACTION.end, payload: 100, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
140
|
+
);
|
|
141
|
+
expect(result).toEqual({
|
|
142
|
+
start: 1,
|
|
143
|
+
end: 100
|
|
144
|
+
});
|
|
145
|
+
});
|
|
146
|
+
|
|
147
|
+
it('end action - should set end = max if new end > max', () => {
|
|
148
|
+
const result = rangeReducer(
|
|
149
|
+
{ start: 1, end: 5 },
|
|
150
|
+
{ type: RANGE_ACTION.end, payload: 101, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
151
|
+
);
|
|
152
|
+
expect(result).toEqual({
|
|
153
|
+
start: 1,
|
|
154
|
+
end: 100
|
|
155
|
+
});
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
// action END decrease
|
|
159
|
+
it('end action - should decrease end with payload if new end < max', () => {
|
|
160
|
+
const result = rangeReducer(
|
|
161
|
+
{ start: 3, end: 50 },
|
|
162
|
+
{ type: RANGE_ACTION.end, payload: 40, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
163
|
+
);
|
|
164
|
+
expect(result).toEqual({
|
|
165
|
+
start: 3,
|
|
166
|
+
end: 40
|
|
167
|
+
});
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
it('end action - should decrease end with payload if new end > start', () => {
|
|
171
|
+
const result = rangeReducer(
|
|
172
|
+
{ start: 3, end: 3 },
|
|
173
|
+
{ type: RANGE_ACTION.end, payload: 40, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
174
|
+
);
|
|
175
|
+
expect(result).toEqual({
|
|
176
|
+
start: 3,
|
|
177
|
+
end: 40
|
|
178
|
+
});
|
|
179
|
+
});
|
|
180
|
+
|
|
181
|
+
it('end action - should decrease end with payload if new end = start', () => {
|
|
182
|
+
const result = rangeReducer(
|
|
183
|
+
{ start: 5, end: 50 },
|
|
184
|
+
{ type: RANGE_ACTION.end, payload: 5, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
185
|
+
);
|
|
186
|
+
expect(result).toEqual({
|
|
187
|
+
start: 5,
|
|
188
|
+
end: 5
|
|
189
|
+
});
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
it('end action - should set end = start if new end < start', () => {
|
|
193
|
+
const result = rangeReducer(
|
|
194
|
+
{ start: 10, end: 50 },
|
|
195
|
+
{ type: RANGE_ACTION.end, payload: 5, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
196
|
+
);
|
|
197
|
+
expect(result).toEqual({
|
|
198
|
+
start: 10,
|
|
199
|
+
end: 10
|
|
200
|
+
});
|
|
201
|
+
});
|
|
202
|
+
|
|
203
|
+
// action INCREASE key start
|
|
204
|
+
it('increase action - with key start should increase start if new start = end', () => {
|
|
205
|
+
const result = rangeReducer(
|
|
206
|
+
{ start: 0, end: 70 },
|
|
207
|
+
{ type: RANGE_ACTION.increase, step: 70, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
208
|
+
);
|
|
209
|
+
expect(result).toEqual({
|
|
210
|
+
start: 70,
|
|
211
|
+
end: 70
|
|
212
|
+
});
|
|
213
|
+
});
|
|
214
|
+
|
|
215
|
+
it('increase action - with key start should increase start if new start < end', () => {
|
|
216
|
+
const result = rangeReducer(
|
|
217
|
+
{ start: 0, end: 70 },
|
|
218
|
+
{ type: RANGE_ACTION.increase, step: 40, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
219
|
+
);
|
|
220
|
+
expect(result).toEqual({
|
|
221
|
+
start: 40,
|
|
222
|
+
end: 70
|
|
223
|
+
});
|
|
224
|
+
});
|
|
225
|
+
|
|
226
|
+
it('increase action - with key start should **not** increase start if new start > end', () => {
|
|
227
|
+
const result = rangeReducer(
|
|
228
|
+
{ start: 0, end: 10 },
|
|
229
|
+
{ type: RANGE_ACTION.increase, step: 40, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
230
|
+
);
|
|
231
|
+
expect(result).toEqual({
|
|
232
|
+
start: 10,
|
|
233
|
+
end: 10
|
|
234
|
+
});
|
|
235
|
+
});
|
|
236
|
+
|
|
237
|
+
// action INCREASE key end
|
|
238
|
+
it('increase action - with key end should increase end if new end = max', () => {
|
|
239
|
+
const result = rangeReducer(
|
|
240
|
+
{ start: 10, end: 70 },
|
|
241
|
+
{ type: RANGE_ACTION.increase, step: 30, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
242
|
+
);
|
|
243
|
+
expect(result).toEqual({
|
|
244
|
+
start: 10,
|
|
245
|
+
end: 100
|
|
246
|
+
});
|
|
247
|
+
});
|
|
248
|
+
|
|
249
|
+
it('increase action - with key end should increase end if new end < max', () => {
|
|
250
|
+
const result = rangeReducer(
|
|
251
|
+
{ start: 10, end: 70 },
|
|
252
|
+
{ type: RANGE_ACTION.increase, step: 10, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
253
|
+
);
|
|
254
|
+
expect(result).toEqual({
|
|
255
|
+
start: 10,
|
|
256
|
+
end: 80
|
|
257
|
+
});
|
|
258
|
+
});
|
|
259
|
+
|
|
260
|
+
it('increase action - with key should set end = max if new end > max', () => {
|
|
261
|
+
const result = rangeReducer(
|
|
262
|
+
{ start: 10, end: 90 },
|
|
263
|
+
{ type: RANGE_ACTION.increase, step: 30, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
264
|
+
);
|
|
265
|
+
expect(result).toEqual({
|
|
266
|
+
start: 10,
|
|
267
|
+
end: 100
|
|
268
|
+
});
|
|
269
|
+
});
|
|
270
|
+
|
|
271
|
+
// action DECREASE key start
|
|
272
|
+
it('decrease action - with key start should decrease start if new start > min', () => {
|
|
273
|
+
const result = rangeReducer(
|
|
274
|
+
{ start: 10, end: 50 },
|
|
275
|
+
{ type: RANGE_ACTION.decrease, step: 5, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
276
|
+
);
|
|
277
|
+
expect(result).toEqual({
|
|
278
|
+
start: 5,
|
|
279
|
+
end: 50
|
|
280
|
+
});
|
|
281
|
+
});
|
|
282
|
+
|
|
283
|
+
it('decrease action - with key start should decrease start if new start = min', () => {
|
|
284
|
+
const result = rangeReducer(
|
|
285
|
+
{ start: 10, end: 50 },
|
|
286
|
+
{ type: RANGE_ACTION.decrease, step: 10, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
287
|
+
);
|
|
288
|
+
expect(result).toEqual({
|
|
289
|
+
start: 0,
|
|
290
|
+
end: 50
|
|
291
|
+
});
|
|
292
|
+
});
|
|
293
|
+
|
|
294
|
+
it('decrease action - with key should set start = min if new start < min', () => {
|
|
295
|
+
const result = rangeReducer(
|
|
296
|
+
{ start: 1, end: 50 },
|
|
297
|
+
{ type: RANGE_ACTION.decrease, step: 5, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
298
|
+
);
|
|
299
|
+
expect(result).toEqual({
|
|
300
|
+
start: 0,
|
|
301
|
+
end: 50
|
|
302
|
+
});
|
|
303
|
+
});
|
|
304
|
+
|
|
305
|
+
// action DECREASE key end
|
|
306
|
+
it('decrease action - with key end should decrease end if new end = start', () => {
|
|
307
|
+
const result = rangeReducer(
|
|
308
|
+
{ start: 10, end: 50 },
|
|
309
|
+
{ type: RANGE_ACTION.decrease, step: 40, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
310
|
+
);
|
|
311
|
+
expect(result).toEqual({
|
|
312
|
+
start: 10,
|
|
313
|
+
end: 10
|
|
314
|
+
});
|
|
315
|
+
});
|
|
316
|
+
|
|
317
|
+
it('decrease action - with key end should decrease end if new end > start', () => {
|
|
318
|
+
const result = rangeReducer(
|
|
319
|
+
{ start: 10, end: 50 },
|
|
320
|
+
{ type: RANGE_ACTION.decrease, step: 20, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
321
|
+
);
|
|
322
|
+
expect(result).toEqual({
|
|
323
|
+
start: 10,
|
|
324
|
+
end: 30
|
|
325
|
+
});
|
|
326
|
+
});
|
|
327
|
+
|
|
328
|
+
it('decrease action - with key should set end = start if new end < start', () => {
|
|
329
|
+
const result = rangeReducer(
|
|
330
|
+
{ start: 30, end: 35 },
|
|
331
|
+
{ type: RANGE_ACTION.decrease, step: 10, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
332
|
+
);
|
|
333
|
+
expect(result).toEqual({
|
|
334
|
+
start: 30,
|
|
335
|
+
end: 30
|
|
336
|
+
});
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
it('min action on start - should set the start = min', () => {
|
|
340
|
+
const result = rangeReducer(
|
|
341
|
+
{ start: 30, end: 50 },
|
|
342
|
+
{ type: RANGE_ACTION.min, step: 10, key: 'start', min: 1, max: 100 }
|
|
343
|
+
);
|
|
344
|
+
|
|
345
|
+
expect(result).toEqual({
|
|
346
|
+
start: 1,
|
|
347
|
+
end: 50
|
|
348
|
+
});
|
|
349
|
+
});
|
|
350
|
+
|
|
351
|
+
it('max action on start - should set the start = end', () => {
|
|
352
|
+
const result = rangeReducer(
|
|
353
|
+
{ start: 30, end: 50 },
|
|
354
|
+
{ type: RANGE_ACTION.max, step: 10, key: 'start', min: 1, max: 100 }
|
|
355
|
+
);
|
|
356
|
+
|
|
357
|
+
expect(result).toEqual({
|
|
358
|
+
start: 50,
|
|
359
|
+
end: 50
|
|
360
|
+
});
|
|
361
|
+
});
|
|
362
|
+
|
|
363
|
+
it('min action on end - should set the end = start', () => {
|
|
364
|
+
const result = rangeReducer(
|
|
365
|
+
{ start: 30, end: 50 },
|
|
366
|
+
{ type: RANGE_ACTION.min, step: 10, key: 'end', min: 1, max: 100 }
|
|
367
|
+
);
|
|
368
|
+
|
|
369
|
+
expect(result).toEqual({
|
|
370
|
+
start: 30,
|
|
371
|
+
end: 30
|
|
372
|
+
});
|
|
373
|
+
});
|
|
374
|
+
it('max action on end - should set the end = max', () => {
|
|
375
|
+
const result = rangeReducer(
|
|
376
|
+
{ start: 30, end: 50 },
|
|
377
|
+
{ type: RANGE_ACTION.max, step: 10, key: 'end', min: 1, max: 100 }
|
|
378
|
+
);
|
|
379
|
+
|
|
380
|
+
expect(result).toEqual({
|
|
381
|
+
start: 30,
|
|
382
|
+
end: 100
|
|
383
|
+
});
|
|
384
|
+
});
|
|
385
|
+
|
|
386
|
+
// action changeToClosest key start
|
|
387
|
+
// it('changeToClosest should change start if payload is closer to start', () => {
|
|
388
|
+
// const result = rangeReducer(
|
|
389
|
+
// { start: 30, end: 70 },
|
|
390
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 40, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
391
|
+
// );
|
|
392
|
+
// expect(result).toEqual({
|
|
393
|
+
// start: 40,
|
|
394
|
+
// end: 70
|
|
395
|
+
// });
|
|
396
|
+
// });
|
|
397
|
+
|
|
398
|
+
// it('changeToClosest should change start if payload < start', () => {
|
|
399
|
+
// const result = rangeReducer(
|
|
400
|
+
// { start: 30, end: 70 },
|
|
401
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 20, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
402
|
+
// );
|
|
403
|
+
// expect(result).toEqual({
|
|
404
|
+
// start: 20,
|
|
405
|
+
// end: 70
|
|
406
|
+
// });
|
|
407
|
+
// });
|
|
408
|
+
|
|
409
|
+
// it('changeToClosest should change start if payload = min', () => {
|
|
410
|
+
// const result = rangeReducer(
|
|
411
|
+
// { start: 30, end: 70 },
|
|
412
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 0, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
413
|
+
// );
|
|
414
|
+
// expect(result).toEqual({
|
|
415
|
+
// start: 0,
|
|
416
|
+
// end: 70
|
|
417
|
+
// });
|
|
418
|
+
// });
|
|
419
|
+
|
|
420
|
+
// it('changeToClosest should **not** change start if payload < min', () => {
|
|
421
|
+
// const result = rangeReducer(
|
|
422
|
+
// { start: 30, end: 70 },
|
|
423
|
+
// { type: RANGE_ACTION.changeToClosest, payload: -10, step: 1, key: RANGE_ACTION.start, min: 0, max: 100 }
|
|
424
|
+
// );
|
|
425
|
+
// expect(result).toEqual({
|
|
426
|
+
// start: 30,
|
|
427
|
+
// end: 70
|
|
428
|
+
// });
|
|
429
|
+
// });
|
|
430
|
+
|
|
431
|
+
// // action changeToClosest key end
|
|
432
|
+
// it('changeToClosest should change end if payload is closer to end', () => {
|
|
433
|
+
// const result = rangeReducer(
|
|
434
|
+
// { start: 30, end: 70 },
|
|
435
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 60, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
436
|
+
// );
|
|
437
|
+
// expect(result).toEqual({
|
|
438
|
+
// start: 30,
|
|
439
|
+
// end: 60
|
|
440
|
+
// });
|
|
441
|
+
// });
|
|
442
|
+
|
|
443
|
+
// it('changeToClosest should change end if payload > end', () => {
|
|
444
|
+
// const result = rangeReducer(
|
|
445
|
+
// { start: 30, end: 70 },
|
|
446
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 90, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
447
|
+
// );
|
|
448
|
+
// expect(result).toEqual({
|
|
449
|
+
// start: 30,
|
|
450
|
+
// end: 90
|
|
451
|
+
// });
|
|
452
|
+
// });
|
|
453
|
+
|
|
454
|
+
// it('changeToClosest should change end if payload = max', () => {
|
|
455
|
+
// const result = rangeReducer(
|
|
456
|
+
// { start: 30, end: 70 },
|
|
457
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 100, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
458
|
+
// );
|
|
459
|
+
// expect(result).toEqual({
|
|
460
|
+
// start: 30,
|
|
461
|
+
// end: 100
|
|
462
|
+
// });
|
|
463
|
+
// });
|
|
464
|
+
|
|
465
|
+
// it('changeToClosest should **not** change end if payload > max', () => {
|
|
466
|
+
// const result = rangeReducer(
|
|
467
|
+
// { start: 30, end: 70 },
|
|
468
|
+
// { type: RANGE_ACTION.changeToClosest, payload: 120, step: 1, key: RANGE_ACTION.end, min: 0, max: 100 }
|
|
469
|
+
// );
|
|
470
|
+
// expect(result).toEqual({
|
|
471
|
+
// start: 30,
|
|
472
|
+
// end: 70
|
|
473
|
+
// });
|
|
474
|
+
// });
|
|
475
|
+
|
|
476
|
+
// tslint:disable
|
|
477
|
+
// Check if the max and min are the correct values
|
|
478
|
+
it('the value of the min should **not** be min >= max', () => {
|
|
479
|
+
const errorSpy = jasmine.createSpy('errorSpy');
|
|
480
|
+
console.error = errorSpy;
|
|
481
|
+
|
|
482
|
+
mount(<RangeSlider min={100} max={20} />);
|
|
483
|
+
expect(errorSpy).toHaveBeenCalled();
|
|
484
|
+
});
|
|
485
|
+
|
|
486
|
+
it('the value of the min should **not** be undefined', () => {
|
|
487
|
+
const errorSpy = jasmine.createSpy('errorSpy');
|
|
488
|
+
console.error = errorSpy;
|
|
489
|
+
|
|
490
|
+
mount(<RangeSlider min={undefined} max={20} />);
|
|
491
|
+
expect(errorSpy).toHaveBeenCalled();
|
|
492
|
+
});
|
|
493
|
+
|
|
494
|
+
it('the value of the max should **not** be undefined', () => {
|
|
495
|
+
const errorSpy = jasmine.createSpy('errorSpy');
|
|
496
|
+
console.error = errorSpy;
|
|
497
|
+
|
|
498
|
+
mount(<RangeSlider min={0} max={undefined} />);
|
|
499
|
+
expect(errorSpy).toHaveBeenCalled();
|
|
500
|
+
});
|
|
501
|
+
});
|
|
502
|
+
});
|