@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,54 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
/**
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
export const PALETTEPRESETS = {
|
|
6
|
+
basic: {
|
|
7
|
+
colors: ['#000000', '#7f7f7f', '#880015', '#ed1c24', '#ff7f27', '#fff200', '#22b14c', '#00a2e8', '#3f48cc', '#a349a4', ' ffffff', '#c3c3c3', '#b97a57', '#ffaec9', '#ffc90e', '#efe4b0', '#b5e61d', '#99d9ea', '#7092be', '#c8bfe7'],
|
|
8
|
+
columns: 10
|
|
9
|
+
},
|
|
10
|
+
office: {
|
|
11
|
+
colors: ['#ffffff', '#000000', '#e6e6e6', '#435569', '#4371c4', '#ed7e32', '#a5a4a5', '#febf04', '#5a9bd5', '#71ae48', '#f2f2f3', '#7f7f7f', '#d1cece', '#d5dde3', '#dae1f4', '#fce5d4', '#deeded', '#fff2cc', '#deeaf6', '#e1efd9', '#d7d8d8', '#585959', '#aeabab', '#adbaca', '#b4c5e7', '#f6caac', '#dbdbdb', '#ffe498', '#bcd6ee', '#c5e0b2', '#bfbfc0', '#3f3f3f', '#767070', '#8595b1', '#8fabdb', '#f5b183', '#c9c8c9', '#fed965', '#9bc4e5', '#a8d08d', '#a5a5a6', '#262625', '#393939', '#334050', '#2e5496', '#c45a11', '#7b7b7a', '#bf9000', '#2f75b5', '#548235', '#7f7f7f', '#0b0c0c', '#161616', '#222a34', '#203764', '#843d0b', '#525252', '#7f6000', '#1d4d79', '#375623'],
|
|
12
|
+
columns: 10
|
|
13
|
+
},
|
|
14
|
+
apex: {
|
|
15
|
+
colors: ['#ffffff', '#000000', '#c9c2d1', '#69676d', '#ceb966', '#9cb084', '#6bb1c9', '#6585cf', '#7e6bc9', '#a379bb', '#f2f2f2', '#7f7f7f', '#f4f2f5', '#e0e0e2', '#f5f1e0', '#ebefe6', '#e1eff4', '#e0e6f5', '#e5e1f4', '#ece4f1', '#d8d8d8', '#595959', '#e9e6ec', '#c2c1c5', '#ebe3c1', '#d7dfcd', '#c3dfe9', '#c1ceeb', '#cbc3e9', '#dac9e3', '#bfbfbf', '#3f3f3f', '#dedae3', '#a4a3a8', '#e1d5a3', '#c3cfb5', '#a6d0de', '#a2b5e2', '#b1a6de', '#c7aed6', '#a5a5a5', '#262626', '#9688a5', '#4e4d51', '#ae9638', '#758c5a', '#3d8da9', '#365bb0', '#533da9', '#7d4d99', '#7f7f7f', '#0c0c0c', '#635672', '#343336', '#746425', '#4e5d3c', '#295e70', '#243c75', '#372970', '#533366'],
|
|
16
|
+
columns: 10
|
|
17
|
+
},
|
|
18
|
+
austin: {
|
|
19
|
+
colors: ['#ffffff', '#000000', '#caf278', '#3e3d2d', '#94c600', '#71685a', '#ff6700', '#909465', '#956b43', '#fea022', '#f2f2f2', '#7f7f7f', '#f4fce4', '#dddcd0', '#efffc0', '#e3e1dc', '#ffe0cb', '#e8e9df', '#ece1d6', '#feecd2', '#d8d8d8', '#595959', '#e9f9c9', '#bbb9a1', '#dfff82', '#c8c3ba', '#ffc299', '#d2d4c0', '#dac3ad', '#fed9a6', '#bfbfbf', '#3f3f3f', '#dff7ae', '#ada598', '#cfff43', '#ada598', '#ffa365', '#bcbfa1', '#c8a585', '#fec67a', '#a5a5a5', '#262626', '#a9ea25', '#2e2d21', '#6f9400', '#544e43', '#bf4d00', '#6c6f4b', '#6f5032', '#d77b00', '#7f7f7f', '#0c0c0c', '#74a50f', '#1f1e16', '#4a6300', '#38342d', '#7f3300', '#484a32', '#4a3521', '#8f5200'],
|
|
20
|
+
columns: 10
|
|
21
|
+
},
|
|
22
|
+
clarity: {
|
|
23
|
+
colors: ['#ffffff', '#292934', '#f3f2dc', '#d2533c', '#93a299', '#ad8f67', '#726056', '#4c5a6a', '#808da0', '#79463d', '#f2f2f2', '#e7e7ec', '#e7e5b9', '#f6dcd8', '#e9ecea', '#eee8e0', '#e4dedb', '#d8dde3', '#e5e8ec', '#e9d6d3', '#d8d8d8', '#c4c4d1', '#d5d185', '#edbab1', '#d3d9d6', '#ded2c2', '#c9beb8', '#b2bcc8', '#ccd1d9', '#d3aea7', '#bfbfbf', '#8a8aa3', '#aca73b', '#e4978a', '#bec7c1', '#cdbba3', '#af9e94', '#8c9bac', '#b2bac6', '#bd857c', '#a5a5a5', '#56566e', '#56531d', '#a43925', '#6b7c72', '#866b48', '#554840', '#39434f', '#5c697b', '#5a342d', '#7f7f7f', '#3b3b4b', '#22210b', '#6d2619', '#47534c', '#594730', '#39302b', '#262d35', '#3d4652', '#3c231e'],
|
|
24
|
+
columns: 10
|
|
25
|
+
},
|
|
26
|
+
slipstream: {
|
|
27
|
+
colors: ['#ffffff', '#000000', '#b4dcfa', '#212745', '#4e67c8', '#5eccf3', '#a7ea52', '#5dceaf', '#ff8021', '#f14124', '#f2f2f2', '#7f7f7f', '#8bc9f7', '#c7cce4', '#dbe0f4', '#def4fc', '#edfadc', '#def5ef', '#ffe5d2', '#fcd9d3', '#d8d8d8', '#595959', '#4facf3', '#909aca', '#b8c2e9', '#beeafa', '#dbf6b9', '#beebdf', '#ffcca6', '#f9b3a7', '#bfbfbf', '#3f3f3f', '#0d78c9', '#5967af', '#94a3de', '#9ee0f7', '#caf297', '#9de1cf', '#ffb279', '#f68d7b', '#a5a5a5', '#262626', '#063c64', '#181d33', '#31479f', '#11b2eb', '#81d319', '#34ac8b', '#d85c00', '#c3260c', '#7f7f7f', '#0c0c0c', '#021828', '#101322', '#202f6a', '#0b769c', '#568c11', '#22725c', '#903d00', '#821908'],
|
|
28
|
+
columns: 10
|
|
29
|
+
},
|
|
30
|
+
metro: {
|
|
31
|
+
colors: ['#ffffff', '#000000', '#d6ecff', '#4e5b6f', '#7fd13b', '#ea157a', '#feb80a', '#00addc', '#738ac8', '#1ab39f', '#f2f2f2', '#7f7f7f', '#a7d6ff', '#d9dde4', '#e5f5d7', '#fad0e4', '#fef0cd', '#c5f2ff', '#e2e7f4', '#c9f7f1', '#d8d8d8', '#595959', '#60b5ff', '#b3bcca', '#cbecb0', '#f6a1c9', '#fee29c', '#8be6ff', '#c7d0e9', '#94efe3', '#bfbfbf', '#3f3f3f', '#007dea', '#8d9baf', '#b2e389', '#f272af', '#fed46b', '#51d9ff', '#aab8de', '#5fe7d5', '#a5a5a5', '#262626', '#003e75', '#3a4453', '#5ea226', '#af0f5b', '#c58c00', '#0081a5', '#425ea9', '#138677', '#7f7f7f', '#0c0c0c', '#00192e', '#272d37', '#3f6c19', '#750a3d', '#835d00', '#00566e', '#2c3f71', '#0c594f'],
|
|
32
|
+
columns: 10
|
|
33
|
+
},
|
|
34
|
+
flow: {
|
|
35
|
+
colors: ['#ffffff', '#000000', '#dbf5f9', '#04617b', '#0f6fc6', '#009dd9', '#0bd0d9', '#10cf9b', '#7cca62', '#a5c249', '#f2f2f2', '#7f7f7f', '#b2e9f2', '#b4ecfc', '#c7e2fa', '#c4eeff', '#c9fafc', '#c9faed', '#e4f4df', '#edf2da', '#d8d8d8', '#595959', '#76d9e8', '#6adafa', '#90c6f6', '#89deff', '#93f5f9', '#94f6db', '#cae9c0', '#dbe6b6', '#bfbfbf', '#3f3f3f', '#21b2c8', '#20c8f7', '#59a9f2', '#4fceff', '#5df0f6', '#5ff2ca', '#b0dfa0', '#c9da91', '#a5a5a5', '#262626', '#105964', '#02485c', '#0b5394', '#0075a2', '#089ca2', '#0b9b74', '#54a838', '#7e9532', '#7f7f7f', '#0c0c0c', '#062328', '#01303d', '#073763', '#004e6c', '#05686c', '#07674d', '#387025', '#546321'],
|
|
36
|
+
columns: 10
|
|
37
|
+
},
|
|
38
|
+
hardcover: {
|
|
39
|
+
colors: ['#ffffff', '#000000', '#ece9c6', '#895d1d', '#873624', '#d6862d', '#d0be40', '#877f6c', '#972109', '#aeb795', '#f2f2f2', '#7f7f7f', '#e1dca5', '#f2e0c6', '#f0d0c9', '#f6e6d5', '#f5f2d8', '#e7e5e1', '#fbc7bc', '#eef0e9', '#d8d8d8', '#595959', '#d0c974', '#e6c28d', '#e2a293', '#eeceaa', '#ece5b2', '#cfccc3', '#f78f7a', '#dee2d4', '#bfbfbf', '#3f3f3f', '#a29a36', '#daa454', '#d4735e', '#e6b681', '#e2d88c', '#b7b2a5', '#f35838', '#ced3bf', '#a5a5a5', '#262626', '#514d1b', '#664515', '#65281a', '#a2641f', '#a39428', '#655f50', '#711806', '#879464', '#7f7f7f', '#0c0c0c', '#201e0a', '#442e0e', '#431b11', '#6c4315', '#6d621a', '#433f35', '#4b1004', '#5a6243'],
|
|
40
|
+
columns: 10
|
|
41
|
+
},
|
|
42
|
+
trek: {
|
|
43
|
+
colors: ['#ffffff', '#000000', '#fbeec9', '#4e3b30', '#f0a22e', '#a5644e', '#b58b80', '#c3986d', '#a19574', '#c17529', '#f2f2f2', '#7f7f7f', '#f7e09e', '#e1d6cf', '#fcecd5', '#eddfda', '#f0e7e5', '#f3eae1', '#ece9e3', '#f5e3d1', '#d8d8d8', '#595959', '#f3cc5f', '#c4ad9f', '#f9d9ab', '#dcc0b6', '#e1d0cc', '#e7d5c4', '#d9d4c7', '#ebc7a3', '#bfbfbf', '#3f3f3f', '#d29f0f', '#a78470', '#f6c781', '#cba092', '#d2b9b2', '#dbc1a7', '#c6bfab', '#e1ac76', '#a5a5a5', '#262626', '#694f07', '#3a2c24', '#c87d0e', '#7b4b3a', '#926255', '#a17242', '#7b7153', '#90571e', '#7f7f7f', '#0c0c0c', '#2a1f03', '#271d18', '#855309', '#523226', '#614138', '#6b4c2c', '#524b37', '#603a14'],
|
|
44
|
+
columns: 10
|
|
45
|
+
},
|
|
46
|
+
verve: {
|
|
47
|
+
colors: ['#ffffff', '#000000', '#d2d2d2', '#666666', '#ff388c', '#e40059', '#9c007f', '#68007f', '#005bd3', '#00349e', '#f2f2f2', '#7f7f7f', '#bdbdbd', '#e0e0e0', '#ffd7e8', '#ffc6dc', '#ffb8f1', '#f1b2ff', '#c3dcff', '#b8cfff', '#d8d8d8', '#595959', '#9d9d9d', '#c1c1c1', '#ffafd1', '#ff8eba', '#ff71e4', '#e365ff', '#87baff', '#72a0ff', '#bfbfbf', '#3f3f3f', '#696969', '#a3a3a3', '#ff87ba', '#ff5597', '#ff2ad7', '#d519ff', '#4b98ff', '#2b71ff', '#a5a5a5', '#262626', '#343434', '#4c4c4c', '#e90062', '#ab0042', '#75005f', '#4e005f', '#00449e', '#002676', '#7f7f7f', '#0c0c0c', '#151515', '#333333', '#9b0041', '#72002c', '#4e003f', '#34003f', '#002d69', '#00194f'],
|
|
48
|
+
columns: 10
|
|
49
|
+
},
|
|
50
|
+
monochrome: {
|
|
51
|
+
colors: ['#000000', '#1a1a1a', '#333333', '#4d4d4d', '#666666', '#808080', '#999999', '#b3b3b3', '#cccccc', '#e6e6e6', '#f2f2f2', '#ffffff'],
|
|
52
|
+
columns: 12
|
|
53
|
+
}
|
|
54
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { HSVA } from '../models/hsva';
|
|
2
|
+
import { RGBA } from '../models/rgba';
|
|
3
|
+
|
|
4
|
+
const cache: any = {};
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
export function cacheHsva(componentGuid: string, value: string, hsva: HSVA) {
|
|
10
|
+
cache[componentGuid] = { value, hsva };
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export function cacheRgba(componentGuid: string, value: string, rgba: RGBA) {
|
|
17
|
+
cache[componentGuid] = { value, rgba };
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export function cacheHex(componentGuid: string, value: string, hex: string) {
|
|
24
|
+
cache[componentGuid] = { value, hex };
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @hidden
|
|
29
|
+
*/
|
|
30
|
+
export function removeCachedColor(componentGuid: string) {
|
|
31
|
+
delete cache[componentGuid];
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
37
|
+
export function getCachedHex(componentGuid: string | undefined, value: string) {
|
|
38
|
+
if (componentGuid) {
|
|
39
|
+
const cachedColor = cache[componentGuid];
|
|
40
|
+
|
|
41
|
+
return cachedColor && cachedColor.value === value ? cachedColor.hex : undefined;
|
|
42
|
+
} else {
|
|
43
|
+
return undefined;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @hidden
|
|
49
|
+
*/
|
|
50
|
+
export function getCachedHsva(componentGuid: string | undefined, value: string) {
|
|
51
|
+
if (componentGuid) {
|
|
52
|
+
const cachedColor = cache[componentGuid];
|
|
53
|
+
|
|
54
|
+
return cachedColor && cachedColor.value === value ? cachedColor.hsva : undefined;
|
|
55
|
+
} else {
|
|
56
|
+
return undefined;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @hidden
|
|
62
|
+
*/
|
|
63
|
+
export function getCachedRgba(componentGuid: string | undefined, value: string) {
|
|
64
|
+
if (componentGuid) {
|
|
65
|
+
const cachedColor = cache[componentGuid];
|
|
66
|
+
|
|
67
|
+
return cachedColor && cachedColor.value === value ? cachedColor.rgba : undefined;
|
|
68
|
+
} else {
|
|
69
|
+
return undefined;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { TableCell } from '../models/table-cell';
|
|
2
|
+
import { isPresent } from './misc';
|
|
3
|
+
import { parseColor } from '@progress/kendo-drawing';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export class ColorPaletteService {
|
|
9
|
+
public colorRows: string[][] = [];
|
|
10
|
+
|
|
11
|
+
public setColorMatrix(palette: string[], columns: number): void {
|
|
12
|
+
this.colorRows = [];
|
|
13
|
+
|
|
14
|
+
if (!(isPresent(palette) && palette.length)) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
columns = columns || palette.length;
|
|
19
|
+
|
|
20
|
+
for (let start = 0; start < palette.length; start += columns) {
|
|
21
|
+
const row = palette.slice(start, columns + start);
|
|
22
|
+
this.colorRows.push(row);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
public getCellCoordsFor(color?: string): TableCell | undefined {
|
|
27
|
+
if (!isPresent(color)) {
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const parsedColor = color ? parseColor(color, true) : color;
|
|
32
|
+
const colors = [ color ];
|
|
33
|
+
|
|
34
|
+
if (isPresent(parsedColor)) {
|
|
35
|
+
colors.push(parsedColor.toCss(), parsedColor.toCssRgba());
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
for (let row = 0; row < this.colorRows.length; row++) {
|
|
39
|
+
for (let col = 0; col < this.colorRows[row].length; col++) {
|
|
40
|
+
if (colors.some(c => c === this.colorRows[row][col])) {
|
|
41
|
+
return { row, col };
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
public getColorAt(cellCoords: TableCell): string | undefined {
|
|
48
|
+
if (!(isPresent(cellCoords) && isPresent(this.colorRows[cellCoords.row]))) {
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return this.colorRows[cellCoords.row][cellCoords.col];
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
public getNextCell(current: TableCell, horizontalStep: number, verticalStep: number): TableCell {
|
|
56
|
+
if (!(isPresent(current) && isPresent(current.row) && isPresent(current.col))) {
|
|
57
|
+
return { row: 0, col: 0 };
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const row = this.clampIndex(current.row + verticalStep, this.colorRows.length - 1);
|
|
61
|
+
const col = this.clampIndex(current.col + horizontalStep, this.colorRows[row].length - 1);
|
|
62
|
+
|
|
63
|
+
return { row, col };
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
private clampIndex(index: number, max: number): number {
|
|
67
|
+
const minArrayIndex = 0;
|
|
68
|
+
|
|
69
|
+
if (index < minArrayIndex) {
|
|
70
|
+
return minArrayIndex;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (index > max) {
|
|
74
|
+
return max;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return index;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { parseColor as parse, Color } from '@progress/kendo-drawing';
|
|
2
|
+
|
|
3
|
+
import { HSVA } from '../models/hsva';
|
|
4
|
+
import { OutputFormat } from '../models/output-format';
|
|
5
|
+
import { RGB } from '../models/rgb';
|
|
6
|
+
import { RGBA } from '../models/rgba';
|
|
7
|
+
import { isPresent, fitIntoBounds } from './misc';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*
|
|
12
|
+
* Returns the hex or RGBA string representation of the color.
|
|
13
|
+
*/
|
|
14
|
+
export const parseColor = (value: string, format: OutputFormat, safe: boolean = true): string | undefined => {
|
|
15
|
+
const allowedFormats: Array<string> = ['hex', 'rgba']; // TODO: constant?
|
|
16
|
+
// Angular supports third type: name : const allowedFormats: Array<string> = ['hex', 'rgba', 'name'];
|
|
17
|
+
if (allowedFormats.indexOf(format) === -1) {
|
|
18
|
+
throw new Error(`Unsupported color output format '${format}'. The available options are 'hex' or 'rgba'.`);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
if (!isPresent(value)) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const parsedColor = parse(value.trim(), safe);
|
|
26
|
+
|
|
27
|
+
if (!isPresent(parsedColor)) {
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return format === 'hex' ? parsedColor.toCss() : parsedColor.toCssRgba();
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*
|
|
37
|
+
* Returns an HSV object representation of the color string.
|
|
38
|
+
*/
|
|
39
|
+
export const getHSV = (value: string, safe: boolean = true): HSVA => {
|
|
40
|
+
const parsed = parse(value, safe);
|
|
41
|
+
if (!isPresent(parsed)) {
|
|
42
|
+
return {};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
return parsed.toHSV();
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @hidden
|
|
50
|
+
*
|
|
51
|
+
* Returns an RGBA object representation of the color string.
|
|
52
|
+
*/
|
|
53
|
+
export const getRGBA = (value: string, safe: boolean = true): RGBA => {
|
|
54
|
+
const parsed = parse(value, safe);
|
|
55
|
+
if (!isPresent(parsed)) {
|
|
56
|
+
return {};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return parsed.toBytes();
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @hidden
|
|
64
|
+
*
|
|
65
|
+
* Returns the RGBA string representation of the color.
|
|
66
|
+
*/
|
|
67
|
+
export const getColorFromHSV = (hsva: HSVA): string => {
|
|
68
|
+
const hue = fitIntoBounds(hsva.h, 0, 359.9);
|
|
69
|
+
const saturation = fitIntoBounds(hsva.s, 0, 1);
|
|
70
|
+
const value = fitIntoBounds(hsva.v, 0, 1);
|
|
71
|
+
const alpha = fitIntoBounds(hsva.a, 0, 1);
|
|
72
|
+
|
|
73
|
+
return Color.fromHSV(hue, saturation, value, alpha).toCssRgba();
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @hidden
|
|
78
|
+
*
|
|
79
|
+
* Returns the RGBA string representation of the color based on the `hue` and
|
|
80
|
+
* assuming the `value`, `saturation`, and `alpha` have a value of `1`.
|
|
81
|
+
*/
|
|
82
|
+
export const getColorFromHue = (hue: number): string => {
|
|
83
|
+
return getColorFromHSV({ h: hue, s: 1, v: 1, a: 1 });
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @hidden
|
|
88
|
+
*
|
|
89
|
+
* Returns the RGBA string representation of the color.
|
|
90
|
+
*/
|
|
91
|
+
export const getColorFromRGBA = (rgba: RGBA): string => {
|
|
92
|
+
const red = fitIntoBounds(rgba.r, 0, 255);
|
|
93
|
+
const green = fitIntoBounds(rgba.g, 0, 255);
|
|
94
|
+
const blue = fitIntoBounds(rgba.b, 0, 255);
|
|
95
|
+
const alpha = fitIntoBounds(rgba.a, 0, 1);
|
|
96
|
+
|
|
97
|
+
return Color.fromBytes(red, green, blue, alpha).toCssRgba();
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* @hidden
|
|
102
|
+
*
|
|
103
|
+
* Returns the RGB object representation of the color based on the background color.
|
|
104
|
+
*/
|
|
105
|
+
export const getRGBFromRGBA = (foregroundColor: RGBA, backgroundColor: RGBA): RGB => {
|
|
106
|
+
const r1 = fitIntoBounds(foregroundColor.r, 0, 255);
|
|
107
|
+
const g1 = fitIntoBounds(foregroundColor.g, 0, 255);
|
|
108
|
+
const b1 = fitIntoBounds(foregroundColor.b, 0, 255);
|
|
109
|
+
const a1 = fitIntoBounds(foregroundColor.a, 0, 1);
|
|
110
|
+
|
|
111
|
+
const r2 = fitIntoBounds(backgroundColor.r, 0, 255);
|
|
112
|
+
const g2 = fitIntoBounds(backgroundColor.g, 0, 255);
|
|
113
|
+
const b2 = fitIntoBounds(backgroundColor.b, 0, 255);
|
|
114
|
+
|
|
115
|
+
return {
|
|
116
|
+
r: Math.round(((1 - a1) * r2) + (a1 * r1)),
|
|
117
|
+
g: Math.round(((1 - a1) * g2) + (a1 * g1)),
|
|
118
|
+
b: Math.round(((1 - a1) * b2) + (a1 * b1))
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* @hidden
|
|
124
|
+
*
|
|
125
|
+
* Returns the relative luminance.
|
|
126
|
+
*/
|
|
127
|
+
export const getLuminance = (rgb: RGB) => {
|
|
128
|
+
let a: number[] = [rgb.r || 0, rgb.g || 0, rgb.b || 0].map(function (v: number) {
|
|
129
|
+
v /= 255;
|
|
130
|
+
return v <= 0.03928
|
|
131
|
+
? v / 12.92
|
|
132
|
+
: Math.pow((v + 0.055) / 1.055, 2.4);
|
|
133
|
+
});
|
|
134
|
+
return a[0] * 0.2126 + a[1] * 0.7152 + a[2] * 0.0722;
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @hidden
|
|
139
|
+
*
|
|
140
|
+
* Returns the color contrast.
|
|
141
|
+
*/
|
|
142
|
+
export const getContrast = (luminance1: number, luminance2: number) => {
|
|
143
|
+
const brightest = Math.max(luminance1, luminance2);
|
|
144
|
+
const darkest = Math.min(luminance1, luminance2);
|
|
145
|
+
return (brightest + 0.05)
|
|
146
|
+
/ (darkest + 0.05);
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* @hidden
|
|
151
|
+
*
|
|
152
|
+
* Returns the color contrast from two RGBA colors.
|
|
153
|
+
*/
|
|
154
|
+
export const getContrastFromTwoRGBAs = (a: RGBA, b: RGBA) => {
|
|
155
|
+
return getContrast(
|
|
156
|
+
getLuminance(getRGBFromRGBA(a, b)),
|
|
157
|
+
getLuminance(getRGBFromRGBA(b, { r: 0, g: 0, b: 0, a: 1 })));
|
|
158
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
export const isPresent = (value: any): boolean => value !== null && value !== undefined;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
*
|
|
10
|
+
* Fits the contender number into the specified bounds.
|
|
11
|
+
* If the number is NaN or null, the minimum is returned.
|
|
12
|
+
*
|
|
13
|
+
* @param contender Represents the number you want to fit into the specified bounds.
|
|
14
|
+
* @param min The inclusive lower bound number.
|
|
15
|
+
* @param max The inclusive upper bound number.
|
|
16
|
+
*/
|
|
17
|
+
export const fitIntoBounds = (contender: number | undefined, min: number, max: number): number => {
|
|
18
|
+
if (!isPresent(contender) || isNaN(contender!)) {
|
|
19
|
+
return min;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return contender! <= min ? min : contender! >= max ? max : contender!;
|
|
23
|
+
};
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @hidden
|
|
3
|
+
*
|
|
4
|
+
* Render the svg <path> element.
|
|
5
|
+
*
|
|
6
|
+
* @param points (array) Represents the points coordinates as an array of tuples.
|
|
7
|
+
* @param command (function) The command that is used (bezierCommand, lineCommand).
|
|
8
|
+
* @param point (array) [x,y] Represents the current point coordinates.
|
|
9
|
+
* @param i (integer) Represents the index of 'point' in the array 'a'.
|
|
10
|
+
* @param a (array) Represents the complete array of points coordinates.
|
|
11
|
+
* @output (string) a svg path command.
|
|
12
|
+
* @output (string) a Svg <path> element
|
|
13
|
+
*/
|
|
14
|
+
export const svgPath = (points: number[][], command: Function) => {
|
|
15
|
+
if (points.length === 0){
|
|
16
|
+
return '';
|
|
17
|
+
}
|
|
18
|
+
// build the d attributes by looping over the points
|
|
19
|
+
const d = points.reduce(
|
|
20
|
+
(acc, point, i, a) =>
|
|
21
|
+
i === 0 ?
|
|
22
|
+
// if first point
|
|
23
|
+
`M ${point[0]},${point[1]}` :
|
|
24
|
+
// else
|
|
25
|
+
`${acc} ${command(point, i, a)}`,
|
|
26
|
+
''
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
return `<path d="${d}" fill="none" stroke="white" stroke-width="1"/>`;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* @hidden
|
|
34
|
+
*
|
|
35
|
+
* Returns the properties of a line.
|
|
36
|
+
*
|
|
37
|
+
* @param pointA (array) [x,y] Represents the start point coordinates.
|
|
38
|
+
* @param pointB (array) [x,y] Represents the end point coordinates.
|
|
39
|
+
* @output (object) { length: (integer), angle: (integer) }
|
|
40
|
+
*/
|
|
41
|
+
export const line = (pointA: number[], pointB: number[]) => {
|
|
42
|
+
const lengthX = pointB[0] - pointA[0];
|
|
43
|
+
const lengthY = pointB[1] - pointA[1];
|
|
44
|
+
|
|
45
|
+
return {
|
|
46
|
+
length: Math.sqrt(Math.pow(lengthX, 2) + Math.pow(lengthY, 2)),
|
|
47
|
+
angle: Math.atan2(lengthY, lengthX)
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @hidden
|
|
53
|
+
*
|
|
54
|
+
* Create a function to calculate the position of the control point.
|
|
55
|
+
*
|
|
56
|
+
* @param lineCalc (function) Represents the line function.
|
|
57
|
+
* @param pointA (array) [x,y] Represents the start point coordinates.
|
|
58
|
+
* @param pointB (array) [x,y] Represents the end point coordinates.
|
|
59
|
+
* @output (object) { length: (integer), angle: (integer) }
|
|
60
|
+
* @output (function) closure.
|
|
61
|
+
* @param current (array) [x, y] Represents the current point coordinates.
|
|
62
|
+
* @param previous (array) [x, y] Represents the previous point coordinates.
|
|
63
|
+
* @param next (array) [x, y] ]Represents the next point coordinates.
|
|
64
|
+
* @param reverse (boolean, optional) Sets the direction.
|
|
65
|
+
* @output (array) [x, y] coordinates of a control point.
|
|
66
|
+
*/
|
|
67
|
+
export const controlPoint = (lineCalc: Function) =>
|
|
68
|
+
(current: number[], previous: number[], next: number[], reverse?: boolean) => {
|
|
69
|
+
// when 'current' is the first or last point of the array
|
|
70
|
+
// 'previous' and 'next' are undefined
|
|
71
|
+
// replace with 'current'
|
|
72
|
+
const p = previous || current;
|
|
73
|
+
const n = next || current;
|
|
74
|
+
const smooth = 0.1;
|
|
75
|
+
|
|
76
|
+
// properties of the line between previous and next
|
|
77
|
+
const l = lineCalc(p, n);
|
|
78
|
+
|
|
79
|
+
// If is end-control-point, add PI to the angle to go backward
|
|
80
|
+
const angle = l.angle + (reverse ? Math.PI : 0);
|
|
81
|
+
const length = l.length * smooth;
|
|
82
|
+
|
|
83
|
+
// The control point position is relative to the current point
|
|
84
|
+
const x = current[0] + Math.cos(angle) * length;
|
|
85
|
+
const y = current[1] + Math.sin(angle) * length;
|
|
86
|
+
|
|
87
|
+
return [x, y];
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @hidden
|
|
92
|
+
*
|
|
93
|
+
* Create a function to calculate a bezier curve command.
|
|
94
|
+
*
|
|
95
|
+
* @param controlPointCalc (function) Represents the controlPoint function.
|
|
96
|
+
* @param current (array) [x, y] Represents the current point coordinates.
|
|
97
|
+
* @param previous (array) [x, y] Represents the previous point coordinates.
|
|
98
|
+
* @param next (array) [x, y] ]Represents the next point coordinates.
|
|
99
|
+
* @param reverse (boolean, optional) Sets the direction.
|
|
100
|
+
* @output (array) [x, y] coordinates of a control point.
|
|
101
|
+
* @output (function) closure.
|
|
102
|
+
* @param point (array) [x,y] Represents the current point coordinates.
|
|
103
|
+
* @param i (integer) Represents the index of 'point' in the array 'a'.
|
|
104
|
+
* @param a (array) Represents the complete array of points coordinates.
|
|
105
|
+
* @output (string) 'C x2,y2 x1,y1 x,y' Cubic bezier command.
|
|
106
|
+
*/
|
|
107
|
+
export const bezierCommand = (controlPointCalc: Function) => (point: number[], i: number, a: number[]) => {
|
|
108
|
+
// start control point
|
|
109
|
+
const [cpsX, cpsY] = controlPointCalc(a[i - 1], a[i - 2], point);
|
|
110
|
+
|
|
111
|
+
// end control point
|
|
112
|
+
const [cpeX, cpeY] = controlPointCalc(point, a[i - 1], a[i + 1], true);
|
|
113
|
+
|
|
114
|
+
return `C ${cpsX},${cpsY} ${cpeX},${cpeY} ${point[0]},${point[1]}`;
|
|
115
|
+
};
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
import { useAnimation } from '@progress/kendo-react-animation';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export interface SliderTooltipProps {
|
|
9
|
+
id?: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
tabIndex?: number;
|
|
12
|
+
style?: React.CSSProperties;
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
|
|
15
|
+
position: 'right' | 'top';
|
|
16
|
+
|
|
17
|
+
show?: boolean;
|
|
18
|
+
anchor?: React.RefObject<HTMLElement>;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
export const SliderTooltip = (props: SliderTooltipProps) => {
|
|
25
|
+
const tooltipRef = React.useRef<HTMLDivElement>(null);
|
|
26
|
+
|
|
27
|
+
const position = () => {
|
|
28
|
+
if (props.anchor && props.anchor.current && tooltipRef.current) {
|
|
29
|
+
const anchorRect = props.anchor.current.getBoundingClientRect();
|
|
30
|
+
const rect = tooltipRef.current.getBoundingClientRect();
|
|
31
|
+
|
|
32
|
+
const left = props.position === 'top'
|
|
33
|
+
? (anchorRect.width / 2) - (rect.width / 2)
|
|
34
|
+
: (rect.height * 1);
|
|
35
|
+
const top = props.position === 'right'
|
|
36
|
+
? (anchorRect.height / 2) - (rect.height / 2)
|
|
37
|
+
: -(rect.height * 1.5);
|
|
38
|
+
|
|
39
|
+
tooltipRef.current.style.left = `${left}px`;
|
|
40
|
+
tooltipRef.current.style.top = `${top}px`;
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const handleAnimationStart = () => {
|
|
45
|
+
if (!tooltipRef.current) { return; }
|
|
46
|
+
tooltipRef.current.style.opacity = props.show ? '0' : '1';
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const handleAnimationEnd = () => {
|
|
50
|
+
if (!tooltipRef.current) { return; }
|
|
51
|
+
tooltipRef.current.style.opacity = props.show ? '1' : '0';
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const handleAnimationUpdate = (progress: any) => {
|
|
55
|
+
if (!tooltipRef.current) { return; }
|
|
56
|
+
tooltipRef.current.style.opacity = `${props.show ? progress : 1 - progress}`;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
React.useEffect(position);
|
|
60
|
+
|
|
61
|
+
useAnimation(
|
|
62
|
+
{
|
|
63
|
+
appear: true,
|
|
64
|
+
duration: 300,
|
|
65
|
+
onStart: handleAnimationStart,
|
|
66
|
+
onUpdate: handleAnimationUpdate,
|
|
67
|
+
onEnd: handleAnimationEnd
|
|
68
|
+
},
|
|
69
|
+
[props.show]
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
return (
|
|
73
|
+
<div
|
|
74
|
+
ref={tooltipRef}
|
|
75
|
+
className="k-tooltip"
|
|
76
|
+
style={{ position: 'absolute' }}
|
|
77
|
+
>
|
|
78
|
+
<div className="k-tooltip-content">
|
|
79
|
+
{props.children}
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
);
|
|
83
|
+
};
|