@progress/kendo-vue-inputs 5.3.0-dev.202409130647 → 5.3.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -38
- package/checkbox/Checkbox.js +8 -0
- package/checkbox/Checkbox.mjs +285 -0
- package/colors/ColorContrastLabels.js +8 -0
- package/colors/ColorContrastLabels.mjs +63 -0
- package/colors/ColorContrastSvg.js +8 -0
- package/colors/ColorContrastSvg.mjs +65 -0
- package/colors/ColorGradient.js +10 -0
- package/colors/ColorGradient.mjs +320 -0
- package/colors/ColorInput.js +8 -0
- package/colors/ColorInput.mjs +208 -0
- package/colors/ColorPalette.js +8 -0
- package/colors/ColorPalette.mjs +222 -0
- package/colors/ColorPicker.js +8 -0
- package/colors/ColorPicker.mjs +362 -0
- package/colors/FlatColorPicker.js +8 -0
- package/colors/FlatColorPicker.mjs +323 -0
- package/colors/HexInput.js +8 -0
- package/colors/HexInput.mjs +77 -0
- package/colors/Picker.js +8 -0
- package/colors/Picker.mjs +75 -0
- package/colors/models/palette-presets.js +8 -0
- package/colors/models/palette-presets.mjs +60 -0
- package/colors/utils/color-cache.js +8 -0
- package/colors/utils/color-cache.mjs +21 -0
- package/colors/utils/color-palette.service.js +8 -0
- package/colors/utils/color-palette.service.mjs +52 -0
- package/colors/utils/color-parser.js +8 -0
- package/colors/utils/color-parser.mjs +61 -0
- package/colors/utils/misc.js +8 -0
- package/colors/utils/misc.mjs +12 -0
- package/colors/utils/svg-calc.js +8 -0
- package/colors/utils/svg-calc.mjs +25 -0
- package/dist/cdn/js/kendo-vue-inputs.js +8 -1
- package/index.d.mts +5418 -0
- package/index.d.ts +5418 -0
- package/index.js +8 -0
- package/index.mjs +51 -0
- package/input/Input.js +8 -0
- package/input/Input.mjs +289 -0
- package/input-separator/InputSeparator.js +8 -0
- package/input-separator/InputSeparator.mjs +23 -0
- package/maskedtextbox/MaskedTextBox.js +8 -0
- package/maskedtextbox/MaskedTextBox.mjs +386 -0
- package/maskedtextbox/masking.service.js +8 -0
- package/maskedtextbox/masking.service.mjs +120 -0
- package/maskedtextbox/parsing/combinators.js +8 -0
- package/maskedtextbox/parsing/combinators.mjs +19 -0
- package/maskedtextbox/parsing/parsers.js +8 -0
- package/maskedtextbox/parsing/parsers.mjs +77 -0
- package/maskedtextbox/parsing/result.js +8 -0
- package/maskedtextbox/parsing/result.mjs +34 -0
- package/maskedtextbox/parsing/stream.js +8 -0
- package/maskedtextbox/parsing/stream.mjs +40 -0
- package/maskedtextbox/utils.js +8 -0
- package/maskedtextbox/utils.mjs +42 -0
- package/messages/main.js +9 -0
- package/messages/main.mjs +91 -0
- package/numerictextbox/NumericTextBox.js +8 -0
- package/numerictextbox/NumericTextBox.mjs +428 -0
- package/numerictextbox/utils/main.js +8 -0
- package/numerictextbox/utils/main.mjs +180 -0
- package/package-metadata.js +8 -0
- package/package-metadata.mjs +18 -0
- package/package.json +22 -57
- package/radiobutton/RadioButton.js +8 -0
- package/radiobutton/RadioButton.mjs +157 -0
- package/radiobutton/RadioGroup.js +8 -0
- package/radiobutton/RadioGroup.mjs +158 -0
- package/range-slider/RangeSlider.js +8 -0
- package/range-slider/RangeSlider.mjs +392 -0
- package/range-slider/range-raducer.js +8 -0
- package/range-slider/range-raducer.mjs +91 -0
- package/rating/Rating.js +8 -0
- package/rating/Rating.mjs +306 -0
- package/rating/RatingItem.js +8 -0
- package/rating/RatingItem.mjs +209 -0
- package/rating/utils/main.js +8 -0
- package/rating/utils/main.mjs +21 -0
- package/rating/utils/rating-reducer.js +8 -0
- package/rating/utils/rating-reducer.mjs +33 -0
- package/signature/Signature.js +8 -0
- package/signature/Signature.mjs +373 -0
- package/signature/SignatureBottomActions.js +8 -0
- package/signature/SignatureBottomActions.mjs +49 -0
- package/signature/SignatureCanvas.js +8 -0
- package/signature/SignatureCanvas.mjs +124 -0
- package/signature/SignatureDialog.js +8 -0
- package/signature/SignatureDialog.mjs +160 -0
- package/signature/SignatureLine.js +8 -0
- package/signature/SignatureLine.mjs +23 -0
- package/signature/utils/main.js +8 -0
- package/signature/utils/main.mjs +16 -0
- package/slider/Slider.js +8 -0
- package/slider/Slider.mjs +246 -0
- package/slider/SliderLabel.js +8 -0
- package/slider/SliderLabel.mjs +63 -0
- package/switch/Switch.js +8 -0
- package/switch/Switch.mjs +253 -0
- package/textarea/TextArea.js +8 -0
- package/textarea/TextArea.mjs +340 -0
- package/textarea/interfaces/TextAreaResize.js +8 -0
- package/textarea/interfaces/TextAreaResize.mjs +11 -0
- package/textbox/TextBox.js +8 -0
- package/textbox/TextBox.mjs +347 -0
- package/dist/es/additionalTypes.ts +0 -21
- package/dist/es/checkbox/Checkbox.d.ts +0 -79
- package/dist/es/checkbox/Checkbox.js +0 -363
- package/dist/es/checkbox/interfaces/CheckboxChangeEvent.d.ts +0 -9
- package/dist/es/checkbox/interfaces/CheckboxChangeEvent.js +0 -1
- package/dist/es/checkbox/interfaces/CheckboxFocusEvent.d.ts +0 -5
- package/dist/es/checkbox/interfaces/CheckboxFocusEvent.js +0 -1
- package/dist/es/checkbox/interfaces/CheckboxProps.d.ts +0 -114
- package/dist/es/checkbox/interfaces/CheckboxProps.js +0 -1
- package/dist/es/colors/ColorContrastLabels.d.ts +0 -49
- package/dist/es/colors/ColorContrastLabels.js +0 -109
- package/dist/es/colors/ColorContrastSvg.d.ts +0 -50
- package/dist/es/colors/ColorContrastSvg.js +0 -116
- package/dist/es/colors/ColorGradient.d.ts +0 -54
- package/dist/es/colors/ColorGradient.js +0 -503
- package/dist/es/colors/ColorInput.d.ts +0 -57
- package/dist/es/colors/ColorInput.js +0 -346
- package/dist/es/colors/ColorPalette.d.ts +0 -60
- package/dist/es/colors/ColorPalette.js +0 -322
- package/dist/es/colors/ColorPicker.d.ts +0 -57
- package/dist/es/colors/ColorPicker.js +0 -506
- package/dist/es/colors/FlatColorPicker.d.ts +0 -139
- package/dist/es/colors/FlatColorPicker.js +0 -594
- package/dist/es/colors/HexInput.d.ts +0 -52
- package/dist/es/colors/HexInput.js +0 -106
- package/dist/es/colors/Picker.d.ts +0 -46
- package/dist/es/colors/Picker.js +0 -107
- package/dist/es/colors/interfaces/ColorGradientChangeEvent.d.ts +0 -13
- package/dist/es/colors/interfaces/ColorGradientChangeEvent.js +0 -1
- package/dist/es/colors/interfaces/ColorGradientProps.d.ts +0 -68
- package/dist/es/colors/interfaces/ColorGradientProps.js +0 -1
- package/dist/es/colors/interfaces/ColorPaletteChangeEvent.d.ts +0 -13
- package/dist/es/colors/interfaces/ColorPaletteChangeEvent.js +0 -1
- package/dist/es/colors/interfaces/ColorPaletteProps.d.ts +0 -71
- package/dist/es/colors/interfaces/ColorPaletteProps.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerActiveColorClick.d.ts +0 -13
- package/dist/es/colors/interfaces/ColorPickerActiveColorClick.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerBlurEvent.d.ts +0 -9
- package/dist/es/colors/interfaces/ColorPickerBlurEvent.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerChangeEvent.d.ts +0 -17
- package/dist/es/colors/interfaces/ColorPickerChangeEvent.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerFocusEvent.d.ts +0 -9
- package/dist/es/colors/interfaces/ColorPickerFocusEvent.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerPaletteSettings.d.ts +0 -32
- package/dist/es/colors/interfaces/ColorPickerPaletteSettings.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerPopupSettings.d.ts +0 -14
- package/dist/es/colors/interfaces/ColorPickerPopupSettings.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerProps.d.ts +0 -179
- package/dist/es/colors/interfaces/ColorPickerProps.js +0 -1
- package/dist/es/colors/interfaces/ColorPickerView.d.ts +0 -10
- package/dist/es/colors/interfaces/ColorPickerView.js +0 -1
- package/dist/es/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +0 -13
- package/dist/es/colors/interfaces/FlatColorPickerViewChangeEvent.js +0 -1
- package/dist/es/colors/interfaces/PickerPopupSettings.d.ts +0 -14
- package/dist/es/colors/interfaces/PickerPopupSettings.js +0 -1
- package/dist/es/colors/interfaces/PickerProps.d.ts +0 -46
- package/dist/es/colors/interfaces/PickerProps.js +0 -1
- package/dist/es/colors/models/hsva.d.ts +0 -9
- package/dist/es/colors/models/hsva.js +0 -1
- package/dist/es/colors/models/output-format.d.ts +0 -4
- package/dist/es/colors/models/output-format.js +0 -1
- package/dist/es/colors/models/palette-presets.d.ts +0 -53
- package/dist/es/colors/models/palette-presets.js +0 -54
- package/dist/es/colors/models/rgb.d.ts +0 -8
- package/dist/es/colors/models/rgb.js +0 -1
- package/dist/es/colors/models/rgba.d.ts +0 -9
- package/dist/es/colors/models/rgba.js +0 -1
- package/dist/es/colors/models/table-cell.d.ts +0 -7
- package/dist/es/colors/models/table-cell.js +0 -1
- package/dist/es/colors/models/tile-size.d.ts +0 -11
- package/dist/es/colors/models/tile-size.js +0 -1
- package/dist/es/colors/utils/color-cache.d.ts +0 -43
- package/dist/es/colors/utils/color-cache.js +0 -75
- package/dist/es/colors/utils/color-palette.service.d.ts +0 -13
- package/dist/es/colors/utils/color-palette.service.js +0 -67
- package/dist/es/colors/utils/color-parser.d.ts +0 -71
- package/dist/es/colors/utils/color-parser.js +0 -145
- package/dist/es/colors/utils/misc.d.ts +0 -15
- package/dist/es/colors/utils/misc.js +0 -20
- package/dist/es/colors/utils/svg-calc.d.ts +0 -62
- package/dist/es/colors/utils/svg-calc.js +0 -103
- package/dist/es/input/Input.d.ts +0 -226
- package/dist/es/input/Input.js +0 -372
- package/dist/es/input-separator/InputSeparator.d.ts +0 -26
- package/dist/es/input-separator/InputSeparator.js +0 -40
- package/dist/es/interfaces/Direction.d.ts +0 -1
- package/dist/es/interfaces/Direction.js +0 -1
- package/dist/es/interfaces/ToggleBaseProps.d.ts +0 -8
- package/dist/es/interfaces/ToggleBaseProps.js +0 -1
- package/dist/es/main.d.ts +0 -44
- package/dist/es/main.js +0 -42
- package/dist/es/maskedtextbox/MaskedTextBox.d.ts +0 -76
- package/dist/es/maskedtextbox/MaskedTextBox.js +0 -524
- package/dist/es/maskedtextbox/MaskedTextBoxProps.d.ts +0 -220
- package/dist/es/maskedtextbox/MaskedTextBoxProps.js +0 -2
- package/dist/es/maskedtextbox/masking.service.d.ts +0 -41
- package/dist/es/maskedtextbox/masking.service.js +0 -206
- package/dist/es/maskedtextbox/parsing/combinators.d.ts +0 -9
- package/dist/es/maskedtextbox/parsing/combinators.js +0 -24
- package/dist/es/maskedtextbox/parsing/parsers.d.ts +0 -47
- package/dist/es/maskedtextbox/parsing/parsers.js +0 -154
- package/dist/es/maskedtextbox/parsing/result.d.ts +0 -23
- package/dist/es/maskedtextbox/parsing/result.js +0 -39
- package/dist/es/maskedtextbox/parsing/stream.d.ts +0 -22
- package/dist/es/maskedtextbox/parsing/stream.js +0 -41
- package/dist/es/maskedtextbox/utils.d.ts +0 -16
- package/dist/es/maskedtextbox/utils.js +0 -56
- package/dist/es/messages/main.d.ts +0 -200
- package/dist/es/messages/main.js +0 -201
- package/dist/es/numerictextbox/NumericTextBox.d.ts +0 -87
- package/dist/es/numerictextbox/NumericTextBox.js +0 -690
- package/dist/es/numerictextbox/interfaces/NumericTextBoxData.d.ts +0 -15
- package/dist/es/numerictextbox/interfaces/NumericTextBoxData.js +0 -1
- package/dist/es/numerictextbox/interfaces/NumericTextBoxProps.d.ts +0 -180
- package/dist/es/numerictextbox/interfaces/NumericTextBoxProps.js +0 -1
- package/dist/es/numerictextbox/utils/main.d.ts +0 -119
- package/dist/es/numerictextbox/utils/main.js +0 -547
- package/dist/es/package-metadata.d.ts +0 -5
- package/dist/es/package-metadata.js +0 -11
- package/dist/es/radiobutton/RadioButton.d.ts +0 -55
- package/dist/es/radiobutton/RadioButton.js +0 -194
- package/dist/es/radiobutton/RadioGroup.d.ts +0 -57
- package/dist/es/radiobutton/RadioGroup.js +0 -217
- package/dist/es/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +0 -5
- package/dist/es/radiobutton/interfaces/RadioButtonBlurEvent.js +0 -1
- package/dist/es/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +0 -9
- package/dist/es/radiobutton/interfaces/RadioButtonChangeEvent.js +0 -1
- package/dist/es/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +0 -5
- package/dist/es/radiobutton/interfaces/RadioButtonFocusEvent.js +0 -1
- package/dist/es/radiobutton/interfaces/RadioButtonProps.d.ts +0 -112
- package/dist/es/radiobutton/interfaces/RadioButtonProps.js +0 -1
- package/dist/es/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +0 -9
- package/dist/es/radiobutton/interfaces/RadioGroupChangeEvent.js +0 -1
- package/dist/es/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +0 -5
- package/dist/es/radiobutton/interfaces/RadioGroupFocusEvent.js +0 -1
- package/dist/es/radiobutton/interfaces/RadioGroupProps.d.ts +0 -81
- package/dist/es/radiobutton/interfaces/RadioGroupProps.js +0 -1
- package/dist/es/range-slider/RangeSlider.d.ts +0 -176
- package/dist/es/range-slider/RangeSlider.js +0 -600
- package/dist/es/range-slider/range-raducer.d.ts +0 -35
- package/dist/es/range-slider/range-raducer.js +0 -131
- package/dist/es/rating/Rating.d.ts +0 -61
- package/dist/es/rating/Rating.js +0 -400
- package/dist/es/rating/RatingItem.d.ts +0 -46
- package/dist/es/rating/RatingItem.js +0 -272
- package/dist/es/rating/interfaces/RatingEvents.d.ts +0 -47
- package/dist/es/rating/interfaces/RatingEvents.js +0 -1
- package/dist/es/rating/interfaces/RatingItemProps.d.ts +0 -92
- package/dist/es/rating/interfaces/RatingItemProps.js +0 -1
- package/dist/es/rating/interfaces/RatingProps.d.ts +0 -116
- package/dist/es/rating/interfaces/RatingProps.js +0 -1
- package/dist/es/rating/utils/main.d.ts +0 -24
- package/dist/es/rating/utils/main.js +0 -60
- package/dist/es/rating/utils/rating-reducer.d.ts +0 -32
- package/dist/es/rating/utils/rating-reducer.js +0 -63
- package/dist/es/signature/Signature.d.ts +0 -39
- package/dist/es/signature/Signature.js +0 -658
- package/dist/es/signature/SignatureBottomActions.d.ts +0 -45
- package/dist/es/signature/SignatureBottomActions.js +0 -73
- package/dist/es/signature/SignatureCanvas.d.ts +0 -39
- package/dist/es/signature/SignatureCanvas.js +0 -147
- package/dist/es/signature/SignatureDialog.d.ts +0 -54
- package/dist/es/signature/SignatureDialog.js +0 -306
- package/dist/es/signature/SignatureLine.d.ts +0 -42
- package/dist/es/signature/SignatureLine.js +0 -33
- package/dist/es/signature/interfaces/SignatureBlurEvent.d.ts +0 -5
- package/dist/es/signature/interfaces/SignatureBlurEvent.js +0 -1
- package/dist/es/signature/interfaces/SignatureCanvasProps.d.ts +0 -16
- package/dist/es/signature/interfaces/SignatureCanvasProps.js +0 -1
- package/dist/es/signature/interfaces/SignatureChangeEvent.d.ts +0 -9
- package/dist/es/signature/interfaces/SignatureChangeEvent.js +0 -1
- package/dist/es/signature/interfaces/SignatureCloseEvent.d.ts +0 -5
- package/dist/es/signature/interfaces/SignatureCloseEvent.js +0 -1
- package/dist/es/signature/interfaces/SignatureFocusEvent.d.ts +0 -5
- package/dist/es/signature/interfaces/SignatureFocusEvent.js +0 -1
- package/dist/es/signature/interfaces/SignatureHandle.d.ts +0 -42
- package/dist/es/signature/interfaces/SignatureHandle.js +0 -1
- package/dist/es/signature/interfaces/SignatureOpenEvent.d.ts +0 -5
- package/dist/es/signature/interfaces/SignatureOpenEvent.js +0 -1
- package/dist/es/signature/interfaces/SignatureProps.d.ts +0 -192
- package/dist/es/signature/interfaces/SignatureProps.js +0 -1
- package/dist/es/signature/interfaces/main.d.ts +0 -7
- package/dist/es/signature/interfaces/main.js +0 -1
- package/dist/es/signature/utils/main.d.ts +0 -4
- package/dist/es/signature/utils/main.js +0 -10
- package/dist/es/slider/Slider.d.ts +0 -140
- package/dist/es/slider/Slider.js +0 -403
- package/dist/es/slider/SliderLabel.d.ts +0 -65
- package/dist/es/slider/SliderLabel.js +0 -107
- package/dist/es/switch/Switch.d.ts +0 -181
- package/dist/es/switch/Switch.js +0 -327
- package/dist/es/switch/util.d.ts +0 -8
- package/dist/es/switch/util.js +0 -46
- package/dist/es/textarea/TextArea.d.ts +0 -80
- package/dist/es/textarea/TextArea.js +0 -444
- package/dist/es/textarea/interfaces/TextAreaBlurEvent.d.ts +0 -5
- package/dist/es/textarea/interfaces/TextAreaBlurEvent.js +0 -1
- package/dist/es/textarea/interfaces/TextAreaChangeEvent.d.ts +0 -9
- package/dist/es/textarea/interfaces/TextAreaChangeEvent.js +0 -1
- package/dist/es/textarea/interfaces/TextAreaFlow.d.ts +0 -8
- package/dist/es/textarea/interfaces/TextAreaFlow.js +0 -1
- package/dist/es/textarea/interfaces/TextAreaFocusEvent.d.ts +0 -5
- package/dist/es/textarea/interfaces/TextAreaFocusEvent.js +0 -1
- package/dist/es/textarea/interfaces/TextAreaProps.d.ts +0 -185
- package/dist/es/textarea/interfaces/TextAreaProps.js +0 -1
- package/dist/es/textarea/interfaces/TextAreaResize.d.ts +0 -31
- package/dist/es/textarea/interfaces/TextAreaResize.js +0 -22
- package/dist/es/textbox/TextBox.d.ts +0 -211
- package/dist/es/textbox/TextBox.js +0 -447
- package/dist/esm/additionalTypes.ts +0 -21
- package/dist/esm/checkbox/Checkbox.d.ts +0 -79
- package/dist/esm/checkbox/Checkbox.js +0 -363
- package/dist/esm/checkbox/interfaces/CheckboxChangeEvent.d.ts +0 -9
- package/dist/esm/checkbox/interfaces/CheckboxChangeEvent.js +0 -1
- package/dist/esm/checkbox/interfaces/CheckboxFocusEvent.d.ts +0 -5
- package/dist/esm/checkbox/interfaces/CheckboxFocusEvent.js +0 -1
- package/dist/esm/checkbox/interfaces/CheckboxProps.d.ts +0 -114
- package/dist/esm/checkbox/interfaces/CheckboxProps.js +0 -1
- package/dist/esm/colors/ColorContrastLabels.d.ts +0 -49
- package/dist/esm/colors/ColorContrastLabels.js +0 -109
- package/dist/esm/colors/ColorContrastSvg.d.ts +0 -50
- package/dist/esm/colors/ColorContrastSvg.js +0 -116
- package/dist/esm/colors/ColorGradient.d.ts +0 -54
- package/dist/esm/colors/ColorGradient.js +0 -503
- package/dist/esm/colors/ColorInput.d.ts +0 -57
- package/dist/esm/colors/ColorInput.js +0 -346
- package/dist/esm/colors/ColorPalette.d.ts +0 -60
- package/dist/esm/colors/ColorPalette.js +0 -322
- package/dist/esm/colors/ColorPicker.d.ts +0 -57
- package/dist/esm/colors/ColorPicker.js +0 -506
- package/dist/esm/colors/FlatColorPicker.d.ts +0 -139
- package/dist/esm/colors/FlatColorPicker.js +0 -594
- package/dist/esm/colors/HexInput.d.ts +0 -52
- package/dist/esm/colors/HexInput.js +0 -106
- package/dist/esm/colors/Picker.d.ts +0 -46
- package/dist/esm/colors/Picker.js +0 -107
- package/dist/esm/colors/interfaces/ColorGradientChangeEvent.d.ts +0 -13
- package/dist/esm/colors/interfaces/ColorGradientChangeEvent.js +0 -1
- package/dist/esm/colors/interfaces/ColorGradientProps.d.ts +0 -68
- package/dist/esm/colors/interfaces/ColorGradientProps.js +0 -1
- package/dist/esm/colors/interfaces/ColorPaletteChangeEvent.d.ts +0 -13
- package/dist/esm/colors/interfaces/ColorPaletteChangeEvent.js +0 -1
- package/dist/esm/colors/interfaces/ColorPaletteProps.d.ts +0 -71
- package/dist/esm/colors/interfaces/ColorPaletteProps.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerActiveColorClick.d.ts +0 -13
- package/dist/esm/colors/interfaces/ColorPickerActiveColorClick.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerBlurEvent.d.ts +0 -9
- package/dist/esm/colors/interfaces/ColorPickerBlurEvent.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerChangeEvent.d.ts +0 -17
- package/dist/esm/colors/interfaces/ColorPickerChangeEvent.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerFocusEvent.d.ts +0 -9
- package/dist/esm/colors/interfaces/ColorPickerFocusEvent.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerPaletteSettings.d.ts +0 -32
- package/dist/esm/colors/interfaces/ColorPickerPaletteSettings.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerPopupSettings.d.ts +0 -14
- package/dist/esm/colors/interfaces/ColorPickerPopupSettings.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerProps.d.ts +0 -179
- package/dist/esm/colors/interfaces/ColorPickerProps.js +0 -1
- package/dist/esm/colors/interfaces/ColorPickerView.d.ts +0 -10
- package/dist/esm/colors/interfaces/ColorPickerView.js +0 -1
- package/dist/esm/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +0 -13
- package/dist/esm/colors/interfaces/FlatColorPickerViewChangeEvent.js +0 -1
- package/dist/esm/colors/interfaces/PickerPopupSettings.d.ts +0 -14
- package/dist/esm/colors/interfaces/PickerPopupSettings.js +0 -1
- package/dist/esm/colors/interfaces/PickerProps.d.ts +0 -46
- package/dist/esm/colors/interfaces/PickerProps.js +0 -1
- package/dist/esm/colors/models/hsva.d.ts +0 -9
- package/dist/esm/colors/models/hsva.js +0 -1
- package/dist/esm/colors/models/output-format.d.ts +0 -4
- package/dist/esm/colors/models/output-format.js +0 -1
- package/dist/esm/colors/models/palette-presets.d.ts +0 -53
- package/dist/esm/colors/models/palette-presets.js +0 -54
- package/dist/esm/colors/models/rgb.d.ts +0 -8
- package/dist/esm/colors/models/rgb.js +0 -1
- package/dist/esm/colors/models/rgba.d.ts +0 -9
- package/dist/esm/colors/models/rgba.js +0 -1
- package/dist/esm/colors/models/table-cell.d.ts +0 -7
- package/dist/esm/colors/models/table-cell.js +0 -1
- package/dist/esm/colors/models/tile-size.d.ts +0 -11
- package/dist/esm/colors/models/tile-size.js +0 -1
- package/dist/esm/colors/utils/color-cache.d.ts +0 -43
- package/dist/esm/colors/utils/color-cache.js +0 -75
- package/dist/esm/colors/utils/color-palette.service.d.ts +0 -13
- package/dist/esm/colors/utils/color-palette.service.js +0 -67
- package/dist/esm/colors/utils/color-parser.d.ts +0 -71
- package/dist/esm/colors/utils/color-parser.js +0 -145
- package/dist/esm/colors/utils/misc.d.ts +0 -15
- package/dist/esm/colors/utils/misc.js +0 -20
- package/dist/esm/colors/utils/svg-calc.d.ts +0 -62
- package/dist/esm/colors/utils/svg-calc.js +0 -103
- package/dist/esm/input/Input.d.ts +0 -226
- package/dist/esm/input/Input.js +0 -372
- package/dist/esm/input-separator/InputSeparator.d.ts +0 -26
- package/dist/esm/input-separator/InputSeparator.js +0 -40
- package/dist/esm/interfaces/Direction.d.ts +0 -1
- package/dist/esm/interfaces/Direction.js +0 -1
- package/dist/esm/interfaces/ToggleBaseProps.d.ts +0 -8
- package/dist/esm/interfaces/ToggleBaseProps.js +0 -1
- package/dist/esm/main.d.ts +0 -44
- package/dist/esm/main.js +0 -42
- package/dist/esm/maskedtextbox/MaskedTextBox.d.ts +0 -76
- package/dist/esm/maskedtextbox/MaskedTextBox.js +0 -524
- package/dist/esm/maskedtextbox/MaskedTextBoxProps.d.ts +0 -220
- package/dist/esm/maskedtextbox/MaskedTextBoxProps.js +0 -2
- package/dist/esm/maskedtextbox/masking.service.d.ts +0 -41
- package/dist/esm/maskedtextbox/masking.service.js +0 -206
- package/dist/esm/maskedtextbox/parsing/combinators.d.ts +0 -9
- package/dist/esm/maskedtextbox/parsing/combinators.js +0 -24
- package/dist/esm/maskedtextbox/parsing/parsers.d.ts +0 -47
- package/dist/esm/maskedtextbox/parsing/parsers.js +0 -154
- package/dist/esm/maskedtextbox/parsing/result.d.ts +0 -23
- package/dist/esm/maskedtextbox/parsing/result.js +0 -39
- package/dist/esm/maskedtextbox/parsing/stream.d.ts +0 -22
- package/dist/esm/maskedtextbox/parsing/stream.js +0 -41
- package/dist/esm/maskedtextbox/utils.d.ts +0 -16
- package/dist/esm/maskedtextbox/utils.js +0 -56
- package/dist/esm/messages/main.d.ts +0 -200
- package/dist/esm/messages/main.js +0 -201
- package/dist/esm/numerictextbox/NumericTextBox.d.ts +0 -87
- package/dist/esm/numerictextbox/NumericTextBox.js +0 -690
- package/dist/esm/numerictextbox/interfaces/NumericTextBoxData.d.ts +0 -15
- package/dist/esm/numerictextbox/interfaces/NumericTextBoxData.js +0 -1
- package/dist/esm/numerictextbox/interfaces/NumericTextBoxProps.d.ts +0 -180
- package/dist/esm/numerictextbox/interfaces/NumericTextBoxProps.js +0 -1
- package/dist/esm/numerictextbox/utils/main.d.ts +0 -119
- package/dist/esm/numerictextbox/utils/main.js +0 -547
- package/dist/esm/package-metadata.d.ts +0 -5
- package/dist/esm/package-metadata.js +0 -11
- package/dist/esm/package.json +0 -3
- package/dist/esm/radiobutton/RadioButton.d.ts +0 -55
- package/dist/esm/radiobutton/RadioButton.js +0 -194
- package/dist/esm/radiobutton/RadioGroup.d.ts +0 -57
- package/dist/esm/radiobutton/RadioGroup.js +0 -217
- package/dist/esm/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +0 -5
- package/dist/esm/radiobutton/interfaces/RadioButtonBlurEvent.js +0 -1
- package/dist/esm/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +0 -9
- package/dist/esm/radiobutton/interfaces/RadioButtonChangeEvent.js +0 -1
- package/dist/esm/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +0 -5
- package/dist/esm/radiobutton/interfaces/RadioButtonFocusEvent.js +0 -1
- package/dist/esm/radiobutton/interfaces/RadioButtonProps.d.ts +0 -112
- package/dist/esm/radiobutton/interfaces/RadioButtonProps.js +0 -1
- package/dist/esm/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +0 -9
- package/dist/esm/radiobutton/interfaces/RadioGroupChangeEvent.js +0 -1
- package/dist/esm/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +0 -5
- package/dist/esm/radiobutton/interfaces/RadioGroupFocusEvent.js +0 -1
- package/dist/esm/radiobutton/interfaces/RadioGroupProps.d.ts +0 -81
- package/dist/esm/radiobutton/interfaces/RadioGroupProps.js +0 -1
- package/dist/esm/range-slider/RangeSlider.d.ts +0 -176
- package/dist/esm/range-slider/RangeSlider.js +0 -600
- package/dist/esm/range-slider/range-raducer.d.ts +0 -35
- package/dist/esm/range-slider/range-raducer.js +0 -131
- package/dist/esm/rating/Rating.d.ts +0 -61
- package/dist/esm/rating/Rating.js +0 -400
- package/dist/esm/rating/RatingItem.d.ts +0 -46
- package/dist/esm/rating/RatingItem.js +0 -272
- package/dist/esm/rating/interfaces/RatingEvents.d.ts +0 -47
- package/dist/esm/rating/interfaces/RatingEvents.js +0 -1
- package/dist/esm/rating/interfaces/RatingItemProps.d.ts +0 -92
- package/dist/esm/rating/interfaces/RatingItemProps.js +0 -1
- package/dist/esm/rating/interfaces/RatingProps.d.ts +0 -116
- package/dist/esm/rating/interfaces/RatingProps.js +0 -1
- package/dist/esm/rating/utils/main.d.ts +0 -24
- package/dist/esm/rating/utils/main.js +0 -60
- package/dist/esm/rating/utils/rating-reducer.d.ts +0 -32
- package/dist/esm/rating/utils/rating-reducer.js +0 -63
- package/dist/esm/signature/Signature.d.ts +0 -39
- package/dist/esm/signature/Signature.js +0 -658
- package/dist/esm/signature/SignatureBottomActions.d.ts +0 -45
- package/dist/esm/signature/SignatureBottomActions.js +0 -73
- package/dist/esm/signature/SignatureCanvas.d.ts +0 -39
- package/dist/esm/signature/SignatureCanvas.js +0 -147
- package/dist/esm/signature/SignatureDialog.d.ts +0 -54
- package/dist/esm/signature/SignatureDialog.js +0 -306
- package/dist/esm/signature/SignatureLine.d.ts +0 -42
- package/dist/esm/signature/SignatureLine.js +0 -33
- package/dist/esm/signature/interfaces/SignatureBlurEvent.d.ts +0 -5
- package/dist/esm/signature/interfaces/SignatureBlurEvent.js +0 -1
- package/dist/esm/signature/interfaces/SignatureCanvasProps.d.ts +0 -16
- package/dist/esm/signature/interfaces/SignatureCanvasProps.js +0 -1
- package/dist/esm/signature/interfaces/SignatureChangeEvent.d.ts +0 -9
- package/dist/esm/signature/interfaces/SignatureChangeEvent.js +0 -1
- package/dist/esm/signature/interfaces/SignatureCloseEvent.d.ts +0 -5
- package/dist/esm/signature/interfaces/SignatureCloseEvent.js +0 -1
- package/dist/esm/signature/interfaces/SignatureFocusEvent.d.ts +0 -5
- package/dist/esm/signature/interfaces/SignatureFocusEvent.js +0 -1
- package/dist/esm/signature/interfaces/SignatureHandle.d.ts +0 -42
- package/dist/esm/signature/interfaces/SignatureHandle.js +0 -1
- package/dist/esm/signature/interfaces/SignatureOpenEvent.d.ts +0 -5
- package/dist/esm/signature/interfaces/SignatureOpenEvent.js +0 -1
- package/dist/esm/signature/interfaces/SignatureProps.d.ts +0 -192
- package/dist/esm/signature/interfaces/SignatureProps.js +0 -1
- package/dist/esm/signature/interfaces/main.d.ts +0 -7
- package/dist/esm/signature/interfaces/main.js +0 -1
- package/dist/esm/signature/utils/main.d.ts +0 -4
- package/dist/esm/signature/utils/main.js +0 -10
- package/dist/esm/slider/Slider.d.ts +0 -140
- package/dist/esm/slider/Slider.js +0 -403
- package/dist/esm/slider/SliderLabel.d.ts +0 -65
- package/dist/esm/slider/SliderLabel.js +0 -107
- package/dist/esm/switch/Switch.d.ts +0 -181
- package/dist/esm/switch/Switch.js +0 -327
- package/dist/esm/switch/util.d.ts +0 -8
- package/dist/esm/switch/util.js +0 -46
- package/dist/esm/textarea/TextArea.d.ts +0 -80
- package/dist/esm/textarea/TextArea.js +0 -444
- package/dist/esm/textarea/interfaces/TextAreaBlurEvent.d.ts +0 -5
- package/dist/esm/textarea/interfaces/TextAreaBlurEvent.js +0 -1
- package/dist/esm/textarea/interfaces/TextAreaChangeEvent.d.ts +0 -9
- package/dist/esm/textarea/interfaces/TextAreaChangeEvent.js +0 -1
- package/dist/esm/textarea/interfaces/TextAreaFlow.d.ts +0 -8
- package/dist/esm/textarea/interfaces/TextAreaFlow.js +0 -1
- package/dist/esm/textarea/interfaces/TextAreaFocusEvent.d.ts +0 -5
- package/dist/esm/textarea/interfaces/TextAreaFocusEvent.js +0 -1
- package/dist/esm/textarea/interfaces/TextAreaProps.d.ts +0 -185
- package/dist/esm/textarea/interfaces/TextAreaProps.js +0 -1
- package/dist/esm/textarea/interfaces/TextAreaResize.d.ts +0 -31
- package/dist/esm/textarea/interfaces/TextAreaResize.js +0 -22
- package/dist/esm/textbox/TextBox.d.ts +0 -211
- package/dist/esm/textbox/TextBox.js +0 -447
- package/dist/npm/additionalTypes.ts +0 -21
- package/dist/npm/checkbox/Checkbox.d.ts +0 -79
- package/dist/npm/checkbox/Checkbox.js +0 -370
- package/dist/npm/checkbox/interfaces/CheckboxChangeEvent.d.ts +0 -9
- package/dist/npm/checkbox/interfaces/CheckboxChangeEvent.js +0 -2
- package/dist/npm/checkbox/interfaces/CheckboxFocusEvent.d.ts +0 -5
- package/dist/npm/checkbox/interfaces/CheckboxFocusEvent.js +0 -2
- package/dist/npm/checkbox/interfaces/CheckboxProps.d.ts +0 -114
- package/dist/npm/checkbox/interfaces/CheckboxProps.js +0 -2
- package/dist/npm/colors/ColorContrastLabels.d.ts +0 -49
- package/dist/npm/colors/ColorContrastLabels.js +0 -116
- package/dist/npm/colors/ColorContrastSvg.d.ts +0 -50
- package/dist/npm/colors/ColorContrastSvg.js +0 -123
- package/dist/npm/colors/ColorGradient.d.ts +0 -54
- package/dist/npm/colors/ColorGradient.js +0 -510
- package/dist/npm/colors/ColorInput.d.ts +0 -57
- package/dist/npm/colors/ColorInput.js +0 -353
- package/dist/npm/colors/ColorPalette.d.ts +0 -60
- package/dist/npm/colors/ColorPalette.js +0 -329
- package/dist/npm/colors/ColorPicker.d.ts +0 -57
- package/dist/npm/colors/ColorPicker.js +0 -511
- package/dist/npm/colors/FlatColorPicker.d.ts +0 -139
- package/dist/npm/colors/FlatColorPicker.js +0 -601
- package/dist/npm/colors/HexInput.d.ts +0 -52
- package/dist/npm/colors/HexInput.js +0 -113
- package/dist/npm/colors/Picker.d.ts +0 -46
- package/dist/npm/colors/Picker.js +0 -114
- package/dist/npm/colors/interfaces/ColorGradientChangeEvent.d.ts +0 -13
- package/dist/npm/colors/interfaces/ColorGradientChangeEvent.js +0 -2
- package/dist/npm/colors/interfaces/ColorGradientProps.d.ts +0 -68
- package/dist/npm/colors/interfaces/ColorGradientProps.js +0 -2
- package/dist/npm/colors/interfaces/ColorPaletteChangeEvent.d.ts +0 -13
- package/dist/npm/colors/interfaces/ColorPaletteChangeEvent.js +0 -2
- package/dist/npm/colors/interfaces/ColorPaletteProps.d.ts +0 -71
- package/dist/npm/colors/interfaces/ColorPaletteProps.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerActiveColorClick.d.ts +0 -13
- package/dist/npm/colors/interfaces/ColorPickerActiveColorClick.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerBlurEvent.d.ts +0 -9
- package/dist/npm/colors/interfaces/ColorPickerBlurEvent.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerChangeEvent.d.ts +0 -17
- package/dist/npm/colors/interfaces/ColorPickerChangeEvent.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerFocusEvent.d.ts +0 -9
- package/dist/npm/colors/interfaces/ColorPickerFocusEvent.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerPaletteSettings.d.ts +0 -32
- package/dist/npm/colors/interfaces/ColorPickerPaletteSettings.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerPopupSettings.d.ts +0 -14
- package/dist/npm/colors/interfaces/ColorPickerPopupSettings.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerProps.d.ts +0 -179
- package/dist/npm/colors/interfaces/ColorPickerProps.js +0 -2
- package/dist/npm/colors/interfaces/ColorPickerView.d.ts +0 -10
- package/dist/npm/colors/interfaces/ColorPickerView.js +0 -2
- package/dist/npm/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +0 -13
- package/dist/npm/colors/interfaces/FlatColorPickerViewChangeEvent.js +0 -2
- package/dist/npm/colors/interfaces/PickerPopupSettings.d.ts +0 -14
- package/dist/npm/colors/interfaces/PickerPopupSettings.js +0 -2
- package/dist/npm/colors/interfaces/PickerProps.d.ts +0 -46
- package/dist/npm/colors/interfaces/PickerProps.js +0 -2
- package/dist/npm/colors/models/hsva.d.ts +0 -9
- package/dist/npm/colors/models/hsva.js +0 -2
- package/dist/npm/colors/models/output-format.d.ts +0 -4
- package/dist/npm/colors/models/output-format.js +0 -2
- package/dist/npm/colors/models/palette-presets.d.ts +0 -53
- package/dist/npm/colors/models/palette-presets.js +0 -57
- package/dist/npm/colors/models/rgb.d.ts +0 -8
- package/dist/npm/colors/models/rgb.js +0 -2
- package/dist/npm/colors/models/rgba.d.ts +0 -9
- package/dist/npm/colors/models/rgba.js +0 -2
- package/dist/npm/colors/models/table-cell.d.ts +0 -7
- package/dist/npm/colors/models/table-cell.js +0 -2
- package/dist/npm/colors/models/tile-size.d.ts +0 -11
- package/dist/npm/colors/models/tile-size.js +0 -2
- package/dist/npm/colors/utils/color-cache.d.ts +0 -43
- package/dist/npm/colors/utils/color-cache.js +0 -85
- package/dist/npm/colors/utils/color-palette.service.d.ts +0 -13
- package/dist/npm/colors/utils/color-palette.service.js +0 -70
- package/dist/npm/colors/utils/color-parser.d.ts +0 -71
- package/dist/npm/colors/utils/color-parser.js +0 -159
- package/dist/npm/colors/utils/misc.d.ts +0 -15
- package/dist/npm/colors/utils/misc.js +0 -25
- package/dist/npm/colors/utils/svg-calc.d.ts +0 -62
- package/dist/npm/colors/utils/svg-calc.js +0 -110
- package/dist/npm/input/Input.d.ts +0 -226
- package/dist/npm/input/Input.js +0 -379
- package/dist/npm/input-separator/InputSeparator.d.ts +0 -26
- package/dist/npm/input-separator/InputSeparator.js +0 -47
- package/dist/npm/interfaces/Direction.d.ts +0 -1
- package/dist/npm/interfaces/Direction.js +0 -2
- package/dist/npm/interfaces/ToggleBaseProps.d.ts +0 -8
- package/dist/npm/interfaces/ToggleBaseProps.js +0 -2
- package/dist/npm/main.d.ts +0 -44
- package/dist/npm/main.js +0 -63
- package/dist/npm/maskedtextbox/MaskedTextBox.d.ts +0 -76
- package/dist/npm/maskedtextbox/MaskedTextBox.js +0 -531
- package/dist/npm/maskedtextbox/MaskedTextBoxProps.d.ts +0 -220
- package/dist/npm/maskedtextbox/MaskedTextBoxProps.js +0 -3
- package/dist/npm/maskedtextbox/masking.service.d.ts +0 -41
- package/dist/npm/maskedtextbox/masking.service.js +0 -209
- package/dist/npm/maskedtextbox/parsing/combinators.d.ts +0 -9
- package/dist/npm/maskedtextbox/parsing/combinators.js +0 -29
- package/dist/npm/maskedtextbox/parsing/parsers.d.ts +0 -47
- package/dist/npm/maskedtextbox/parsing/parsers.js +0 -164
- package/dist/npm/maskedtextbox/parsing/result.d.ts +0 -23
- package/dist/npm/maskedtextbox/parsing/result.js +0 -42
- package/dist/npm/maskedtextbox/parsing/stream.d.ts +0 -22
- package/dist/npm/maskedtextbox/parsing/stream.js +0 -44
- package/dist/npm/maskedtextbox/utils.d.ts +0 -16
- package/dist/npm/maskedtextbox/utils.js +0 -61
- package/dist/npm/messages/main.d.ts +0 -200
- package/dist/npm/messages/main.js +0 -204
- package/dist/npm/numerictextbox/NumericTextBox.d.ts +0 -87
- package/dist/npm/numerictextbox/NumericTextBox.js +0 -697
- package/dist/npm/numerictextbox/interfaces/NumericTextBoxData.d.ts +0 -15
- package/dist/npm/numerictextbox/interfaces/NumericTextBoxData.js +0 -5
- package/dist/npm/numerictextbox/interfaces/NumericTextBoxProps.d.ts +0 -180
- package/dist/npm/numerictextbox/interfaces/NumericTextBoxProps.js +0 -5
- package/dist/npm/numerictextbox/utils/main.d.ts +0 -119
- package/dist/npm/numerictextbox/utils/main.js +0 -581
- package/dist/npm/package-metadata.d.ts +0 -5
- package/dist/npm/package-metadata.js +0 -14
- package/dist/npm/radiobutton/RadioButton.d.ts +0 -55
- package/dist/npm/radiobutton/RadioButton.js +0 -201
- package/dist/npm/radiobutton/RadioGroup.d.ts +0 -57
- package/dist/npm/radiobutton/RadioGroup.js +0 -224
- package/dist/npm/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +0 -5
- package/dist/npm/radiobutton/interfaces/RadioButtonBlurEvent.js +0 -2
- package/dist/npm/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +0 -9
- package/dist/npm/radiobutton/interfaces/RadioButtonChangeEvent.js +0 -2
- package/dist/npm/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +0 -5
- package/dist/npm/radiobutton/interfaces/RadioButtonFocusEvent.js +0 -2
- package/dist/npm/radiobutton/interfaces/RadioButtonProps.d.ts +0 -112
- package/dist/npm/radiobutton/interfaces/RadioButtonProps.js +0 -2
- package/dist/npm/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +0 -9
- package/dist/npm/radiobutton/interfaces/RadioGroupChangeEvent.js +0 -2
- package/dist/npm/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +0 -5
- package/dist/npm/radiobutton/interfaces/RadioGroupFocusEvent.js +0 -2
- package/dist/npm/radiobutton/interfaces/RadioGroupProps.d.ts +0 -81
- package/dist/npm/radiobutton/interfaces/RadioGroupProps.js +0 -2
- package/dist/npm/range-slider/RangeSlider.d.ts +0 -176
- package/dist/npm/range-slider/RangeSlider.js +0 -605
- package/dist/npm/range-slider/range-raducer.d.ts +0 -35
- package/dist/npm/range-slider/range-raducer.js +0 -138
- package/dist/npm/rating/Rating.d.ts +0 -61
- package/dist/npm/rating/Rating.js +0 -407
- package/dist/npm/rating/RatingItem.d.ts +0 -46
- package/dist/npm/rating/RatingItem.js +0 -279
- package/dist/npm/rating/interfaces/RatingEvents.d.ts +0 -47
- package/dist/npm/rating/interfaces/RatingEvents.js +0 -2
- package/dist/npm/rating/interfaces/RatingItemProps.d.ts +0 -92
- package/dist/npm/rating/interfaces/RatingItemProps.js +0 -2
- package/dist/npm/rating/interfaces/RatingProps.d.ts +0 -116
- package/dist/npm/rating/interfaces/RatingProps.js +0 -2
- package/dist/npm/rating/utils/main.d.ts +0 -24
- package/dist/npm/rating/utils/main.js +0 -72
- package/dist/npm/rating/utils/rating-reducer.d.ts +0 -32
- package/dist/npm/rating/utils/rating-reducer.js +0 -67
- package/dist/npm/signature/Signature.d.ts +0 -39
- package/dist/npm/signature/Signature.js +0 -665
- package/dist/npm/signature/SignatureBottomActions.d.ts +0 -45
- package/dist/npm/signature/SignatureBottomActions.js +0 -80
- package/dist/npm/signature/SignatureCanvas.d.ts +0 -39
- package/dist/npm/signature/SignatureCanvas.js +0 -154
- package/dist/npm/signature/SignatureDialog.d.ts +0 -54
- package/dist/npm/signature/SignatureDialog.js +0 -313
- package/dist/npm/signature/SignatureLine.d.ts +0 -42
- package/dist/npm/signature/SignatureLine.js +0 -40
- package/dist/npm/signature/interfaces/SignatureBlurEvent.d.ts +0 -5
- package/dist/npm/signature/interfaces/SignatureBlurEvent.js +0 -5
- package/dist/npm/signature/interfaces/SignatureCanvasProps.d.ts +0 -16
- package/dist/npm/signature/interfaces/SignatureCanvasProps.js +0 -5
- package/dist/npm/signature/interfaces/SignatureChangeEvent.d.ts +0 -9
- package/dist/npm/signature/interfaces/SignatureChangeEvent.js +0 -5
- package/dist/npm/signature/interfaces/SignatureCloseEvent.d.ts +0 -5
- package/dist/npm/signature/interfaces/SignatureCloseEvent.js +0 -5
- package/dist/npm/signature/interfaces/SignatureFocusEvent.d.ts +0 -5
- package/dist/npm/signature/interfaces/SignatureFocusEvent.js +0 -5
- package/dist/npm/signature/interfaces/SignatureHandle.d.ts +0 -42
- package/dist/npm/signature/interfaces/SignatureHandle.js +0 -5
- package/dist/npm/signature/interfaces/SignatureOpenEvent.d.ts +0 -5
- package/dist/npm/signature/interfaces/SignatureOpenEvent.js +0 -5
- package/dist/npm/signature/interfaces/SignatureProps.d.ts +0 -192
- package/dist/npm/signature/interfaces/SignatureProps.js +0 -5
- package/dist/npm/signature/interfaces/main.d.ts +0 -7
- package/dist/npm/signature/interfaces/main.js +0 -2
- package/dist/npm/signature/utils/main.d.ts +0 -4
- package/dist/npm/signature/utils/main.js +0 -14
- package/dist/npm/slider/Slider.d.ts +0 -140
- package/dist/npm/slider/Slider.js +0 -410
- package/dist/npm/slider/SliderLabel.d.ts +0 -65
- package/dist/npm/slider/SliderLabel.js +0 -114
- package/dist/npm/switch/Switch.d.ts +0 -181
- package/dist/npm/switch/Switch.js +0 -334
- package/dist/npm/switch/util.d.ts +0 -8
- package/dist/npm/switch/util.js +0 -50
- package/dist/npm/textarea/TextArea.d.ts +0 -80
- package/dist/npm/textarea/TextArea.js +0 -449
- package/dist/npm/textarea/interfaces/TextAreaBlurEvent.d.ts +0 -5
- package/dist/npm/textarea/interfaces/TextAreaBlurEvent.js +0 -2
- package/dist/npm/textarea/interfaces/TextAreaChangeEvent.d.ts +0 -9
- package/dist/npm/textarea/interfaces/TextAreaChangeEvent.js +0 -2
- package/dist/npm/textarea/interfaces/TextAreaFlow.d.ts +0 -8
- package/dist/npm/textarea/interfaces/TextAreaFlow.js +0 -2
- package/dist/npm/textarea/interfaces/TextAreaFocusEvent.d.ts +0 -5
- package/dist/npm/textarea/interfaces/TextAreaFocusEvent.js +0 -2
- package/dist/npm/textarea/interfaces/TextAreaProps.d.ts +0 -185
- package/dist/npm/textarea/interfaces/TextAreaProps.js +0 -5
- package/dist/npm/textarea/interfaces/TextAreaResize.d.ts +0 -31
- package/dist/npm/textarea/interfaces/TextAreaResize.js +0 -25
- package/dist/npm/textbox/TextBox.d.ts +0 -211
- package/dist/npm/textbox/TextBox.js +0 -454
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from '../additionalTypes';
|
|
2
|
-
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
3
|
-
declare type DefaultData<V> = object | ((this: V) => InputData);
|
|
4
|
-
declare type DefaultMethods<V> = {
|
|
5
|
-
[key: string]: (this: V, ...args: any[]) => any;
|
|
6
|
-
};
|
|
7
|
-
/**
|
|
8
|
-
* Represents the props of the [KendoVue Input component]({% slug overview_textbox %}).
|
|
9
|
-
* Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
|
10
|
-
*/
|
|
11
|
-
export interface InputProps extends FormComponentProps {
|
|
12
|
-
/**
|
|
13
|
-
* Renders a floating label for the Input component.
|
|
14
|
-
*/
|
|
15
|
-
id?: string;
|
|
16
|
-
label?: string;
|
|
17
|
-
value?: string | string[] | number;
|
|
18
|
-
modelValue?: string | number;
|
|
19
|
-
defaultValue?: string | string[] | number | undefined;
|
|
20
|
-
disabled?: boolean;
|
|
21
|
-
validate?: boolean;
|
|
22
|
-
/**
|
|
23
|
-
* Configures the `size` of the Input.
|
|
24
|
-
*
|
|
25
|
-
* The available options are:
|
|
26
|
-
* - small
|
|
27
|
-
* - medium
|
|
28
|
-
* - large
|
|
29
|
-
* - null—Does not set a size `class`.
|
|
30
|
-
*
|
|
31
|
-
* @default `medium`
|
|
32
|
-
*/
|
|
33
|
-
size?: null | 'small' | 'medium' | 'large' | string;
|
|
34
|
-
/**
|
|
35
|
-
* Configures the `roundness` of the Input.
|
|
36
|
-
*
|
|
37
|
-
* The available options are:
|
|
38
|
-
* - small
|
|
39
|
-
* - medium
|
|
40
|
-
* - large
|
|
41
|
-
* - full
|
|
42
|
-
* - null—Does not set a rounded `class`.
|
|
43
|
-
*
|
|
44
|
-
* @default `medium`
|
|
45
|
-
*/
|
|
46
|
-
rounded?: null | 'small' | 'medium' | 'large' | 'full' | string;
|
|
47
|
-
/**
|
|
48
|
-
* Configures the `fillMode` of the Input.
|
|
49
|
-
*
|
|
50
|
-
* The available options are:
|
|
51
|
-
* - solid
|
|
52
|
-
* - outline
|
|
53
|
-
* - flat
|
|
54
|
-
* - null—Does not set a fillMode `class`.
|
|
55
|
-
*
|
|
56
|
-
* @default `solid`
|
|
57
|
-
*/
|
|
58
|
-
fillMode?: null | 'solid' | 'flat' | 'outline' | string;
|
|
59
|
-
dir?: string;
|
|
60
|
-
/**
|
|
61
|
-
* Fires when the `change` event of the input is triggered.
|
|
62
|
-
*/
|
|
63
|
-
onChange?: (event: any) => void;
|
|
64
|
-
/**
|
|
65
|
-
* Fires when the `input` event of the input is triggered.
|
|
66
|
-
*/
|
|
67
|
-
onInput?: (event: any) => void;
|
|
68
|
-
/**
|
|
69
|
-
* Fires when the input is focused.
|
|
70
|
-
*/
|
|
71
|
-
onFocus?: (event: any) => void;
|
|
72
|
-
/**
|
|
73
|
-
* Fires when the input is blurred.
|
|
74
|
-
*/
|
|
75
|
-
onBlur?: (event: any) => void;
|
|
76
|
-
/**
|
|
77
|
-
* Fires when the 'keyup' input event is triggered.
|
|
78
|
-
*/
|
|
79
|
-
onKeyup?: (event: any) => void;
|
|
80
|
-
/**
|
|
81
|
-
* Fires when the 'keydown' input event is triggered.
|
|
82
|
-
*/
|
|
83
|
-
onKeydown?: (event: any) => void;
|
|
84
|
-
/**
|
|
85
|
-
* Fires when the 'keypress' input event is triggered.
|
|
86
|
-
*/
|
|
87
|
-
onKeypress?: (event: any) => void;
|
|
88
|
-
/**
|
|
89
|
-
* Specifies the placeholder of an `input` element. Used to define if the input is empty.
|
|
90
|
-
*/
|
|
91
|
-
placeholder?: string;
|
|
92
|
-
/**
|
|
93
|
-
* Defines a string prop that controls the input icon.
|
|
94
|
-
*
|
|
95
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
96
|
-
*/
|
|
97
|
-
iconName?: String;
|
|
98
|
-
/**
|
|
99
|
-
* Defines if the inputPrefix will be shown. Accepts a slot name, a `render` function, or a Vue component.
|
|
100
|
-
*
|
|
101
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
102
|
-
*/
|
|
103
|
-
inputPrefix?: Boolean | String | Object | Function;
|
|
104
|
-
/**
|
|
105
|
-
* Defines if the inputSuffix will be shown. Accepts a slot name, a `render` function, or a Vue component.
|
|
106
|
-
*
|
|
107
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
108
|
-
*/
|
|
109
|
-
inputSuffix?: Boolean | String | Object | Function;
|
|
110
|
-
/**
|
|
111
|
-
* Defines a boolean prop that controls whether to show the validation icon. Defaults to 'false'.
|
|
112
|
-
*
|
|
113
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
114
|
-
*/
|
|
115
|
-
showValidationIcon?: Boolean;
|
|
116
|
-
/**
|
|
117
|
-
* Defines a boolean prop that controls whether to show the loading icon. Defaults to 'false'.
|
|
118
|
-
*
|
|
119
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
120
|
-
*/
|
|
121
|
-
showLoadingIcon?: Boolean;
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* Defines a boolean prop that controls whether to show the clear icon. Defaults to 'false'.
|
|
125
|
-
*
|
|
126
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
127
|
-
*/
|
|
128
|
-
showClearButton?: Boolean;
|
|
129
|
-
/**
|
|
130
|
-
* Defines additional class to the wrapper element.
|
|
131
|
-
*
|
|
132
|
-
* @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
|
|
133
|
-
*/
|
|
134
|
-
wrapperClass?: String;
|
|
135
|
-
/**
|
|
136
|
-
* Defines tabindex to the input element.
|
|
137
|
-
*/
|
|
138
|
-
tabIndex?: Number;
|
|
139
|
-
/**
|
|
140
|
-
* Defines additional class to the input element.
|
|
141
|
-
*/
|
|
142
|
-
inputClass?: String;
|
|
143
|
-
/**
|
|
144
|
-
* Defines a string value that labels an interactive element.
|
|
145
|
-
*/
|
|
146
|
-
ariaLabel?: string;
|
|
147
|
-
/**
|
|
148
|
-
* Identifies the element(s) which will label the component.
|
|
149
|
-
*/
|
|
150
|
-
ariaDescribedBy?: string;
|
|
151
|
-
/**
|
|
152
|
-
* Defines a string value that labels an interactive element.
|
|
153
|
-
*/
|
|
154
|
-
ariaLabelledBy?: string;
|
|
155
|
-
/**
|
|
156
|
-
* Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
|
|
157
|
-
* * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `minlength`. Camel-case and kebap-case won't work in this scenario.
|
|
158
|
-
*/
|
|
159
|
-
minlength?: string;
|
|
160
|
-
/**
|
|
161
|
-
* Defines the built-in [maxlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength) property of the text inputs.
|
|
162
|
-
* * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `maxlength`. Camel-case and kebap-case won't work in this scenario.
|
|
163
|
-
*/
|
|
164
|
-
maxlength?: string;
|
|
165
|
-
}
|
|
166
|
-
/**
|
|
167
|
-
* @hidden
|
|
168
|
-
*/
|
|
169
|
-
export interface InputData {
|
|
170
|
-
hasMounted?: boolean;
|
|
171
|
-
autofill?: boolean;
|
|
172
|
-
currentValue?: string | string[] | number;
|
|
173
|
-
valueDuringOnChange?: string;
|
|
174
|
-
focused?: boolean;
|
|
175
|
-
}
|
|
176
|
-
/**
|
|
177
|
-
* @hidden
|
|
178
|
-
*/
|
|
179
|
-
export interface InputState {
|
|
180
|
-
inputRef: any;
|
|
181
|
-
_input: any;
|
|
182
|
-
_inputId?: string;
|
|
183
|
-
v3: boolean;
|
|
184
|
-
}
|
|
185
|
-
/**
|
|
186
|
-
* @hidden
|
|
187
|
-
*/
|
|
188
|
-
export interface InputMethods {
|
|
189
|
-
[key: string]: any;
|
|
190
|
-
emitBlur?: (_: any) => void;
|
|
191
|
-
emitFocus?: (_: any) => void;
|
|
192
|
-
focus?: () => void;
|
|
193
|
-
validity: () => any;
|
|
194
|
-
isInvalid: (state: any) => any;
|
|
195
|
-
setValidity: () => void;
|
|
196
|
-
handleInput?: () => void;
|
|
197
|
-
handleChange: (event: any) => void;
|
|
198
|
-
handleKeyup?: (event: any) => void;
|
|
199
|
-
handleKeydown?: (event: any) => void;
|
|
200
|
-
handleKeypress?: (event: any) => void;
|
|
201
|
-
handleAutoFill?: (e: any) => void;
|
|
202
|
-
handleAutoFillEnd?: (e: any) => void;
|
|
203
|
-
inputWrapperClass: () => any;
|
|
204
|
-
}
|
|
205
|
-
/**
|
|
206
|
-
* @hidden
|
|
207
|
-
*/
|
|
208
|
-
export interface InputComputed {
|
|
209
|
-
[key: string]: any;
|
|
210
|
-
computedValue?: any;
|
|
211
|
-
spanClassNames?: any;
|
|
212
|
-
}
|
|
213
|
-
/**
|
|
214
|
-
* @hidden
|
|
215
|
-
*/
|
|
216
|
-
export interface InputAllMethods extends Vue2type, InputMethods, InputComputed, InputState {
|
|
217
|
-
}
|
|
218
|
-
/**
|
|
219
|
-
* @hidden
|
|
220
|
-
*/
|
|
221
|
-
declare let InputVue2: ComponentOptions<InputAllMethods, DefaultData<InputData>, DefaultMethods<InputAllMethods>, InputComputed, RecordPropsDefinition<InputProps>>;
|
|
222
|
-
/**
|
|
223
|
-
* @hidden
|
|
224
|
-
*/
|
|
225
|
-
declare const Input: DefineComponent<InputProps, any, InputData, InputComputed, InputMethods, {}, {}, {}, string, InputProps, InputProps, {}>;
|
|
226
|
-
export { Input, InputVue2 };
|
package/dist/esm/input/Input.js
DELETED
|
@@ -1,372 +0,0 @@
|
|
|
1
|
-
var __assign = this && this.__assign || function () {
|
|
2
|
-
__assign = Object.assign || function (t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) {
|
|
6
|
-
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
|
-
// @ts-ignore
|
|
14
|
-
import * as Vue from 'vue';
|
|
15
|
-
var allVue = Vue;
|
|
16
|
-
var gh = allVue.h;
|
|
17
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
18
|
-
var ref = allVue.ref;
|
|
19
|
-
import { guid, validatePackage, kendoThemeMaps } from '@progress/kendo-vue-common';
|
|
20
|
-
import { packageMetadata } from '../package-metadata.js';
|
|
21
|
-
import { FloatingLabel } from '@progress/kendo-vue-labels';
|
|
22
|
-
/**
|
|
23
|
-
* @hidden
|
|
24
|
-
*/
|
|
25
|
-
var InputVue2 = {
|
|
26
|
-
model: {
|
|
27
|
-
event: 'changemodel'
|
|
28
|
-
},
|
|
29
|
-
// @ts-ignore
|
|
30
|
-
emits: {
|
|
31
|
-
'input': null,
|
|
32
|
-
'change': null,
|
|
33
|
-
'changemodel': null,
|
|
34
|
-
'update:modelValue': null,
|
|
35
|
-
'focus': null,
|
|
36
|
-
'blur': null,
|
|
37
|
-
'keyup': null,
|
|
38
|
-
'keydown': null,
|
|
39
|
-
'keypress': null
|
|
40
|
-
},
|
|
41
|
-
props: {
|
|
42
|
-
modelValue: {
|
|
43
|
-
type: [String, Number],
|
|
44
|
-
default: undefined
|
|
45
|
-
},
|
|
46
|
-
disabled: {
|
|
47
|
-
type: Boolean,
|
|
48
|
-
default: undefined
|
|
49
|
-
},
|
|
50
|
-
defaultValue: {
|
|
51
|
-
type: [String, Number],
|
|
52
|
-
default: ''
|
|
53
|
-
},
|
|
54
|
-
value: {
|
|
55
|
-
type: [String, Number]
|
|
56
|
-
},
|
|
57
|
-
label: {
|
|
58
|
-
type: String
|
|
59
|
-
},
|
|
60
|
-
placeholder: {
|
|
61
|
-
type: String
|
|
62
|
-
},
|
|
63
|
-
required: {
|
|
64
|
-
type: Boolean,
|
|
65
|
-
default: false
|
|
66
|
-
},
|
|
67
|
-
size: {
|
|
68
|
-
type: String,
|
|
69
|
-
default: 'medium',
|
|
70
|
-
validator: function validator(value) {
|
|
71
|
-
return [null, 'small', 'medium', 'large'].includes(value);
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
rounded: {
|
|
75
|
-
type: String,
|
|
76
|
-
default: 'medium',
|
|
77
|
-
validator: function validator(value) {
|
|
78
|
-
return [null, 'small', 'medium', 'large', 'full'].includes(value);
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
fillMode: {
|
|
82
|
-
type: String,
|
|
83
|
-
default: 'solid',
|
|
84
|
-
validator: function validator(value) {
|
|
85
|
-
return [null, 'solid', 'flat', 'outline'].includes(value);
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
dir: {
|
|
89
|
-
type: String
|
|
90
|
-
},
|
|
91
|
-
id: String,
|
|
92
|
-
valid: {
|
|
93
|
-
type: Boolean,
|
|
94
|
-
default: undefined
|
|
95
|
-
},
|
|
96
|
-
validate: {
|
|
97
|
-
type: Boolean
|
|
98
|
-
},
|
|
99
|
-
validationMessage: {
|
|
100
|
-
type: String
|
|
101
|
-
},
|
|
102
|
-
validityStyles: {
|
|
103
|
-
type: Boolean,
|
|
104
|
-
default: true
|
|
105
|
-
},
|
|
106
|
-
inputClass: String,
|
|
107
|
-
tabIndex: Number,
|
|
108
|
-
ariaLabel: String,
|
|
109
|
-
ariaLabelledBy: String,
|
|
110
|
-
ariaDescribedBy: String
|
|
111
|
-
},
|
|
112
|
-
data: function data() {
|
|
113
|
-
return {
|
|
114
|
-
hasMounted: false,
|
|
115
|
-
autofill: false,
|
|
116
|
-
currentValue: '',
|
|
117
|
-
valueDuringOnChange: '',
|
|
118
|
-
focused: false
|
|
119
|
-
};
|
|
120
|
-
},
|
|
121
|
-
created: function created() {
|
|
122
|
-
validatePackage(packageMetadata);
|
|
123
|
-
this._input = undefined;
|
|
124
|
-
this._inputId = guid();
|
|
125
|
-
this.$data.valueDuringOnChange = undefined;
|
|
126
|
-
this.$data.currentValue = this.$props.defaultValue;
|
|
127
|
-
},
|
|
128
|
-
mounted: function mounted() {
|
|
129
|
-
this._input = this.v3 ? this.inputRef : this.$refs.input;
|
|
130
|
-
this.$data.hasMounted = true;
|
|
131
|
-
this.setValidity();
|
|
132
|
-
},
|
|
133
|
-
updated: function updated() {
|
|
134
|
-
this.setValidity();
|
|
135
|
-
this.updateValidClass();
|
|
136
|
-
},
|
|
137
|
-
// @ts-ignore
|
|
138
|
-
setup: !isV3 ? undefined : function () {
|
|
139
|
-
var v3 = !!isV3;
|
|
140
|
-
var inputRef = ref(null);
|
|
141
|
-
return {
|
|
142
|
-
v3: v3,
|
|
143
|
-
inputRef: inputRef
|
|
144
|
-
};
|
|
145
|
-
},
|
|
146
|
-
render: function render(createElement) {
|
|
147
|
-
var _this = this;
|
|
148
|
-
var h = gh || createElement;
|
|
149
|
-
var isValid = !this.$props.validityStyles || this.validity().valid;
|
|
150
|
-
var _a = this.$props,
|
|
151
|
-
label = _a.label,
|
|
152
|
-
id = _a.id,
|
|
153
|
-
required = _a.required,
|
|
154
|
-
tabIndex = _a.tabIndex,
|
|
155
|
-
ariaLabel = _a.ariaLabel,
|
|
156
|
-
ariaLabelledBy = _a.ariaLabelledBy,
|
|
157
|
-
ariaDescribedBy = _a.ariaDescribedBy;
|
|
158
|
-
var inputId = id || this._inputId;
|
|
159
|
-
var textbox = h('input', __assign(__assign({
|
|
160
|
-
domProps: this.v3 ? null : __assign(__assign({}, this.$attrs), {
|
|
161
|
-
placeholder: this.$props.placeholder,
|
|
162
|
-
id: inputId,
|
|
163
|
-
required: required,
|
|
164
|
-
disabled: this.$props.disabled,
|
|
165
|
-
value: this.computedValue
|
|
166
|
-
}),
|
|
167
|
-
attrs: this.v3 ? undefined : __assign(__assign({}, this.$attrs), {
|
|
168
|
-
tabindex: tabIndex
|
|
169
|
-
})
|
|
170
|
-
}, this.$attrs), {
|
|
171
|
-
placeholder: this.$props.placeholder,
|
|
172
|
-
id: inputId,
|
|
173
|
-
tabindex: tabIndex,
|
|
174
|
-
required: required,
|
|
175
|
-
ariaLabel: ariaLabel,
|
|
176
|
-
ariaLabelledby: ariaLabelledBy,
|
|
177
|
-
ariaDescribedby: ariaDescribedBy,
|
|
178
|
-
ariaDisabled: this.$props.disabled,
|
|
179
|
-
disabled: this.$props.disabled,
|
|
180
|
-
value: this.computedValue,
|
|
181
|
-
class: this.inputInnerClass,
|
|
182
|
-
ref: this.v3 ? function (el) {
|
|
183
|
-
_this.inputRef = el;
|
|
184
|
-
} : 'input',
|
|
185
|
-
on: this.v3 ? null : {
|
|
186
|
-
change: this.handleChange,
|
|
187
|
-
focus: this.emitFocus,
|
|
188
|
-
blur: this.emitBlur,
|
|
189
|
-
keydown: this.handleKeydown,
|
|
190
|
-
keyup: this.handleKeyup,
|
|
191
|
-
keypress: this.handleKeypress,
|
|
192
|
-
input: this.handleInput,
|
|
193
|
-
animationstart: this.handleAutoFill,
|
|
194
|
-
animationend: this.handleAutoFillEnd
|
|
195
|
-
},
|
|
196
|
-
onKeydown: this.handleKeydown,
|
|
197
|
-
onKeyup: this.handleKeyup,
|
|
198
|
-
onKeypress: this.handleKeypress,
|
|
199
|
-
onChange: this.handleChange,
|
|
200
|
-
onFocus: this.emitFocus,
|
|
201
|
-
onBlur: this.emitBlur,
|
|
202
|
-
onInput: this.handleInput,
|
|
203
|
-
onAnimationstart: this.handleAutoFill,
|
|
204
|
-
onAnimationend: this.handleAutoFillEnd
|
|
205
|
-
}));
|
|
206
|
-
return label ?
|
|
207
|
-
// @ts-ignore function children
|
|
208
|
-
h(FloatingLabel, {
|
|
209
|
-
label: label,
|
|
210
|
-
attrs: this.v3 ? undefined : {
|
|
211
|
-
label: label,
|
|
212
|
-
editorId: inputId,
|
|
213
|
-
editorValue: this.computedValue,
|
|
214
|
-
editorValid: isValid,
|
|
215
|
-
editorDisabled: this.$props.disabled,
|
|
216
|
-
editorPlaceholder: this.$data.focused ? this.$props.placeholder : '',
|
|
217
|
-
dir: this.$props.dir
|
|
218
|
-
},
|
|
219
|
-
editorId: inputId,
|
|
220
|
-
editorValue: this.computedValue,
|
|
221
|
-
editorValid: isValid,
|
|
222
|
-
editorDisabled: this.$props.disabled,
|
|
223
|
-
editorPlaceholder: this.$data.focused ? this.$props.placeholder : '',
|
|
224
|
-
dir: this.$props.dir
|
|
225
|
-
}, this.v3 ? function () {
|
|
226
|
-
return [textbox];
|
|
227
|
-
} : [textbox]) : textbox;
|
|
228
|
-
},
|
|
229
|
-
methods: {
|
|
230
|
-
updateValidClass: function updateValidClass() {
|
|
231
|
-
this._input.classList.toggle('k-invalid', !this.validity().valid);
|
|
232
|
-
},
|
|
233
|
-
emitFocus: function emitFocus(e) {
|
|
234
|
-
this.$emit('focus', e);
|
|
235
|
-
this.$data.focused = true;
|
|
236
|
-
},
|
|
237
|
-
emitBlur: function emitBlur(e) {
|
|
238
|
-
this.$emit('blur', e);
|
|
239
|
-
this.$data.focused = false;
|
|
240
|
-
},
|
|
241
|
-
handleKeydown: function handleKeydown(e) {
|
|
242
|
-
this.$emit('keydown', e);
|
|
243
|
-
},
|
|
244
|
-
handleKeyup: function handleKeyup(e) {
|
|
245
|
-
this.$emit('keyup', e);
|
|
246
|
-
},
|
|
247
|
-
handleKeypress: function handleKeypress(e) {
|
|
248
|
-
this.$emit('keypress', e);
|
|
249
|
-
},
|
|
250
|
-
clearClick: function clearClick(event) {
|
|
251
|
-
this.emitUpdate(event, 'change', '');
|
|
252
|
-
},
|
|
253
|
-
focus: function focus() {
|
|
254
|
-
if (this._input) {
|
|
255
|
-
this._input.focus();
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
validity: function validity() {
|
|
259
|
-
var result = {
|
|
260
|
-
badInput: this._input ? this._input.validity.badInput : false,
|
|
261
|
-
patternMismatch: this._input ? this._input.validity.patternMismatch : false,
|
|
262
|
-
rangeOverflow: this._input ? this._input.validity.rangeOverflow : false,
|
|
263
|
-
rangeUnderflow: this._input ? this._input.validity.rangeUnderflow : false,
|
|
264
|
-
stepMismatch: this._input ? this._input.validity.stepMismatch : false,
|
|
265
|
-
tooLong: this._input ? this._input.validity.tooLong : false,
|
|
266
|
-
tooShort: this._input ? this._input.validity.tooShort : false,
|
|
267
|
-
typeMismatch: this._input ? this._input.validity.typeMismatch : false,
|
|
268
|
-
valueMissing: this._input ? this._input.validity.valueMissing : false
|
|
269
|
-
};
|
|
270
|
-
return __assign(__assign({}, result), {
|
|
271
|
-
customError: this.$props.validationMessage !== undefined,
|
|
272
|
-
valid: this.$props.valid !== undefined ? this.$props.valid : this._input ? !this.isInvalid(result) : true
|
|
273
|
-
});
|
|
274
|
-
},
|
|
275
|
-
isInvalid: function isInvalid(state) {
|
|
276
|
-
var result = false;
|
|
277
|
-
for (var prop in state) {
|
|
278
|
-
if (state.hasOwnProperty(prop)) {
|
|
279
|
-
result = result || state[prop];
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
return result;
|
|
283
|
-
},
|
|
284
|
-
setValidity: function setValidity() {
|
|
285
|
-
if (this._input && this._input.setCustomValidity) {
|
|
286
|
-
this._input.setCustomValidity(this.validity().valid ? '' : this.$props.validationMessage || '');
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
handleInput: function handleInput(event) {
|
|
290
|
-
this.emitUpdate(event, 'input', event.target.value);
|
|
291
|
-
},
|
|
292
|
-
handleChange: function handleChange(event) {
|
|
293
|
-
this.emitUpdate(event, 'change', event.target.value);
|
|
294
|
-
},
|
|
295
|
-
emitUpdate: function emitUpdate(event, eventName, value) {
|
|
296
|
-
var that = this;
|
|
297
|
-
if (this.disabled) {
|
|
298
|
-
return;
|
|
299
|
-
}
|
|
300
|
-
this.$data.currentValue = value;
|
|
301
|
-
this.$data.valueDuringOnChange = value;
|
|
302
|
-
this.$nextTick(function () {
|
|
303
|
-
that.$emit('changemodel', value);
|
|
304
|
-
that.$emit('update:modelValue', value);
|
|
305
|
-
that.$emit(eventName, {
|
|
306
|
-
event: event,
|
|
307
|
-
value: value,
|
|
308
|
-
component: that,
|
|
309
|
-
target: event.target,
|
|
310
|
-
validity: that.validity()
|
|
311
|
-
});
|
|
312
|
-
that.$data.valueDuringOnChange = undefined;
|
|
313
|
-
});
|
|
314
|
-
},
|
|
315
|
-
handleAutoFill: function handleAutoFill(e) {
|
|
316
|
-
if (e.animationName === 'autoFillStart') {
|
|
317
|
-
var parent_1 = e.target.parentNode;
|
|
318
|
-
if (parent_1 && parent_1.classList.contains('k-empty')) {
|
|
319
|
-
this.$data.autofill = true;
|
|
320
|
-
parent_1.classList.remove('k-empty');
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
},
|
|
324
|
-
handleAutoFillEnd: function handleAutoFillEnd(e) {
|
|
325
|
-
if (e.animationName === 'autoFillEnd') {
|
|
326
|
-
var parent_2 = e.target.parentNode;
|
|
327
|
-
if (parent_2) {
|
|
328
|
-
this.$data.autofill = false;
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
},
|
|
332
|
-
name: function name() {
|
|
333
|
-
return this.$props.name;
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
computed: {
|
|
337
|
-
spanClassNames: {
|
|
338
|
-
get: function get() {
|
|
339
|
-
var isValid = !this.$data.hasMounted || !this.$props.validityStyles || this.validity().valid;
|
|
340
|
-
return {
|
|
341
|
-
'k-floating-label-container': true,
|
|
342
|
-
'k-focus': this.$data.focused,
|
|
343
|
-
'k-empty': !((this.computedValue === 0 ? true : this.computedValue) || this.$props.placeholder || this.$data.autofill),
|
|
344
|
-
'k-autofill': this.$data.autofill,
|
|
345
|
-
'k-invalid': !isValid && isValid !== undefined,
|
|
346
|
-
'k-rtl': this.$props.dir === 'rtl'
|
|
347
|
-
};
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
inputInnerClass: function inputInnerClass() {
|
|
351
|
-
var _a;
|
|
352
|
-
var _b = this.$props,
|
|
353
|
-
size = _b.size,
|
|
354
|
-
fillMode = _b.fillMode,
|
|
355
|
-
rounded = _b.rounded;
|
|
356
|
-
var isValid = !this.$data.hasMounted || !this.$props.validityStyles || this.validity().valid;
|
|
357
|
-
return _a = {
|
|
358
|
-
'k-input': true
|
|
359
|
-
}, _a["k-input-".concat(kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-".concat(fillMode)] = fillMode, _a["k-rounded-".concat(kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a[this.inputClass] = this.inputClass, _a;
|
|
360
|
-
},
|
|
361
|
-
computedValue: {
|
|
362
|
-
get: function get() {
|
|
363
|
-
return this.$data.valueDuringOnChange !== undefined ? this.$data.valueDuringOnChange : this.$props.value !== undefined ? this.$props.value : this.$props.modelValue !== undefined ? this.$props.modelValue : this.$data.currentValue;
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
};
|
|
368
|
-
/**
|
|
369
|
-
* @hidden
|
|
370
|
-
*/
|
|
371
|
-
var Input = InputVue2;
|
|
372
|
-
export { Input, InputVue2 };
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from '../additionalTypes';
|
|
2
|
-
declare type DefaultData<V> = object | ((this: V) => {});
|
|
3
|
-
declare type DefaultMethods<V> = {
|
|
4
|
-
[key: string]: (this: V, ...args: any[]) => any;
|
|
5
|
-
};
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface InputSeparatorAllMethods extends Vue2type {
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* @hidden
|
|
13
|
-
*/
|
|
14
|
-
declare let InputSeparatorVue2: ComponentOptions<InputSeparatorAllMethods, DefaultData<{}>, DefaultMethods<InputSeparatorAllMethods>, {}, RecordPropsDefinition<{}>>;
|
|
15
|
-
/**
|
|
16
|
-
* Represents the Kendo UI for Vue InputSeparator component. It can be used as a semarator
|
|
17
|
-
* between horizontal icons in prefi and suffic templates.
|
|
18
|
-
*
|
|
19
|
-
* ```jsx
|
|
20
|
-
* <template>
|
|
21
|
-
* <InputSeparator>
|
|
22
|
-
* </template>
|
|
23
|
-
* ```
|
|
24
|
-
*/
|
|
25
|
-
declare const InputSeparator: DefineComponent<{}, any, {}, {}, {}, {}, {}, {}, string, {}, {}, {}>;
|
|
26
|
-
export { InputSeparator, InputSeparatorVue2 };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
// @ts-ignore
|
|
2
|
-
import * as Vue from 'vue';
|
|
3
|
-
var allVue = Vue;
|
|
4
|
-
var gh = allVue.h;
|
|
5
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
-
import { packageMetadata } from '../package-metadata.js';
|
|
7
|
-
import { validatePackage } from '@progress/kendo-vue-common';
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
var InputSeparatorVue2 = {
|
|
12
|
-
created: function created() {
|
|
13
|
-
validatePackage(packageMetadata);
|
|
14
|
-
},
|
|
15
|
-
// @ts-ignore
|
|
16
|
-
setup: !isV3 ? undefined : function () {
|
|
17
|
-
var v3 = !!isV3;
|
|
18
|
-
return {
|
|
19
|
-
v3: v3
|
|
20
|
-
};
|
|
21
|
-
},
|
|
22
|
-
render: function render(createElement) {
|
|
23
|
-
var h = gh || createElement;
|
|
24
|
-
return h("span", {
|
|
25
|
-
"class": 'k-input-separator'
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Represents the Kendo UI for Vue InputSeparator component. It can be used as a semarator
|
|
31
|
-
* between horizontal icons in prefi and suffic templates.
|
|
32
|
-
*
|
|
33
|
-
* ```jsx
|
|
34
|
-
* <template>
|
|
35
|
-
* <InputSeparator>
|
|
36
|
-
* </template>
|
|
37
|
-
* ```
|
|
38
|
-
*/
|
|
39
|
-
var InputSeparator = InputSeparatorVue2;
|
|
40
|
-
export { InputSeparator, InputSeparatorVue2 };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare type Direction = 'ltr' | 'rtl';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|