@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,364 @@
|
|
|
1
|
+
import { Result, ResultType } from '../../src/maskedtextbox/parsing/result';
|
|
2
|
+
import { Stream } from '../../src/maskedtextbox/parsing/stream';
|
|
3
|
+
import { sequence } from '../../src/maskedtextbox/parsing/combinators';
|
|
4
|
+
import {
|
|
5
|
+
Parser,
|
|
6
|
+
literal,
|
|
7
|
+
mask,
|
|
8
|
+
unliteral,
|
|
9
|
+
unmask,
|
|
10
|
+
rawLiteral,
|
|
11
|
+
rawMask
|
|
12
|
+
} from '../../src/maskedtextbox/parsing/parsers';
|
|
13
|
+
|
|
14
|
+
describe('parsing tests', () => {
|
|
15
|
+
const numberRule = /[\d]/;
|
|
16
|
+
const prompt = '_';
|
|
17
|
+
const promptPlaceholder = '';
|
|
18
|
+
const maskChar = mask({prompt, promptPlaceholder});
|
|
19
|
+
const unmaskChar = unmask(prompt);
|
|
20
|
+
|
|
21
|
+
describe('Result class', () => {
|
|
22
|
+
it('map', () => {
|
|
23
|
+
const value = 1;
|
|
24
|
+
const rest = new Stream([2, 3]);
|
|
25
|
+
|
|
26
|
+
const result = new Result(value, rest);
|
|
27
|
+
const mapped = result.map(v => v * 2);
|
|
28
|
+
|
|
29
|
+
expect(mapped).toEqual(new Result(2, rest));
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
it('chain', () => {
|
|
33
|
+
const value = 1;
|
|
34
|
+
const rest = new Stream([2, 3]);
|
|
35
|
+
|
|
36
|
+
const result = new Result(value, rest);
|
|
37
|
+
const chained = result.chain((v, r) => ({value: v, rest: r}));
|
|
38
|
+
|
|
39
|
+
expect(chained).toEqual({value, rest});
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it('fold', () => {
|
|
43
|
+
const value = 1;
|
|
44
|
+
const rest = new Stream([2, 3]);
|
|
45
|
+
|
|
46
|
+
const result = new Result(value, rest);
|
|
47
|
+
const folded = result.fold((v, r) => ({value: v, rest: r}));
|
|
48
|
+
|
|
49
|
+
expect(folded).toEqual({value, rest});
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
describe('Parser class', () => {
|
|
54
|
+
it('run executes the parser with a stream', () => {
|
|
55
|
+
let calledStream: Stream;
|
|
56
|
+
|
|
57
|
+
new Parser(stream => {
|
|
58
|
+
calledStream = stream;
|
|
59
|
+
})
|
|
60
|
+
.run('abc', '12');
|
|
61
|
+
|
|
62
|
+
expect(calledStream).toEqual(new Stream(['a', 'b', 'c'], ['1', '2']));
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
it('map called with parse function result', () => {
|
|
66
|
+
const stream = new Stream(['a']);
|
|
67
|
+
const parse = s => new Result(stream.next().char, s);
|
|
68
|
+
const parserResult = new Parser(parse)
|
|
69
|
+
.map(value => value + 'b')
|
|
70
|
+
.run(stream);
|
|
71
|
+
|
|
72
|
+
expect(parserResult).toEqual(new Result('ab', stream));
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
it('chaining parser', () => {
|
|
76
|
+
const stream = new Stream(['a', 'b']);
|
|
77
|
+
const parse = s => new Result(stream.next().char, s);
|
|
78
|
+
const parserResult = new Parser(parse)
|
|
79
|
+
.chain(_ => new Parser(parse))
|
|
80
|
+
.run(stream);
|
|
81
|
+
|
|
82
|
+
expect(parserResult).toEqual(new Result('b', stream));
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
describe('mask parser', () => {
|
|
87
|
+
it('produces prompt for empty input', () => {
|
|
88
|
+
const stream = new Stream([]);
|
|
89
|
+
const result = maskChar(numberRule).run(stream);
|
|
90
|
+
|
|
91
|
+
expect(result).toEqual(new Result(prompt, stream, ResultType.Mask));
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
it('match in the begining of the stream', () => {
|
|
95
|
+
const stream = new Stream(['1']);
|
|
96
|
+
const result = maskChar(numberRule).run(stream);
|
|
97
|
+
|
|
98
|
+
expect(result).toEqual(new Result('1', stream, ResultType.Mask));
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
it('consumes the stream until match is found', () => {
|
|
102
|
+
const stream = new Stream(['a', 'b', '1']);
|
|
103
|
+
const result = maskChar(numberRule).run(stream);
|
|
104
|
+
|
|
105
|
+
expect(result).toEqual(new Result('1', stream, ResultType.Mask));
|
|
106
|
+
expect(stream.eof()).toEqual(true);
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it('stops when match to promptPlaceholder', () => {
|
|
110
|
+
const stream = new Stream(['a', promptPlaceholder, '1']);
|
|
111
|
+
const result = maskChar(numberRule).run(stream);
|
|
112
|
+
|
|
113
|
+
expect(result).toEqual(new Result(prompt, stream, ResultType.Mask));
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
it('stops when input and control stream match to prompt', () => {
|
|
117
|
+
const stream = new Stream([prompt], [prompt]);
|
|
118
|
+
const result = maskChar(numberRule).run(stream);
|
|
119
|
+
|
|
120
|
+
expect(result).toEqual(new Result(prompt, stream, ResultType.Mask));
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
it('stops when input and control stream match to prompt when input stream is bigger', () => {
|
|
124
|
+
const stream = new Stream(['a', prompt], [prompt]);
|
|
125
|
+
const result = maskChar(numberRule).run(stream);
|
|
126
|
+
|
|
127
|
+
expect(result).toEqual(new Result(prompt, stream, ResultType.Mask));
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
it('stops when input and control stream match to prompt with multiple invalid chars', () => {
|
|
131
|
+
const stream = new Stream(['a', 'a', 'c', prompt], [prompt]);
|
|
132
|
+
const result = maskChar(numberRule).run(stream);
|
|
133
|
+
|
|
134
|
+
expect(result).toEqual(new Result(prompt, stream, ResultType.Mask));
|
|
135
|
+
});
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
describe('literal parser', () => {
|
|
139
|
+
it('produces result with the token for empty input', () => {
|
|
140
|
+
const stream = new Stream([]);
|
|
141
|
+
const result = literal('A').run(stream);
|
|
142
|
+
|
|
143
|
+
expect(result).toEqual(new Result('A', stream, ResultType.Literal));
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
it('produces result with the token for non-empty input', () => {
|
|
147
|
+
const stream = new Stream(['A']);
|
|
148
|
+
const result = literal('A').run(stream);
|
|
149
|
+
|
|
150
|
+
expect(result).toEqual(new Result('A', stream, ResultType.Literal));
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
it('moves the control stream', () => {
|
|
154
|
+
const stream = new Stream(['A'], ['A']);
|
|
155
|
+
const result = literal('A').run(stream);
|
|
156
|
+
|
|
157
|
+
expect(result).toEqual(new Result('A', stream, ResultType.Literal));
|
|
158
|
+
expect(stream.peek().control).toEqual(undefined);
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
it('moves the input stream to the end', () => {
|
|
162
|
+
const stream = new Stream(['A'], ['A']);
|
|
163
|
+
const result = literal('A').run(stream);
|
|
164
|
+
|
|
165
|
+
expect(result).toEqual(new Result('A', stream, ResultType.Literal));
|
|
166
|
+
expect(stream.eof()).toEqual(true);
|
|
167
|
+
});
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
describe('unmask parser', () => {
|
|
171
|
+
it('returns the empty string when input stream empty', () => {
|
|
172
|
+
const stream = new Stream([]);
|
|
173
|
+
const result = unmaskChar(numberRule).run(stream);
|
|
174
|
+
|
|
175
|
+
expect(result).toEqual(new Result('', stream));
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
it('returns the character when valid', () => {
|
|
179
|
+
const stream = new Stream(['1']);
|
|
180
|
+
const result = unmaskChar(numberRule).run(stream);
|
|
181
|
+
|
|
182
|
+
expect(result).toEqual(new Result('1', stream));
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
it('returns the prompt when control stream had prompt', () => {
|
|
186
|
+
const stream = new Stream([prompt], [prompt]);
|
|
187
|
+
const result = unmaskChar(numberRule).run(stream);
|
|
188
|
+
|
|
189
|
+
expect(result).toEqual(new Result(prompt, stream));
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
it('returns the empty string when control stream does not have prompt', () => {
|
|
193
|
+
const stream = new Stream([prompt], ['1']);
|
|
194
|
+
const result = unmaskChar(numberRule).run(stream);
|
|
195
|
+
|
|
196
|
+
expect(result).toEqual(new Result('', stream));
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
it('consumes the stream until match is found', () => {
|
|
200
|
+
const stream = new Stream(['a', 'b', '1']);
|
|
201
|
+
const result = unmaskChar(numberRule).run(stream);
|
|
202
|
+
|
|
203
|
+
expect(result).toEqual(new Result('1', stream));
|
|
204
|
+
expect(stream.eof()).toEqual(true);
|
|
205
|
+
});
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
describe('unliteral parser', () => {
|
|
209
|
+
it('returns literal token when input stream empty', () => {
|
|
210
|
+
const stream = new Stream([]);
|
|
211
|
+
const result = unliteral('A').run(stream);
|
|
212
|
+
|
|
213
|
+
expect(result).toEqual(new Result('', stream));
|
|
214
|
+
});
|
|
215
|
+
|
|
216
|
+
it('returns the literal token on match', () => {
|
|
217
|
+
const stream = new Stream(['A']);
|
|
218
|
+
const result = unliteral('A').run(stream);
|
|
219
|
+
|
|
220
|
+
expect(result).toEqual(new Result('A', stream));
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
it('moves the stream on match', () => {
|
|
224
|
+
const stream = new Stream(['A', '1']);
|
|
225
|
+
unliteral('A').run(stream);
|
|
226
|
+
|
|
227
|
+
expect(stream.peek().char).toEqual('1');
|
|
228
|
+
});
|
|
229
|
+
|
|
230
|
+
it('returns the literal token when match is not found', () => {
|
|
231
|
+
const stream = new Stream(['2', '1']);
|
|
232
|
+
const result = unliteral('A').run(stream);
|
|
233
|
+
|
|
234
|
+
expect(result).toEqual(new Result('A', stream));
|
|
235
|
+
});
|
|
236
|
+
|
|
237
|
+
it('does not moves the stream when match is not found', () => {
|
|
238
|
+
const stream = new Stream(['2', '1']);
|
|
239
|
+
unliteral('A').run(stream);
|
|
240
|
+
|
|
241
|
+
expect(stream.peek().char).toEqual('2');
|
|
242
|
+
});
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
describe('sequence', () => {
|
|
246
|
+
it('list of rules', () => {
|
|
247
|
+
const stream = new Stream(['1', '2']);
|
|
248
|
+
const result = sequence([
|
|
249
|
+
maskChar(numberRule),
|
|
250
|
+
maskChar(numberRule)
|
|
251
|
+
]).run(stream);
|
|
252
|
+
|
|
253
|
+
expect(result).toEqual(new Result(['1', '2'], stream));
|
|
254
|
+
});
|
|
255
|
+
|
|
256
|
+
it('list of rules with shorter input stream', () => {
|
|
257
|
+
const stream = new Stream(['1', '2']);
|
|
258
|
+
const result = sequence([
|
|
259
|
+
maskChar(numberRule),
|
|
260
|
+
maskChar(numberRule),
|
|
261
|
+
maskChar(numberRule)
|
|
262
|
+
]).run(stream);
|
|
263
|
+
|
|
264
|
+
expect(result).toEqual(new Result(['1', '2', '_'], stream));
|
|
265
|
+
});
|
|
266
|
+
|
|
267
|
+
it('list of rules with larger input stream', () => {
|
|
268
|
+
const stream = new Stream(['1', '2', '3', '4']);
|
|
269
|
+
const result = sequence([
|
|
270
|
+
maskChar(numberRule),
|
|
271
|
+
maskChar(numberRule)
|
|
272
|
+
]).run(stream);
|
|
273
|
+
|
|
274
|
+
expect(result).toEqual(new Result(['1', '2'], stream));
|
|
275
|
+
});
|
|
276
|
+
|
|
277
|
+
it('prompt for input and control chars', () => {
|
|
278
|
+
const stream = new Stream(['1', prompt, '3', '4'], [prompt, prompt, '5']);
|
|
279
|
+
const result = sequence([
|
|
280
|
+
maskChar(numberRule),
|
|
281
|
+
maskChar(numberRule),
|
|
282
|
+
maskChar(numberRule)
|
|
283
|
+
]).run(stream);
|
|
284
|
+
|
|
285
|
+
expect(result).toEqual(new Result(['1', prompt, '3'], stream));
|
|
286
|
+
});
|
|
287
|
+
|
|
288
|
+
it('invalid chars in the begining the input', () => {
|
|
289
|
+
const stream = new Stream(['a', '1', '3', '4']);
|
|
290
|
+
const result = sequence([
|
|
291
|
+
maskChar(numberRule),
|
|
292
|
+
maskChar(numberRule),
|
|
293
|
+
maskChar(numberRule)
|
|
294
|
+
]).run(stream);
|
|
295
|
+
|
|
296
|
+
expect(result).toEqual(new Result(['1', '3', '4'], stream));
|
|
297
|
+
});
|
|
298
|
+
|
|
299
|
+
it('invalid chars in the begining the input larger then the parsers list', () => {
|
|
300
|
+
const stream = new Stream(['a', 'b', 'c', '1', '3', '4']);
|
|
301
|
+
const result = sequence([
|
|
302
|
+
maskChar(numberRule),
|
|
303
|
+
maskChar(numberRule)
|
|
304
|
+
]).run(stream);
|
|
305
|
+
|
|
306
|
+
expect(result).toEqual(new Result(['1', '3'], stream));
|
|
307
|
+
});
|
|
308
|
+
|
|
309
|
+
it('invalid chars in the input', () => {
|
|
310
|
+
const stream = new Stream(['1', 'a', 'b', 'c', '3', '4']);
|
|
311
|
+
const result = sequence([
|
|
312
|
+
maskChar(numberRule),
|
|
313
|
+
maskChar(numberRule)
|
|
314
|
+
]).run(stream);
|
|
315
|
+
|
|
316
|
+
expect(result).toEqual(new Result(['1', '3'], stream));
|
|
317
|
+
});
|
|
318
|
+
|
|
319
|
+
it('literal and multiple mask rules', () => {
|
|
320
|
+
const stream = new Stream(['A', '1', '2']);
|
|
321
|
+
const result = sequence([
|
|
322
|
+
literal('A'),
|
|
323
|
+
maskChar(numberRule),
|
|
324
|
+
maskChar(numberRule),
|
|
325
|
+
maskChar(numberRule)
|
|
326
|
+
]).run(stream);
|
|
327
|
+
|
|
328
|
+
expect(result).toEqual(new Result(['A', '1', '2', '_'], stream));
|
|
329
|
+
expect(stream.eof()).toEqual(true);
|
|
330
|
+
});
|
|
331
|
+
});
|
|
332
|
+
|
|
333
|
+
describe('raw mask', () => {
|
|
334
|
+
it('returns char', () => {
|
|
335
|
+
const stream = new Stream(['1']);
|
|
336
|
+
const result = rawMask({prompt, promptPlaceholder}).run(stream);
|
|
337
|
+
|
|
338
|
+
expect(result).toEqual(new Result('1', stream));
|
|
339
|
+
});
|
|
340
|
+
|
|
341
|
+
it('returns the placeholder', () => {
|
|
342
|
+
const stream = new Stream([prompt]);
|
|
343
|
+
const result = rawMask({prompt, promptPlaceholder}).run(stream);
|
|
344
|
+
|
|
345
|
+
expect(result).toEqual(new Result(promptPlaceholder, stream));
|
|
346
|
+
});
|
|
347
|
+
});
|
|
348
|
+
|
|
349
|
+
describe('raw literal', () => {
|
|
350
|
+
it('returns char', () => {
|
|
351
|
+
const stream = new Stream(['A']);
|
|
352
|
+
const result = rawLiteral(true).run(stream);
|
|
353
|
+
|
|
354
|
+
expect(result).toEqual(new Result('A', stream));
|
|
355
|
+
});
|
|
356
|
+
|
|
357
|
+
it('returns empty string', () => {
|
|
358
|
+
const stream = new Stream(['A']);
|
|
359
|
+
const result = rawLiteral(false).run(stream);
|
|
360
|
+
|
|
361
|
+
expect(result).toEqual(new Result('', stream));
|
|
362
|
+
});
|
|
363
|
+
});
|
|
364
|
+
});
|
package/tsconfig.es.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"sourceMap": false,
|
|
4
|
+
"strict": true,
|
|
5
|
+
"module": "es2015",
|
|
6
|
+
"target": "ES5",
|
|
7
|
+
"jsx": "react",
|
|
8
|
+
"lib": [
|
|
9
|
+
"es2015",
|
|
10
|
+
"es2017",
|
|
11
|
+
"dom"
|
|
12
|
+
],
|
|
13
|
+
"declaration": true,
|
|
14
|
+
"moduleResolution": "node",
|
|
15
|
+
"outDir": "dist/es"
|
|
16
|
+
},
|
|
17
|
+
"include": [
|
|
18
|
+
"./src/**/*.ts",
|
|
19
|
+
"./src/**/*.tsx"
|
|
20
|
+
],
|
|
21
|
+
"exclude": [
|
|
22
|
+
"node_modules",
|
|
23
|
+
"dist"
|
|
24
|
+
]
|
|
25
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"sourceMap": false,
|
|
4
|
+
"strict": true,
|
|
5
|
+
"noUnusedLocals": true,
|
|
6
|
+
"noUnusedParameters": true,
|
|
7
|
+
"module": "commonjs",
|
|
8
|
+
"target": "ES5",
|
|
9
|
+
"jsx": "react",
|
|
10
|
+
"lib": [
|
|
11
|
+
"es2015",
|
|
12
|
+
"es2017",
|
|
13
|
+
"dom"
|
|
14
|
+
],
|
|
15
|
+
"declaration": true,
|
|
16
|
+
"moduleResolution": "node"
|
|
17
|
+
},
|
|
18
|
+
"include": [
|
|
19
|
+
"./src/**/*.ts",
|
|
20
|
+
"./src/**/*.tsx"
|
|
21
|
+
],
|
|
22
|
+
"exclude": [
|
|
23
|
+
"node_modules",
|
|
24
|
+
"dist"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"sourceMap": false,
|
|
4
|
+
"strict": true,
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"target": "ES5",
|
|
7
|
+
"jsx": "react",
|
|
8
|
+
"lib": [
|
|
9
|
+
"es2015",
|
|
10
|
+
"es2017",
|
|
11
|
+
"dom"
|
|
12
|
+
],
|
|
13
|
+
"declaration": true,
|
|
14
|
+
"moduleResolution": "node",
|
|
15
|
+
"outDir": "dist/npm"
|
|
16
|
+
},
|
|
17
|
+
"include": [
|
|
18
|
+
"./src/**/*.ts",
|
|
19
|
+
"./src/**/*.tsx"
|
|
20
|
+
],
|
|
21
|
+
"exclude": [
|
|
22
|
+
"node_modules",
|
|
23
|
+
"dist"
|
|
24
|
+
]
|
|
25
|
+
}
|
package/LICENSE.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# KendoReact
|
|
2
|
-
|
|
3
|
-
This package is part of the [KendoReact](http://www.telerik.com/kendo-react-ui/) suite.
|
|
4
|
-
|
|
5
|
-
## License
|
|
6
|
-
|
|
7
|
-
This is commercial software. To use it, you need to agree to the [**End User License Agreement for Progress KendoReact**](https://www.telerik.com/purchase/license-agreement/progress-kendoreact). If you do not own a commercial license, this file shall be governed by the trial license terms.
|
|
8
|
-
|
|
9
|
-
All available KendoReact commercial licenses may be obtained at the [KendoReact website](https://www.telerik.com/kendo-react-ui/pricing/).
|
|
10
|
-
|
|
11
|
-
*Copyright © 2022 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
|
package/NOTICE.txt
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
Progress KendoReact 2022
|
|
2
|
-
|
|
3
|
-
Copyright © 2018-2022 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
|
|
4
|
-
|
|
5
|
-
Portions of the Product include certain open source and commercial third-party components listed below (ìThird-Party Componentsî). The authors of the Third-Party Components require Progress Software Corporation (ìPSCî) to include the following notices and additional licensing terms as a condition of PSCís use of such Third-Party Components. You acknowledge that the authors of the Third-Party Components have no obligation to provide support to you for the Third-Party Components or the Product. You hereby undertake to comply with all licenses related to the applicable Third-Party Components. Notwithstanding anything to the contrary, to the extent that any of the terms and conditions of the Product Agreement conflict, vary, or are in addition to the terms and conditions of the aforementioned third-party licenses for these technologies, such terms and conditions are offered by Progress alone and not by any other party.
|
|
6
|
-
|
|
7
|
-
-------------------------------------------------------------------------
|
|
8
|
-
SUMMARY OF COMPONENTS:
|
|
9
|
-
|
|
10
|
-
VendorName | ComponentName | VersionName | LicenseType
|
|
11
|
-
|
|
12
|
-
Axios | Axios | 0.18.1 - Open Source | MIT-style License
|
|
13
|
-
DefinitelyTyped.org | @types/prosemirror-commands | 1.0.4 - Open Source | MIT-style License
|
|
14
|
-
DefinitelyTyped.org | @types/prosemirror-dropcursor | 1.0.1 - Open Source | MIT-style License
|
|
15
|
-
DefinitelyTyped.org | @types/prosemirror-gapcursor | 1.0.2 - Open Source | MIT-style License
|
|
16
|
-
DefinitelyTyped.org | @types/prosemirror-history | 1.0.2 - Open Source | MIT-style License
|
|
17
|
-
DefinitelyTyped.org | @types/prosemirror-inputrules | 1.0.2 - Open Source | MIT-style License
|
|
18
|
-
DefinitelyTyped.org | @types/prosemirror-keymap | 1.0.2 - Open Source | MIT-style License
|
|
19
|
-
DefinitelyTyped.org | @types/prosemirror-model | 1.11.2 - Open Source | MIT-style License
|
|
20
|
-
DefinitelyTyped.org | @types/prosemirror-schema-list | 1.0.2 - Open Source | MIT-style License
|
|
21
|
-
DefinitelyTyped.org | @types/prosemirror-state | 1.2.4 - Open Source | MIT-style License
|
|
22
|
-
DefinitelyTyped.org | @types/prosemirror-tables | 0.9.1 - Open Source | MIT-style License
|
|
23
|
-
DefinitelyTyped.org | @types/prosemirror-transform | 1.2.9 - Open Source | MIT-style License
|
|
24
|
-
DefinitelyTyped.org | @types/prosemirror-view | 1.11.4 - Open Source | MIT-style License
|
|
25
|
-
Facebook, Inc. | prop-types | 15.6.0 - Open Source | MIT-style License
|
|
26
|
-
Facebook, Inc. | react-transition-group | 2.2.0 - Open Source | BSD-style License
|
|
27
|
-
Progress Software Corporation | Kendo UI Licensing CLI | 1.1 - Proprietary |
|
|
28
|
-
Progress Software Corporation | jszip-esm | 1.0.0 - Open Source | MIT-style License
|
|
29
|
-
Progress Software Corporation | pako-esm | 1.0.0 - Open Source | MIT-style License
|
|
30
|
-
ProseMirror | prosemiror-inputrules | 1.0.1 - Open Source | MIT-style License
|
|
31
|
-
ProseMirror | prosemirror-commands | 1.0.7 - Open Source | MIT-style License
|
|
32
|
-
ProseMirror | prosemirror-gapcursor | 1.0.2 - Open Source | MIT-style License
|
|
33
|
-
ProseMirror | prosemirror-history | 1.0.2 - Open Source | MIT-style License
|
|
34
|
-
ProseMirror | prosemirror-keymap | 1.0.1 - Open Source | MIT-style License
|
|
35
|
-
ProseMirror | prosemirror-model | 1.6.1 - Open Source | MIT-style License
|
|
36
|
-
ProseMirror | prosemirror-schema-list | 1.0.1 - Open Source | MIT-style License
|
|
37
|
-
ProseMirror | prosemirror-state | 1.2.2 - Open Source | MIT-style License
|
|
38
|
-
ProseMirror | prosemirror-tables | 0.7.10 - Open Source | MIT-style License
|
|
39
|
-
ProseMirror | prosemirror-transform | 1.1.3 - Open Source | MIT-style License
|
|
40
|
-
ProseMirror | prosemirror-view | 1.5.2 - Open Source | MIT-style License
|
|
41
|
-
-------------------------------------------------------------------------
|
|
42
|
-
|
|
43
|
-
1. Special Notices Regarding Open-Source Third-Party Components incorporated into the Product:
|
|
44
|
-
|
|
45
|
-
(1) BSD-Style Licenses:
|
|
46
|
-
|
|
47
|
-
(a) Progress KendoReact 2022 incorporates React-Transition-Group v2.2.0. Such technology is subject to the following terms and conditions:
|
|
48
|
-
BSD 3-Clause License
|
|
49
|
-
Copyright (c) 2018, React Community
|
|
50
|
-
Forked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc.
|
|
51
|
-
All rights reserved.
|
|
52
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
53
|
-
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
54
|
-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
55
|
-
* Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
56
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
57
|
-
|
|
58
|
-
(2) MIT-Style Licenses:
|
|
59
|
-
|
|
60
|
-
(a) Progress KendoReact 2022 incorporates @types/prosemirror-commands v1*, @types/prosemirror-dropcursor v1*, @types/prosemirror-gapcursor v1*, @types/prosemirror-history v1*, @types/prosemirror-inputrules v1*, @types/prosemirror-keymap v1*, @types/prosemirror-model v1*, @types/prosemirror-schema-list v1*, @types/prosemirror-state v1*, @types/prosemirror-tables v0.9*, @types/prosemirror-transform v1*, and @types/prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
|
|
61
|
-
This project is licensed under the MIT license.
|
|
62
|
-
Copyrights are respective of each contributor listed at the beginning of each definition file.
|
|
63
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
64
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
65
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
66
|
-
|
|
67
|
-
(b) Progress KendoReact 2022 incorporates prop-types v15*. Such technology is subject to the following terms and conditions:
|
|
68
|
-
MIT License
|
|
69
|
-
Copyright (c) 2013-present, Facebook, Inc.
|
|
70
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
71
|
-
of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
|
72
|
-
furnished to do so, subject to the following conditions:
|
|
73
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
74
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
75
|
-
|
|
76
|
-
(c) Progress KendoReact 2022 incorporates Axios v0.18.1. Such technology is subject to the following terms and conditions:
|
|
77
|
-
Copyright (c) 2014-present Matt Zabriskie
|
|
78
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
79
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
80
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
81
|
-
|
|
82
|
-
(d) Progress KendoReact 2022 incorporates pako-esm v1.0.0. Such technology is subject to the following terms and conditions:
|
|
83
|
-
Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. (as modified)
|
|
84
|
-
Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
|
|
85
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
86
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
87
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
88
|
-
|
|
89
|
-
(e) Progress KendoReact 2022 incorporates jszip-esm v1.0.0. Such technology is subject to the following terms and conditions:
|
|
90
|
-
Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. (as modified)
|
|
91
|
-
Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, AntÛnio Afonso
|
|
92
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
93
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
94
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
95
|
-
|
|
96
|
-
(f) Progress KendoReact 2022 incorporates prosemirror-commands v1*, prosemirror-gapcursor v1*, prosemirror-history v1*, prosemirror-inputrules v1*, prosemirror-keymap v1*, prosemirror-model v1*, prosemirror-schema-list v1*, prosemirror-state v1*, prosemirror-tables v0.9*, prosemirror-transform v1*, and prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
|
|
97
|
-
Copyright (C) 2015-2017 by Marijn Haverbeke <marijnh@gmail.com> and others
|
|
98
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
99
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
100
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
101
|
-
|
|
102
|
-
2. Special Notices Regarding Commercially Licensed Third-Party Components incorporated into the Product: NONE
|
|
103
|
-
|
|
104
|
-
3. Special Notices Regarding Progress Products incorporated into the Product:
|
|
105
|
-
|
|
106
|
-
(a) Progress KendoReact 2022 incorporates Kendo UI Licensing CLI v1.1 from Progress Software Corporation. See NOTICE.txt text file within product for third-party license information.
|
|
107
|
-
|
|
108
|
-
NOTICE FROM PROGRESS SOFTWARE CORPORATION: Additional notices may be included in the release notes or other documentation that accompanies updates received in connection with support of the Product.
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
Updated 1/6/2022
|