@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.
Files changed (733) hide show
  1. package/README.md +28 -38
  2. package/checkbox/Checkbox.js +8 -0
  3. package/checkbox/Checkbox.mjs +285 -0
  4. package/colors/ColorContrastLabels.js +8 -0
  5. package/colors/ColorContrastLabels.mjs +63 -0
  6. package/colors/ColorContrastSvg.js +8 -0
  7. package/colors/ColorContrastSvg.mjs +65 -0
  8. package/colors/ColorGradient.js +10 -0
  9. package/colors/ColorGradient.mjs +320 -0
  10. package/colors/ColorInput.js +8 -0
  11. package/colors/ColorInput.mjs +208 -0
  12. package/colors/ColorPalette.js +8 -0
  13. package/colors/ColorPalette.mjs +222 -0
  14. package/colors/ColorPicker.js +8 -0
  15. package/colors/ColorPicker.mjs +362 -0
  16. package/colors/FlatColorPicker.js +8 -0
  17. package/colors/FlatColorPicker.mjs +323 -0
  18. package/colors/HexInput.js +8 -0
  19. package/colors/HexInput.mjs +77 -0
  20. package/colors/Picker.js +8 -0
  21. package/colors/Picker.mjs +75 -0
  22. package/colors/models/palette-presets.js +8 -0
  23. package/colors/models/palette-presets.mjs +60 -0
  24. package/colors/utils/color-cache.js +8 -0
  25. package/colors/utils/color-cache.mjs +21 -0
  26. package/colors/utils/color-palette.service.js +8 -0
  27. package/colors/utils/color-palette.service.mjs +52 -0
  28. package/colors/utils/color-parser.js +8 -0
  29. package/colors/utils/color-parser.mjs +61 -0
  30. package/colors/utils/misc.js +8 -0
  31. package/colors/utils/misc.mjs +12 -0
  32. package/colors/utils/svg-calc.js +8 -0
  33. package/colors/utils/svg-calc.mjs +25 -0
  34. package/dist/cdn/js/kendo-vue-inputs.js +8 -1
  35. package/index.d.mts +5418 -0
  36. package/index.d.ts +5418 -0
  37. package/index.js +8 -0
  38. package/index.mjs +51 -0
  39. package/input/Input.js +8 -0
  40. package/input/Input.mjs +289 -0
  41. package/input-separator/InputSeparator.js +8 -0
  42. package/input-separator/InputSeparator.mjs +23 -0
  43. package/maskedtextbox/MaskedTextBox.js +8 -0
  44. package/maskedtextbox/MaskedTextBox.mjs +386 -0
  45. package/maskedtextbox/masking.service.js +8 -0
  46. package/maskedtextbox/masking.service.mjs +120 -0
  47. package/maskedtextbox/parsing/combinators.js +8 -0
  48. package/maskedtextbox/parsing/combinators.mjs +19 -0
  49. package/maskedtextbox/parsing/parsers.js +8 -0
  50. package/maskedtextbox/parsing/parsers.mjs +77 -0
  51. package/maskedtextbox/parsing/result.js +8 -0
  52. package/maskedtextbox/parsing/result.mjs +34 -0
  53. package/maskedtextbox/parsing/stream.js +8 -0
  54. package/maskedtextbox/parsing/stream.mjs +40 -0
  55. package/maskedtextbox/utils.js +8 -0
  56. package/maskedtextbox/utils.mjs +42 -0
  57. package/messages/main.js +9 -0
  58. package/messages/main.mjs +91 -0
  59. package/numerictextbox/NumericTextBox.js +8 -0
  60. package/numerictextbox/NumericTextBox.mjs +428 -0
  61. package/numerictextbox/utils/main.js +8 -0
  62. package/numerictextbox/utils/main.mjs +180 -0
  63. package/package-metadata.js +8 -0
  64. package/package-metadata.mjs +18 -0
  65. package/package.json +22 -57
  66. package/radiobutton/RadioButton.js +8 -0
  67. package/radiobutton/RadioButton.mjs +157 -0
  68. package/radiobutton/RadioGroup.js +8 -0
  69. package/radiobutton/RadioGroup.mjs +158 -0
  70. package/range-slider/RangeSlider.js +8 -0
  71. package/range-slider/RangeSlider.mjs +392 -0
  72. package/range-slider/range-raducer.js +8 -0
  73. package/range-slider/range-raducer.mjs +91 -0
  74. package/rating/Rating.js +8 -0
  75. package/rating/Rating.mjs +306 -0
  76. package/rating/RatingItem.js +8 -0
  77. package/rating/RatingItem.mjs +209 -0
  78. package/rating/utils/main.js +8 -0
  79. package/rating/utils/main.mjs +21 -0
  80. package/rating/utils/rating-reducer.js +8 -0
  81. package/rating/utils/rating-reducer.mjs +33 -0
  82. package/signature/Signature.js +8 -0
  83. package/signature/Signature.mjs +373 -0
  84. package/signature/SignatureBottomActions.js +8 -0
  85. package/signature/SignatureBottomActions.mjs +49 -0
  86. package/signature/SignatureCanvas.js +8 -0
  87. package/signature/SignatureCanvas.mjs +124 -0
  88. package/signature/SignatureDialog.js +8 -0
  89. package/signature/SignatureDialog.mjs +160 -0
  90. package/signature/SignatureLine.js +8 -0
  91. package/signature/SignatureLine.mjs +23 -0
  92. package/signature/utils/main.js +8 -0
  93. package/signature/utils/main.mjs +16 -0
  94. package/slider/Slider.js +8 -0
  95. package/slider/Slider.mjs +246 -0
  96. package/slider/SliderLabel.js +8 -0
  97. package/slider/SliderLabel.mjs +63 -0
  98. package/switch/Switch.js +8 -0
  99. package/switch/Switch.mjs +253 -0
  100. package/textarea/TextArea.js +8 -0
  101. package/textarea/TextArea.mjs +340 -0
  102. package/textarea/interfaces/TextAreaResize.js +8 -0
  103. package/textarea/interfaces/TextAreaResize.mjs +11 -0
  104. package/textbox/TextBox.js +8 -0
  105. package/textbox/TextBox.mjs +347 -0
  106. package/dist/es/additionalTypes.ts +0 -21
  107. package/dist/es/checkbox/Checkbox.d.ts +0 -79
  108. package/dist/es/checkbox/Checkbox.js +0 -363
  109. package/dist/es/checkbox/interfaces/CheckboxChangeEvent.d.ts +0 -9
  110. package/dist/es/checkbox/interfaces/CheckboxChangeEvent.js +0 -1
  111. package/dist/es/checkbox/interfaces/CheckboxFocusEvent.d.ts +0 -5
  112. package/dist/es/checkbox/interfaces/CheckboxFocusEvent.js +0 -1
  113. package/dist/es/checkbox/interfaces/CheckboxProps.d.ts +0 -114
  114. package/dist/es/checkbox/interfaces/CheckboxProps.js +0 -1
  115. package/dist/es/colors/ColorContrastLabels.d.ts +0 -49
  116. package/dist/es/colors/ColorContrastLabels.js +0 -109
  117. package/dist/es/colors/ColorContrastSvg.d.ts +0 -50
  118. package/dist/es/colors/ColorContrastSvg.js +0 -116
  119. package/dist/es/colors/ColorGradient.d.ts +0 -54
  120. package/dist/es/colors/ColorGradient.js +0 -503
  121. package/dist/es/colors/ColorInput.d.ts +0 -57
  122. package/dist/es/colors/ColorInput.js +0 -346
  123. package/dist/es/colors/ColorPalette.d.ts +0 -60
  124. package/dist/es/colors/ColorPalette.js +0 -322
  125. package/dist/es/colors/ColorPicker.d.ts +0 -57
  126. package/dist/es/colors/ColorPicker.js +0 -506
  127. package/dist/es/colors/FlatColorPicker.d.ts +0 -139
  128. package/dist/es/colors/FlatColorPicker.js +0 -594
  129. package/dist/es/colors/HexInput.d.ts +0 -52
  130. package/dist/es/colors/HexInput.js +0 -106
  131. package/dist/es/colors/Picker.d.ts +0 -46
  132. package/dist/es/colors/Picker.js +0 -107
  133. package/dist/es/colors/interfaces/ColorGradientChangeEvent.d.ts +0 -13
  134. package/dist/es/colors/interfaces/ColorGradientChangeEvent.js +0 -1
  135. package/dist/es/colors/interfaces/ColorGradientProps.d.ts +0 -68
  136. package/dist/es/colors/interfaces/ColorGradientProps.js +0 -1
  137. package/dist/es/colors/interfaces/ColorPaletteChangeEvent.d.ts +0 -13
  138. package/dist/es/colors/interfaces/ColorPaletteChangeEvent.js +0 -1
  139. package/dist/es/colors/interfaces/ColorPaletteProps.d.ts +0 -71
  140. package/dist/es/colors/interfaces/ColorPaletteProps.js +0 -1
  141. package/dist/es/colors/interfaces/ColorPickerActiveColorClick.d.ts +0 -13
  142. package/dist/es/colors/interfaces/ColorPickerActiveColorClick.js +0 -1
  143. package/dist/es/colors/interfaces/ColorPickerBlurEvent.d.ts +0 -9
  144. package/dist/es/colors/interfaces/ColorPickerBlurEvent.js +0 -1
  145. package/dist/es/colors/interfaces/ColorPickerChangeEvent.d.ts +0 -17
  146. package/dist/es/colors/interfaces/ColorPickerChangeEvent.js +0 -1
  147. package/dist/es/colors/interfaces/ColorPickerFocusEvent.d.ts +0 -9
  148. package/dist/es/colors/interfaces/ColorPickerFocusEvent.js +0 -1
  149. package/dist/es/colors/interfaces/ColorPickerPaletteSettings.d.ts +0 -32
  150. package/dist/es/colors/interfaces/ColorPickerPaletteSettings.js +0 -1
  151. package/dist/es/colors/interfaces/ColorPickerPopupSettings.d.ts +0 -14
  152. package/dist/es/colors/interfaces/ColorPickerPopupSettings.js +0 -1
  153. package/dist/es/colors/interfaces/ColorPickerProps.d.ts +0 -179
  154. package/dist/es/colors/interfaces/ColorPickerProps.js +0 -1
  155. package/dist/es/colors/interfaces/ColorPickerView.d.ts +0 -10
  156. package/dist/es/colors/interfaces/ColorPickerView.js +0 -1
  157. package/dist/es/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +0 -13
  158. package/dist/es/colors/interfaces/FlatColorPickerViewChangeEvent.js +0 -1
  159. package/dist/es/colors/interfaces/PickerPopupSettings.d.ts +0 -14
  160. package/dist/es/colors/interfaces/PickerPopupSettings.js +0 -1
  161. package/dist/es/colors/interfaces/PickerProps.d.ts +0 -46
  162. package/dist/es/colors/interfaces/PickerProps.js +0 -1
  163. package/dist/es/colors/models/hsva.d.ts +0 -9
  164. package/dist/es/colors/models/hsva.js +0 -1
  165. package/dist/es/colors/models/output-format.d.ts +0 -4
  166. package/dist/es/colors/models/output-format.js +0 -1
  167. package/dist/es/colors/models/palette-presets.d.ts +0 -53
  168. package/dist/es/colors/models/palette-presets.js +0 -54
  169. package/dist/es/colors/models/rgb.d.ts +0 -8
  170. package/dist/es/colors/models/rgb.js +0 -1
  171. package/dist/es/colors/models/rgba.d.ts +0 -9
  172. package/dist/es/colors/models/rgba.js +0 -1
  173. package/dist/es/colors/models/table-cell.d.ts +0 -7
  174. package/dist/es/colors/models/table-cell.js +0 -1
  175. package/dist/es/colors/models/tile-size.d.ts +0 -11
  176. package/dist/es/colors/models/tile-size.js +0 -1
  177. package/dist/es/colors/utils/color-cache.d.ts +0 -43
  178. package/dist/es/colors/utils/color-cache.js +0 -75
  179. package/dist/es/colors/utils/color-palette.service.d.ts +0 -13
  180. package/dist/es/colors/utils/color-palette.service.js +0 -67
  181. package/dist/es/colors/utils/color-parser.d.ts +0 -71
  182. package/dist/es/colors/utils/color-parser.js +0 -145
  183. package/dist/es/colors/utils/misc.d.ts +0 -15
  184. package/dist/es/colors/utils/misc.js +0 -20
  185. package/dist/es/colors/utils/svg-calc.d.ts +0 -62
  186. package/dist/es/colors/utils/svg-calc.js +0 -103
  187. package/dist/es/input/Input.d.ts +0 -226
  188. package/dist/es/input/Input.js +0 -372
  189. package/dist/es/input-separator/InputSeparator.d.ts +0 -26
  190. package/dist/es/input-separator/InputSeparator.js +0 -40
  191. package/dist/es/interfaces/Direction.d.ts +0 -1
  192. package/dist/es/interfaces/Direction.js +0 -1
  193. package/dist/es/interfaces/ToggleBaseProps.d.ts +0 -8
  194. package/dist/es/interfaces/ToggleBaseProps.js +0 -1
  195. package/dist/es/main.d.ts +0 -44
  196. package/dist/es/main.js +0 -42
  197. package/dist/es/maskedtextbox/MaskedTextBox.d.ts +0 -76
  198. package/dist/es/maskedtextbox/MaskedTextBox.js +0 -524
  199. package/dist/es/maskedtextbox/MaskedTextBoxProps.d.ts +0 -220
  200. package/dist/es/maskedtextbox/MaskedTextBoxProps.js +0 -2
  201. package/dist/es/maskedtextbox/masking.service.d.ts +0 -41
  202. package/dist/es/maskedtextbox/masking.service.js +0 -206
  203. package/dist/es/maskedtextbox/parsing/combinators.d.ts +0 -9
  204. package/dist/es/maskedtextbox/parsing/combinators.js +0 -24
  205. package/dist/es/maskedtextbox/parsing/parsers.d.ts +0 -47
  206. package/dist/es/maskedtextbox/parsing/parsers.js +0 -154
  207. package/dist/es/maskedtextbox/parsing/result.d.ts +0 -23
  208. package/dist/es/maskedtextbox/parsing/result.js +0 -39
  209. package/dist/es/maskedtextbox/parsing/stream.d.ts +0 -22
  210. package/dist/es/maskedtextbox/parsing/stream.js +0 -41
  211. package/dist/es/maskedtextbox/utils.d.ts +0 -16
  212. package/dist/es/maskedtextbox/utils.js +0 -56
  213. package/dist/es/messages/main.d.ts +0 -200
  214. package/dist/es/messages/main.js +0 -201
  215. package/dist/es/numerictextbox/NumericTextBox.d.ts +0 -87
  216. package/dist/es/numerictextbox/NumericTextBox.js +0 -690
  217. package/dist/es/numerictextbox/interfaces/NumericTextBoxData.d.ts +0 -15
  218. package/dist/es/numerictextbox/interfaces/NumericTextBoxData.js +0 -1
  219. package/dist/es/numerictextbox/interfaces/NumericTextBoxProps.d.ts +0 -180
  220. package/dist/es/numerictextbox/interfaces/NumericTextBoxProps.js +0 -1
  221. package/dist/es/numerictextbox/utils/main.d.ts +0 -119
  222. package/dist/es/numerictextbox/utils/main.js +0 -547
  223. package/dist/es/package-metadata.d.ts +0 -5
  224. package/dist/es/package-metadata.js +0 -11
  225. package/dist/es/radiobutton/RadioButton.d.ts +0 -55
  226. package/dist/es/radiobutton/RadioButton.js +0 -194
  227. package/dist/es/radiobutton/RadioGroup.d.ts +0 -57
  228. package/dist/es/radiobutton/RadioGroup.js +0 -217
  229. package/dist/es/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +0 -5
  230. package/dist/es/radiobutton/interfaces/RadioButtonBlurEvent.js +0 -1
  231. package/dist/es/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +0 -9
  232. package/dist/es/radiobutton/interfaces/RadioButtonChangeEvent.js +0 -1
  233. package/dist/es/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +0 -5
  234. package/dist/es/radiobutton/interfaces/RadioButtonFocusEvent.js +0 -1
  235. package/dist/es/radiobutton/interfaces/RadioButtonProps.d.ts +0 -112
  236. package/dist/es/radiobutton/interfaces/RadioButtonProps.js +0 -1
  237. package/dist/es/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +0 -9
  238. package/dist/es/radiobutton/interfaces/RadioGroupChangeEvent.js +0 -1
  239. package/dist/es/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +0 -5
  240. package/dist/es/radiobutton/interfaces/RadioGroupFocusEvent.js +0 -1
  241. package/dist/es/radiobutton/interfaces/RadioGroupProps.d.ts +0 -81
  242. package/dist/es/radiobutton/interfaces/RadioGroupProps.js +0 -1
  243. package/dist/es/range-slider/RangeSlider.d.ts +0 -176
  244. package/dist/es/range-slider/RangeSlider.js +0 -600
  245. package/dist/es/range-slider/range-raducer.d.ts +0 -35
  246. package/dist/es/range-slider/range-raducer.js +0 -131
  247. package/dist/es/rating/Rating.d.ts +0 -61
  248. package/dist/es/rating/Rating.js +0 -400
  249. package/dist/es/rating/RatingItem.d.ts +0 -46
  250. package/dist/es/rating/RatingItem.js +0 -272
  251. package/dist/es/rating/interfaces/RatingEvents.d.ts +0 -47
  252. package/dist/es/rating/interfaces/RatingEvents.js +0 -1
  253. package/dist/es/rating/interfaces/RatingItemProps.d.ts +0 -92
  254. package/dist/es/rating/interfaces/RatingItemProps.js +0 -1
  255. package/dist/es/rating/interfaces/RatingProps.d.ts +0 -116
  256. package/dist/es/rating/interfaces/RatingProps.js +0 -1
  257. package/dist/es/rating/utils/main.d.ts +0 -24
  258. package/dist/es/rating/utils/main.js +0 -60
  259. package/dist/es/rating/utils/rating-reducer.d.ts +0 -32
  260. package/dist/es/rating/utils/rating-reducer.js +0 -63
  261. package/dist/es/signature/Signature.d.ts +0 -39
  262. package/dist/es/signature/Signature.js +0 -658
  263. package/dist/es/signature/SignatureBottomActions.d.ts +0 -45
  264. package/dist/es/signature/SignatureBottomActions.js +0 -73
  265. package/dist/es/signature/SignatureCanvas.d.ts +0 -39
  266. package/dist/es/signature/SignatureCanvas.js +0 -147
  267. package/dist/es/signature/SignatureDialog.d.ts +0 -54
  268. package/dist/es/signature/SignatureDialog.js +0 -306
  269. package/dist/es/signature/SignatureLine.d.ts +0 -42
  270. package/dist/es/signature/SignatureLine.js +0 -33
  271. package/dist/es/signature/interfaces/SignatureBlurEvent.d.ts +0 -5
  272. package/dist/es/signature/interfaces/SignatureBlurEvent.js +0 -1
  273. package/dist/es/signature/interfaces/SignatureCanvasProps.d.ts +0 -16
  274. package/dist/es/signature/interfaces/SignatureCanvasProps.js +0 -1
  275. package/dist/es/signature/interfaces/SignatureChangeEvent.d.ts +0 -9
  276. package/dist/es/signature/interfaces/SignatureChangeEvent.js +0 -1
  277. package/dist/es/signature/interfaces/SignatureCloseEvent.d.ts +0 -5
  278. package/dist/es/signature/interfaces/SignatureCloseEvent.js +0 -1
  279. package/dist/es/signature/interfaces/SignatureFocusEvent.d.ts +0 -5
  280. package/dist/es/signature/interfaces/SignatureFocusEvent.js +0 -1
  281. package/dist/es/signature/interfaces/SignatureHandle.d.ts +0 -42
  282. package/dist/es/signature/interfaces/SignatureHandle.js +0 -1
  283. package/dist/es/signature/interfaces/SignatureOpenEvent.d.ts +0 -5
  284. package/dist/es/signature/interfaces/SignatureOpenEvent.js +0 -1
  285. package/dist/es/signature/interfaces/SignatureProps.d.ts +0 -192
  286. package/dist/es/signature/interfaces/SignatureProps.js +0 -1
  287. package/dist/es/signature/interfaces/main.d.ts +0 -7
  288. package/dist/es/signature/interfaces/main.js +0 -1
  289. package/dist/es/signature/utils/main.d.ts +0 -4
  290. package/dist/es/signature/utils/main.js +0 -10
  291. package/dist/es/slider/Slider.d.ts +0 -140
  292. package/dist/es/slider/Slider.js +0 -403
  293. package/dist/es/slider/SliderLabel.d.ts +0 -65
  294. package/dist/es/slider/SliderLabel.js +0 -107
  295. package/dist/es/switch/Switch.d.ts +0 -181
  296. package/dist/es/switch/Switch.js +0 -327
  297. package/dist/es/switch/util.d.ts +0 -8
  298. package/dist/es/switch/util.js +0 -46
  299. package/dist/es/textarea/TextArea.d.ts +0 -80
  300. package/dist/es/textarea/TextArea.js +0 -444
  301. package/dist/es/textarea/interfaces/TextAreaBlurEvent.d.ts +0 -5
  302. package/dist/es/textarea/interfaces/TextAreaBlurEvent.js +0 -1
  303. package/dist/es/textarea/interfaces/TextAreaChangeEvent.d.ts +0 -9
  304. package/dist/es/textarea/interfaces/TextAreaChangeEvent.js +0 -1
  305. package/dist/es/textarea/interfaces/TextAreaFlow.d.ts +0 -8
  306. package/dist/es/textarea/interfaces/TextAreaFlow.js +0 -1
  307. package/dist/es/textarea/interfaces/TextAreaFocusEvent.d.ts +0 -5
  308. package/dist/es/textarea/interfaces/TextAreaFocusEvent.js +0 -1
  309. package/dist/es/textarea/interfaces/TextAreaProps.d.ts +0 -185
  310. package/dist/es/textarea/interfaces/TextAreaProps.js +0 -1
  311. package/dist/es/textarea/interfaces/TextAreaResize.d.ts +0 -31
  312. package/dist/es/textarea/interfaces/TextAreaResize.js +0 -22
  313. package/dist/es/textbox/TextBox.d.ts +0 -211
  314. package/dist/es/textbox/TextBox.js +0 -447
  315. package/dist/esm/additionalTypes.ts +0 -21
  316. package/dist/esm/checkbox/Checkbox.d.ts +0 -79
  317. package/dist/esm/checkbox/Checkbox.js +0 -363
  318. package/dist/esm/checkbox/interfaces/CheckboxChangeEvent.d.ts +0 -9
  319. package/dist/esm/checkbox/interfaces/CheckboxChangeEvent.js +0 -1
  320. package/dist/esm/checkbox/interfaces/CheckboxFocusEvent.d.ts +0 -5
  321. package/dist/esm/checkbox/interfaces/CheckboxFocusEvent.js +0 -1
  322. package/dist/esm/checkbox/interfaces/CheckboxProps.d.ts +0 -114
  323. package/dist/esm/checkbox/interfaces/CheckboxProps.js +0 -1
  324. package/dist/esm/colors/ColorContrastLabels.d.ts +0 -49
  325. package/dist/esm/colors/ColorContrastLabels.js +0 -109
  326. package/dist/esm/colors/ColorContrastSvg.d.ts +0 -50
  327. package/dist/esm/colors/ColorContrastSvg.js +0 -116
  328. package/dist/esm/colors/ColorGradient.d.ts +0 -54
  329. package/dist/esm/colors/ColorGradient.js +0 -503
  330. package/dist/esm/colors/ColorInput.d.ts +0 -57
  331. package/dist/esm/colors/ColorInput.js +0 -346
  332. package/dist/esm/colors/ColorPalette.d.ts +0 -60
  333. package/dist/esm/colors/ColorPalette.js +0 -322
  334. package/dist/esm/colors/ColorPicker.d.ts +0 -57
  335. package/dist/esm/colors/ColorPicker.js +0 -506
  336. package/dist/esm/colors/FlatColorPicker.d.ts +0 -139
  337. package/dist/esm/colors/FlatColorPicker.js +0 -594
  338. package/dist/esm/colors/HexInput.d.ts +0 -52
  339. package/dist/esm/colors/HexInput.js +0 -106
  340. package/dist/esm/colors/Picker.d.ts +0 -46
  341. package/dist/esm/colors/Picker.js +0 -107
  342. package/dist/esm/colors/interfaces/ColorGradientChangeEvent.d.ts +0 -13
  343. package/dist/esm/colors/interfaces/ColorGradientChangeEvent.js +0 -1
  344. package/dist/esm/colors/interfaces/ColorGradientProps.d.ts +0 -68
  345. package/dist/esm/colors/interfaces/ColorGradientProps.js +0 -1
  346. package/dist/esm/colors/interfaces/ColorPaletteChangeEvent.d.ts +0 -13
  347. package/dist/esm/colors/interfaces/ColorPaletteChangeEvent.js +0 -1
  348. package/dist/esm/colors/interfaces/ColorPaletteProps.d.ts +0 -71
  349. package/dist/esm/colors/interfaces/ColorPaletteProps.js +0 -1
  350. package/dist/esm/colors/interfaces/ColorPickerActiveColorClick.d.ts +0 -13
  351. package/dist/esm/colors/interfaces/ColorPickerActiveColorClick.js +0 -1
  352. package/dist/esm/colors/interfaces/ColorPickerBlurEvent.d.ts +0 -9
  353. package/dist/esm/colors/interfaces/ColorPickerBlurEvent.js +0 -1
  354. package/dist/esm/colors/interfaces/ColorPickerChangeEvent.d.ts +0 -17
  355. package/dist/esm/colors/interfaces/ColorPickerChangeEvent.js +0 -1
  356. package/dist/esm/colors/interfaces/ColorPickerFocusEvent.d.ts +0 -9
  357. package/dist/esm/colors/interfaces/ColorPickerFocusEvent.js +0 -1
  358. package/dist/esm/colors/interfaces/ColorPickerPaletteSettings.d.ts +0 -32
  359. package/dist/esm/colors/interfaces/ColorPickerPaletteSettings.js +0 -1
  360. package/dist/esm/colors/interfaces/ColorPickerPopupSettings.d.ts +0 -14
  361. package/dist/esm/colors/interfaces/ColorPickerPopupSettings.js +0 -1
  362. package/dist/esm/colors/interfaces/ColorPickerProps.d.ts +0 -179
  363. package/dist/esm/colors/interfaces/ColorPickerProps.js +0 -1
  364. package/dist/esm/colors/interfaces/ColorPickerView.d.ts +0 -10
  365. package/dist/esm/colors/interfaces/ColorPickerView.js +0 -1
  366. package/dist/esm/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +0 -13
  367. package/dist/esm/colors/interfaces/FlatColorPickerViewChangeEvent.js +0 -1
  368. package/dist/esm/colors/interfaces/PickerPopupSettings.d.ts +0 -14
  369. package/dist/esm/colors/interfaces/PickerPopupSettings.js +0 -1
  370. package/dist/esm/colors/interfaces/PickerProps.d.ts +0 -46
  371. package/dist/esm/colors/interfaces/PickerProps.js +0 -1
  372. package/dist/esm/colors/models/hsva.d.ts +0 -9
  373. package/dist/esm/colors/models/hsva.js +0 -1
  374. package/dist/esm/colors/models/output-format.d.ts +0 -4
  375. package/dist/esm/colors/models/output-format.js +0 -1
  376. package/dist/esm/colors/models/palette-presets.d.ts +0 -53
  377. package/dist/esm/colors/models/palette-presets.js +0 -54
  378. package/dist/esm/colors/models/rgb.d.ts +0 -8
  379. package/dist/esm/colors/models/rgb.js +0 -1
  380. package/dist/esm/colors/models/rgba.d.ts +0 -9
  381. package/dist/esm/colors/models/rgba.js +0 -1
  382. package/dist/esm/colors/models/table-cell.d.ts +0 -7
  383. package/dist/esm/colors/models/table-cell.js +0 -1
  384. package/dist/esm/colors/models/tile-size.d.ts +0 -11
  385. package/dist/esm/colors/models/tile-size.js +0 -1
  386. package/dist/esm/colors/utils/color-cache.d.ts +0 -43
  387. package/dist/esm/colors/utils/color-cache.js +0 -75
  388. package/dist/esm/colors/utils/color-palette.service.d.ts +0 -13
  389. package/dist/esm/colors/utils/color-palette.service.js +0 -67
  390. package/dist/esm/colors/utils/color-parser.d.ts +0 -71
  391. package/dist/esm/colors/utils/color-parser.js +0 -145
  392. package/dist/esm/colors/utils/misc.d.ts +0 -15
  393. package/dist/esm/colors/utils/misc.js +0 -20
  394. package/dist/esm/colors/utils/svg-calc.d.ts +0 -62
  395. package/dist/esm/colors/utils/svg-calc.js +0 -103
  396. package/dist/esm/input/Input.d.ts +0 -226
  397. package/dist/esm/input/Input.js +0 -372
  398. package/dist/esm/input-separator/InputSeparator.d.ts +0 -26
  399. package/dist/esm/input-separator/InputSeparator.js +0 -40
  400. package/dist/esm/interfaces/Direction.d.ts +0 -1
  401. package/dist/esm/interfaces/Direction.js +0 -1
  402. package/dist/esm/interfaces/ToggleBaseProps.d.ts +0 -8
  403. package/dist/esm/interfaces/ToggleBaseProps.js +0 -1
  404. package/dist/esm/main.d.ts +0 -44
  405. package/dist/esm/main.js +0 -42
  406. package/dist/esm/maskedtextbox/MaskedTextBox.d.ts +0 -76
  407. package/dist/esm/maskedtextbox/MaskedTextBox.js +0 -524
  408. package/dist/esm/maskedtextbox/MaskedTextBoxProps.d.ts +0 -220
  409. package/dist/esm/maskedtextbox/MaskedTextBoxProps.js +0 -2
  410. package/dist/esm/maskedtextbox/masking.service.d.ts +0 -41
  411. package/dist/esm/maskedtextbox/masking.service.js +0 -206
  412. package/dist/esm/maskedtextbox/parsing/combinators.d.ts +0 -9
  413. package/dist/esm/maskedtextbox/parsing/combinators.js +0 -24
  414. package/dist/esm/maskedtextbox/parsing/parsers.d.ts +0 -47
  415. package/dist/esm/maskedtextbox/parsing/parsers.js +0 -154
  416. package/dist/esm/maskedtextbox/parsing/result.d.ts +0 -23
  417. package/dist/esm/maskedtextbox/parsing/result.js +0 -39
  418. package/dist/esm/maskedtextbox/parsing/stream.d.ts +0 -22
  419. package/dist/esm/maskedtextbox/parsing/stream.js +0 -41
  420. package/dist/esm/maskedtextbox/utils.d.ts +0 -16
  421. package/dist/esm/maskedtextbox/utils.js +0 -56
  422. package/dist/esm/messages/main.d.ts +0 -200
  423. package/dist/esm/messages/main.js +0 -201
  424. package/dist/esm/numerictextbox/NumericTextBox.d.ts +0 -87
  425. package/dist/esm/numerictextbox/NumericTextBox.js +0 -690
  426. package/dist/esm/numerictextbox/interfaces/NumericTextBoxData.d.ts +0 -15
  427. package/dist/esm/numerictextbox/interfaces/NumericTextBoxData.js +0 -1
  428. package/dist/esm/numerictextbox/interfaces/NumericTextBoxProps.d.ts +0 -180
  429. package/dist/esm/numerictextbox/interfaces/NumericTextBoxProps.js +0 -1
  430. package/dist/esm/numerictextbox/utils/main.d.ts +0 -119
  431. package/dist/esm/numerictextbox/utils/main.js +0 -547
  432. package/dist/esm/package-metadata.d.ts +0 -5
  433. package/dist/esm/package-metadata.js +0 -11
  434. package/dist/esm/package.json +0 -3
  435. package/dist/esm/radiobutton/RadioButton.d.ts +0 -55
  436. package/dist/esm/radiobutton/RadioButton.js +0 -194
  437. package/dist/esm/radiobutton/RadioGroup.d.ts +0 -57
  438. package/dist/esm/radiobutton/RadioGroup.js +0 -217
  439. package/dist/esm/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +0 -5
  440. package/dist/esm/radiobutton/interfaces/RadioButtonBlurEvent.js +0 -1
  441. package/dist/esm/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +0 -9
  442. package/dist/esm/radiobutton/interfaces/RadioButtonChangeEvent.js +0 -1
  443. package/dist/esm/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +0 -5
  444. package/dist/esm/radiobutton/interfaces/RadioButtonFocusEvent.js +0 -1
  445. package/dist/esm/radiobutton/interfaces/RadioButtonProps.d.ts +0 -112
  446. package/dist/esm/radiobutton/interfaces/RadioButtonProps.js +0 -1
  447. package/dist/esm/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +0 -9
  448. package/dist/esm/radiobutton/interfaces/RadioGroupChangeEvent.js +0 -1
  449. package/dist/esm/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +0 -5
  450. package/dist/esm/radiobutton/interfaces/RadioGroupFocusEvent.js +0 -1
  451. package/dist/esm/radiobutton/interfaces/RadioGroupProps.d.ts +0 -81
  452. package/dist/esm/radiobutton/interfaces/RadioGroupProps.js +0 -1
  453. package/dist/esm/range-slider/RangeSlider.d.ts +0 -176
  454. package/dist/esm/range-slider/RangeSlider.js +0 -600
  455. package/dist/esm/range-slider/range-raducer.d.ts +0 -35
  456. package/dist/esm/range-slider/range-raducer.js +0 -131
  457. package/dist/esm/rating/Rating.d.ts +0 -61
  458. package/dist/esm/rating/Rating.js +0 -400
  459. package/dist/esm/rating/RatingItem.d.ts +0 -46
  460. package/dist/esm/rating/RatingItem.js +0 -272
  461. package/dist/esm/rating/interfaces/RatingEvents.d.ts +0 -47
  462. package/dist/esm/rating/interfaces/RatingEvents.js +0 -1
  463. package/dist/esm/rating/interfaces/RatingItemProps.d.ts +0 -92
  464. package/dist/esm/rating/interfaces/RatingItemProps.js +0 -1
  465. package/dist/esm/rating/interfaces/RatingProps.d.ts +0 -116
  466. package/dist/esm/rating/interfaces/RatingProps.js +0 -1
  467. package/dist/esm/rating/utils/main.d.ts +0 -24
  468. package/dist/esm/rating/utils/main.js +0 -60
  469. package/dist/esm/rating/utils/rating-reducer.d.ts +0 -32
  470. package/dist/esm/rating/utils/rating-reducer.js +0 -63
  471. package/dist/esm/signature/Signature.d.ts +0 -39
  472. package/dist/esm/signature/Signature.js +0 -658
  473. package/dist/esm/signature/SignatureBottomActions.d.ts +0 -45
  474. package/dist/esm/signature/SignatureBottomActions.js +0 -73
  475. package/dist/esm/signature/SignatureCanvas.d.ts +0 -39
  476. package/dist/esm/signature/SignatureCanvas.js +0 -147
  477. package/dist/esm/signature/SignatureDialog.d.ts +0 -54
  478. package/dist/esm/signature/SignatureDialog.js +0 -306
  479. package/dist/esm/signature/SignatureLine.d.ts +0 -42
  480. package/dist/esm/signature/SignatureLine.js +0 -33
  481. package/dist/esm/signature/interfaces/SignatureBlurEvent.d.ts +0 -5
  482. package/dist/esm/signature/interfaces/SignatureBlurEvent.js +0 -1
  483. package/dist/esm/signature/interfaces/SignatureCanvasProps.d.ts +0 -16
  484. package/dist/esm/signature/interfaces/SignatureCanvasProps.js +0 -1
  485. package/dist/esm/signature/interfaces/SignatureChangeEvent.d.ts +0 -9
  486. package/dist/esm/signature/interfaces/SignatureChangeEvent.js +0 -1
  487. package/dist/esm/signature/interfaces/SignatureCloseEvent.d.ts +0 -5
  488. package/dist/esm/signature/interfaces/SignatureCloseEvent.js +0 -1
  489. package/dist/esm/signature/interfaces/SignatureFocusEvent.d.ts +0 -5
  490. package/dist/esm/signature/interfaces/SignatureFocusEvent.js +0 -1
  491. package/dist/esm/signature/interfaces/SignatureHandle.d.ts +0 -42
  492. package/dist/esm/signature/interfaces/SignatureHandle.js +0 -1
  493. package/dist/esm/signature/interfaces/SignatureOpenEvent.d.ts +0 -5
  494. package/dist/esm/signature/interfaces/SignatureOpenEvent.js +0 -1
  495. package/dist/esm/signature/interfaces/SignatureProps.d.ts +0 -192
  496. package/dist/esm/signature/interfaces/SignatureProps.js +0 -1
  497. package/dist/esm/signature/interfaces/main.d.ts +0 -7
  498. package/dist/esm/signature/interfaces/main.js +0 -1
  499. package/dist/esm/signature/utils/main.d.ts +0 -4
  500. package/dist/esm/signature/utils/main.js +0 -10
  501. package/dist/esm/slider/Slider.d.ts +0 -140
  502. package/dist/esm/slider/Slider.js +0 -403
  503. package/dist/esm/slider/SliderLabel.d.ts +0 -65
  504. package/dist/esm/slider/SliderLabel.js +0 -107
  505. package/dist/esm/switch/Switch.d.ts +0 -181
  506. package/dist/esm/switch/Switch.js +0 -327
  507. package/dist/esm/switch/util.d.ts +0 -8
  508. package/dist/esm/switch/util.js +0 -46
  509. package/dist/esm/textarea/TextArea.d.ts +0 -80
  510. package/dist/esm/textarea/TextArea.js +0 -444
  511. package/dist/esm/textarea/interfaces/TextAreaBlurEvent.d.ts +0 -5
  512. package/dist/esm/textarea/interfaces/TextAreaBlurEvent.js +0 -1
  513. package/dist/esm/textarea/interfaces/TextAreaChangeEvent.d.ts +0 -9
  514. package/dist/esm/textarea/interfaces/TextAreaChangeEvent.js +0 -1
  515. package/dist/esm/textarea/interfaces/TextAreaFlow.d.ts +0 -8
  516. package/dist/esm/textarea/interfaces/TextAreaFlow.js +0 -1
  517. package/dist/esm/textarea/interfaces/TextAreaFocusEvent.d.ts +0 -5
  518. package/dist/esm/textarea/interfaces/TextAreaFocusEvent.js +0 -1
  519. package/dist/esm/textarea/interfaces/TextAreaProps.d.ts +0 -185
  520. package/dist/esm/textarea/interfaces/TextAreaProps.js +0 -1
  521. package/dist/esm/textarea/interfaces/TextAreaResize.d.ts +0 -31
  522. package/dist/esm/textarea/interfaces/TextAreaResize.js +0 -22
  523. package/dist/esm/textbox/TextBox.d.ts +0 -211
  524. package/dist/esm/textbox/TextBox.js +0 -447
  525. package/dist/npm/additionalTypes.ts +0 -21
  526. package/dist/npm/checkbox/Checkbox.d.ts +0 -79
  527. package/dist/npm/checkbox/Checkbox.js +0 -370
  528. package/dist/npm/checkbox/interfaces/CheckboxChangeEvent.d.ts +0 -9
  529. package/dist/npm/checkbox/interfaces/CheckboxChangeEvent.js +0 -2
  530. package/dist/npm/checkbox/interfaces/CheckboxFocusEvent.d.ts +0 -5
  531. package/dist/npm/checkbox/interfaces/CheckboxFocusEvent.js +0 -2
  532. package/dist/npm/checkbox/interfaces/CheckboxProps.d.ts +0 -114
  533. package/dist/npm/checkbox/interfaces/CheckboxProps.js +0 -2
  534. package/dist/npm/colors/ColorContrastLabels.d.ts +0 -49
  535. package/dist/npm/colors/ColorContrastLabels.js +0 -116
  536. package/dist/npm/colors/ColorContrastSvg.d.ts +0 -50
  537. package/dist/npm/colors/ColorContrastSvg.js +0 -123
  538. package/dist/npm/colors/ColorGradient.d.ts +0 -54
  539. package/dist/npm/colors/ColorGradient.js +0 -510
  540. package/dist/npm/colors/ColorInput.d.ts +0 -57
  541. package/dist/npm/colors/ColorInput.js +0 -353
  542. package/dist/npm/colors/ColorPalette.d.ts +0 -60
  543. package/dist/npm/colors/ColorPalette.js +0 -329
  544. package/dist/npm/colors/ColorPicker.d.ts +0 -57
  545. package/dist/npm/colors/ColorPicker.js +0 -511
  546. package/dist/npm/colors/FlatColorPicker.d.ts +0 -139
  547. package/dist/npm/colors/FlatColorPicker.js +0 -601
  548. package/dist/npm/colors/HexInput.d.ts +0 -52
  549. package/dist/npm/colors/HexInput.js +0 -113
  550. package/dist/npm/colors/Picker.d.ts +0 -46
  551. package/dist/npm/colors/Picker.js +0 -114
  552. package/dist/npm/colors/interfaces/ColorGradientChangeEvent.d.ts +0 -13
  553. package/dist/npm/colors/interfaces/ColorGradientChangeEvent.js +0 -2
  554. package/dist/npm/colors/interfaces/ColorGradientProps.d.ts +0 -68
  555. package/dist/npm/colors/interfaces/ColorGradientProps.js +0 -2
  556. package/dist/npm/colors/interfaces/ColorPaletteChangeEvent.d.ts +0 -13
  557. package/dist/npm/colors/interfaces/ColorPaletteChangeEvent.js +0 -2
  558. package/dist/npm/colors/interfaces/ColorPaletteProps.d.ts +0 -71
  559. package/dist/npm/colors/interfaces/ColorPaletteProps.js +0 -2
  560. package/dist/npm/colors/interfaces/ColorPickerActiveColorClick.d.ts +0 -13
  561. package/dist/npm/colors/interfaces/ColorPickerActiveColorClick.js +0 -2
  562. package/dist/npm/colors/interfaces/ColorPickerBlurEvent.d.ts +0 -9
  563. package/dist/npm/colors/interfaces/ColorPickerBlurEvent.js +0 -2
  564. package/dist/npm/colors/interfaces/ColorPickerChangeEvent.d.ts +0 -17
  565. package/dist/npm/colors/interfaces/ColorPickerChangeEvent.js +0 -2
  566. package/dist/npm/colors/interfaces/ColorPickerFocusEvent.d.ts +0 -9
  567. package/dist/npm/colors/interfaces/ColorPickerFocusEvent.js +0 -2
  568. package/dist/npm/colors/interfaces/ColorPickerPaletteSettings.d.ts +0 -32
  569. package/dist/npm/colors/interfaces/ColorPickerPaletteSettings.js +0 -2
  570. package/dist/npm/colors/interfaces/ColorPickerPopupSettings.d.ts +0 -14
  571. package/dist/npm/colors/interfaces/ColorPickerPopupSettings.js +0 -2
  572. package/dist/npm/colors/interfaces/ColorPickerProps.d.ts +0 -179
  573. package/dist/npm/colors/interfaces/ColorPickerProps.js +0 -2
  574. package/dist/npm/colors/interfaces/ColorPickerView.d.ts +0 -10
  575. package/dist/npm/colors/interfaces/ColorPickerView.js +0 -2
  576. package/dist/npm/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +0 -13
  577. package/dist/npm/colors/interfaces/FlatColorPickerViewChangeEvent.js +0 -2
  578. package/dist/npm/colors/interfaces/PickerPopupSettings.d.ts +0 -14
  579. package/dist/npm/colors/interfaces/PickerPopupSettings.js +0 -2
  580. package/dist/npm/colors/interfaces/PickerProps.d.ts +0 -46
  581. package/dist/npm/colors/interfaces/PickerProps.js +0 -2
  582. package/dist/npm/colors/models/hsva.d.ts +0 -9
  583. package/dist/npm/colors/models/hsva.js +0 -2
  584. package/dist/npm/colors/models/output-format.d.ts +0 -4
  585. package/dist/npm/colors/models/output-format.js +0 -2
  586. package/dist/npm/colors/models/palette-presets.d.ts +0 -53
  587. package/dist/npm/colors/models/palette-presets.js +0 -57
  588. package/dist/npm/colors/models/rgb.d.ts +0 -8
  589. package/dist/npm/colors/models/rgb.js +0 -2
  590. package/dist/npm/colors/models/rgba.d.ts +0 -9
  591. package/dist/npm/colors/models/rgba.js +0 -2
  592. package/dist/npm/colors/models/table-cell.d.ts +0 -7
  593. package/dist/npm/colors/models/table-cell.js +0 -2
  594. package/dist/npm/colors/models/tile-size.d.ts +0 -11
  595. package/dist/npm/colors/models/tile-size.js +0 -2
  596. package/dist/npm/colors/utils/color-cache.d.ts +0 -43
  597. package/dist/npm/colors/utils/color-cache.js +0 -85
  598. package/dist/npm/colors/utils/color-palette.service.d.ts +0 -13
  599. package/dist/npm/colors/utils/color-palette.service.js +0 -70
  600. package/dist/npm/colors/utils/color-parser.d.ts +0 -71
  601. package/dist/npm/colors/utils/color-parser.js +0 -159
  602. package/dist/npm/colors/utils/misc.d.ts +0 -15
  603. package/dist/npm/colors/utils/misc.js +0 -25
  604. package/dist/npm/colors/utils/svg-calc.d.ts +0 -62
  605. package/dist/npm/colors/utils/svg-calc.js +0 -110
  606. package/dist/npm/input/Input.d.ts +0 -226
  607. package/dist/npm/input/Input.js +0 -379
  608. package/dist/npm/input-separator/InputSeparator.d.ts +0 -26
  609. package/dist/npm/input-separator/InputSeparator.js +0 -47
  610. package/dist/npm/interfaces/Direction.d.ts +0 -1
  611. package/dist/npm/interfaces/Direction.js +0 -2
  612. package/dist/npm/interfaces/ToggleBaseProps.d.ts +0 -8
  613. package/dist/npm/interfaces/ToggleBaseProps.js +0 -2
  614. package/dist/npm/main.d.ts +0 -44
  615. package/dist/npm/main.js +0 -63
  616. package/dist/npm/maskedtextbox/MaskedTextBox.d.ts +0 -76
  617. package/dist/npm/maskedtextbox/MaskedTextBox.js +0 -531
  618. package/dist/npm/maskedtextbox/MaskedTextBoxProps.d.ts +0 -220
  619. package/dist/npm/maskedtextbox/MaskedTextBoxProps.js +0 -3
  620. package/dist/npm/maskedtextbox/masking.service.d.ts +0 -41
  621. package/dist/npm/maskedtextbox/masking.service.js +0 -209
  622. package/dist/npm/maskedtextbox/parsing/combinators.d.ts +0 -9
  623. package/dist/npm/maskedtextbox/parsing/combinators.js +0 -29
  624. package/dist/npm/maskedtextbox/parsing/parsers.d.ts +0 -47
  625. package/dist/npm/maskedtextbox/parsing/parsers.js +0 -164
  626. package/dist/npm/maskedtextbox/parsing/result.d.ts +0 -23
  627. package/dist/npm/maskedtextbox/parsing/result.js +0 -42
  628. package/dist/npm/maskedtextbox/parsing/stream.d.ts +0 -22
  629. package/dist/npm/maskedtextbox/parsing/stream.js +0 -44
  630. package/dist/npm/maskedtextbox/utils.d.ts +0 -16
  631. package/dist/npm/maskedtextbox/utils.js +0 -61
  632. package/dist/npm/messages/main.d.ts +0 -200
  633. package/dist/npm/messages/main.js +0 -204
  634. package/dist/npm/numerictextbox/NumericTextBox.d.ts +0 -87
  635. package/dist/npm/numerictextbox/NumericTextBox.js +0 -697
  636. package/dist/npm/numerictextbox/interfaces/NumericTextBoxData.d.ts +0 -15
  637. package/dist/npm/numerictextbox/interfaces/NumericTextBoxData.js +0 -5
  638. package/dist/npm/numerictextbox/interfaces/NumericTextBoxProps.d.ts +0 -180
  639. package/dist/npm/numerictextbox/interfaces/NumericTextBoxProps.js +0 -5
  640. package/dist/npm/numerictextbox/utils/main.d.ts +0 -119
  641. package/dist/npm/numerictextbox/utils/main.js +0 -581
  642. package/dist/npm/package-metadata.d.ts +0 -5
  643. package/dist/npm/package-metadata.js +0 -14
  644. package/dist/npm/radiobutton/RadioButton.d.ts +0 -55
  645. package/dist/npm/radiobutton/RadioButton.js +0 -201
  646. package/dist/npm/radiobutton/RadioGroup.d.ts +0 -57
  647. package/dist/npm/radiobutton/RadioGroup.js +0 -224
  648. package/dist/npm/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +0 -5
  649. package/dist/npm/radiobutton/interfaces/RadioButtonBlurEvent.js +0 -2
  650. package/dist/npm/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +0 -9
  651. package/dist/npm/radiobutton/interfaces/RadioButtonChangeEvent.js +0 -2
  652. package/dist/npm/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +0 -5
  653. package/dist/npm/radiobutton/interfaces/RadioButtonFocusEvent.js +0 -2
  654. package/dist/npm/radiobutton/interfaces/RadioButtonProps.d.ts +0 -112
  655. package/dist/npm/radiobutton/interfaces/RadioButtonProps.js +0 -2
  656. package/dist/npm/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +0 -9
  657. package/dist/npm/radiobutton/interfaces/RadioGroupChangeEvent.js +0 -2
  658. package/dist/npm/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +0 -5
  659. package/dist/npm/radiobutton/interfaces/RadioGroupFocusEvent.js +0 -2
  660. package/dist/npm/radiobutton/interfaces/RadioGroupProps.d.ts +0 -81
  661. package/dist/npm/radiobutton/interfaces/RadioGroupProps.js +0 -2
  662. package/dist/npm/range-slider/RangeSlider.d.ts +0 -176
  663. package/dist/npm/range-slider/RangeSlider.js +0 -605
  664. package/dist/npm/range-slider/range-raducer.d.ts +0 -35
  665. package/dist/npm/range-slider/range-raducer.js +0 -138
  666. package/dist/npm/rating/Rating.d.ts +0 -61
  667. package/dist/npm/rating/Rating.js +0 -407
  668. package/dist/npm/rating/RatingItem.d.ts +0 -46
  669. package/dist/npm/rating/RatingItem.js +0 -279
  670. package/dist/npm/rating/interfaces/RatingEvents.d.ts +0 -47
  671. package/dist/npm/rating/interfaces/RatingEvents.js +0 -2
  672. package/dist/npm/rating/interfaces/RatingItemProps.d.ts +0 -92
  673. package/dist/npm/rating/interfaces/RatingItemProps.js +0 -2
  674. package/dist/npm/rating/interfaces/RatingProps.d.ts +0 -116
  675. package/dist/npm/rating/interfaces/RatingProps.js +0 -2
  676. package/dist/npm/rating/utils/main.d.ts +0 -24
  677. package/dist/npm/rating/utils/main.js +0 -72
  678. package/dist/npm/rating/utils/rating-reducer.d.ts +0 -32
  679. package/dist/npm/rating/utils/rating-reducer.js +0 -67
  680. package/dist/npm/signature/Signature.d.ts +0 -39
  681. package/dist/npm/signature/Signature.js +0 -665
  682. package/dist/npm/signature/SignatureBottomActions.d.ts +0 -45
  683. package/dist/npm/signature/SignatureBottomActions.js +0 -80
  684. package/dist/npm/signature/SignatureCanvas.d.ts +0 -39
  685. package/dist/npm/signature/SignatureCanvas.js +0 -154
  686. package/dist/npm/signature/SignatureDialog.d.ts +0 -54
  687. package/dist/npm/signature/SignatureDialog.js +0 -313
  688. package/dist/npm/signature/SignatureLine.d.ts +0 -42
  689. package/dist/npm/signature/SignatureLine.js +0 -40
  690. package/dist/npm/signature/interfaces/SignatureBlurEvent.d.ts +0 -5
  691. package/dist/npm/signature/interfaces/SignatureBlurEvent.js +0 -5
  692. package/dist/npm/signature/interfaces/SignatureCanvasProps.d.ts +0 -16
  693. package/dist/npm/signature/interfaces/SignatureCanvasProps.js +0 -5
  694. package/dist/npm/signature/interfaces/SignatureChangeEvent.d.ts +0 -9
  695. package/dist/npm/signature/interfaces/SignatureChangeEvent.js +0 -5
  696. package/dist/npm/signature/interfaces/SignatureCloseEvent.d.ts +0 -5
  697. package/dist/npm/signature/interfaces/SignatureCloseEvent.js +0 -5
  698. package/dist/npm/signature/interfaces/SignatureFocusEvent.d.ts +0 -5
  699. package/dist/npm/signature/interfaces/SignatureFocusEvent.js +0 -5
  700. package/dist/npm/signature/interfaces/SignatureHandle.d.ts +0 -42
  701. package/dist/npm/signature/interfaces/SignatureHandle.js +0 -5
  702. package/dist/npm/signature/interfaces/SignatureOpenEvent.d.ts +0 -5
  703. package/dist/npm/signature/interfaces/SignatureOpenEvent.js +0 -5
  704. package/dist/npm/signature/interfaces/SignatureProps.d.ts +0 -192
  705. package/dist/npm/signature/interfaces/SignatureProps.js +0 -5
  706. package/dist/npm/signature/interfaces/main.d.ts +0 -7
  707. package/dist/npm/signature/interfaces/main.js +0 -2
  708. package/dist/npm/signature/utils/main.d.ts +0 -4
  709. package/dist/npm/signature/utils/main.js +0 -14
  710. package/dist/npm/slider/Slider.d.ts +0 -140
  711. package/dist/npm/slider/Slider.js +0 -410
  712. package/dist/npm/slider/SliderLabel.d.ts +0 -65
  713. package/dist/npm/slider/SliderLabel.js +0 -114
  714. package/dist/npm/switch/Switch.d.ts +0 -181
  715. package/dist/npm/switch/Switch.js +0 -334
  716. package/dist/npm/switch/util.d.ts +0 -8
  717. package/dist/npm/switch/util.js +0 -50
  718. package/dist/npm/textarea/TextArea.d.ts +0 -80
  719. package/dist/npm/textarea/TextArea.js +0 -449
  720. package/dist/npm/textarea/interfaces/TextAreaBlurEvent.d.ts +0 -5
  721. package/dist/npm/textarea/interfaces/TextAreaBlurEvent.js +0 -2
  722. package/dist/npm/textarea/interfaces/TextAreaChangeEvent.d.ts +0 -9
  723. package/dist/npm/textarea/interfaces/TextAreaChangeEvent.js +0 -2
  724. package/dist/npm/textarea/interfaces/TextAreaFlow.d.ts +0 -8
  725. package/dist/npm/textarea/interfaces/TextAreaFlow.js +0 -2
  726. package/dist/npm/textarea/interfaces/TextAreaFocusEvent.d.ts +0 -5
  727. package/dist/npm/textarea/interfaces/TextAreaFocusEvent.js +0 -2
  728. package/dist/npm/textarea/interfaces/TextAreaProps.d.ts +0 -185
  729. package/dist/npm/textarea/interfaces/TextAreaProps.js +0 -5
  730. package/dist/npm/textarea/interfaces/TextAreaResize.d.ts +0 -31
  731. package/dist/npm/textarea/interfaces/TextAreaResize.js +0 -25
  732. package/dist/npm/textbox/TextBox.d.ts +0 -211
  733. 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&mdash;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&mdash;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&mdash;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 };
@@ -1,379 +0,0 @@
1
- "use strict";
2
-
3
- var __assign = undefined && undefined.__assign || function () {
4
- __assign = Object.assign || function (t) {
5
- for (var s, i = 1, n = arguments.length; i < n; i++) {
6
- s = arguments[i];
7
- for (var p in s) {
8
- if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
- }
10
- }
11
- return t;
12
- };
13
- return __assign.apply(this, arguments);
14
- };
15
- Object.defineProperty(exports, "__esModule", {
16
- value: true
17
- });
18
- exports.InputVue2 = exports.Input = void 0;
19
- // @ts-ignore
20
- var Vue = require("vue");
21
- var allVue = Vue;
22
- var gh = allVue.h;
23
- var isV3 = allVue.version && allVue.version[0] === '3';
24
- var ref = allVue.ref;
25
- var kendo_vue_common_1 = require("@progress/kendo-vue-common");
26
- var package_metadata_1 = require("../package-metadata");
27
- var kendo_vue_labels_1 = require("@progress/kendo-vue-labels");
28
- /**
29
- * @hidden
30
- */
31
- var InputVue2 = {
32
- model: {
33
- event: 'changemodel'
34
- },
35
- // @ts-ignore
36
- emits: {
37
- 'input': null,
38
- 'change': null,
39
- 'changemodel': null,
40
- 'update:modelValue': null,
41
- 'focus': null,
42
- 'blur': null,
43
- 'keyup': null,
44
- 'keydown': null,
45
- 'keypress': null
46
- },
47
- props: {
48
- modelValue: {
49
- type: [String, Number],
50
- default: undefined
51
- },
52
- disabled: {
53
- type: Boolean,
54
- default: undefined
55
- },
56
- defaultValue: {
57
- type: [String, Number],
58
- default: ''
59
- },
60
- value: {
61
- type: [String, Number]
62
- },
63
- label: {
64
- type: String
65
- },
66
- placeholder: {
67
- type: String
68
- },
69
- required: {
70
- type: Boolean,
71
- default: false
72
- },
73
- size: {
74
- type: String,
75
- default: 'medium',
76
- validator: function validator(value) {
77
- return [null, 'small', 'medium', 'large'].includes(value);
78
- }
79
- },
80
- rounded: {
81
- type: String,
82
- default: 'medium',
83
- validator: function validator(value) {
84
- return [null, 'small', 'medium', 'large', 'full'].includes(value);
85
- }
86
- },
87
- fillMode: {
88
- type: String,
89
- default: 'solid',
90
- validator: function validator(value) {
91
- return [null, 'solid', 'flat', 'outline'].includes(value);
92
- }
93
- },
94
- dir: {
95
- type: String
96
- },
97
- id: String,
98
- valid: {
99
- type: Boolean,
100
- default: undefined
101
- },
102
- validate: {
103
- type: Boolean
104
- },
105
- validationMessage: {
106
- type: String
107
- },
108
- validityStyles: {
109
- type: Boolean,
110
- default: true
111
- },
112
- inputClass: String,
113
- tabIndex: Number,
114
- ariaLabel: String,
115
- ariaLabelledBy: String,
116
- ariaDescribedBy: String
117
- },
118
- data: function data() {
119
- return {
120
- hasMounted: false,
121
- autofill: false,
122
- currentValue: '',
123
- valueDuringOnChange: '',
124
- focused: false
125
- };
126
- },
127
- created: function created() {
128
- (0, kendo_vue_common_1.validatePackage)(package_metadata_1.packageMetadata);
129
- this._input = undefined;
130
- this._inputId = (0, kendo_vue_common_1.guid)();
131
- this.$data.valueDuringOnChange = undefined;
132
- this.$data.currentValue = this.$props.defaultValue;
133
- },
134
- mounted: function mounted() {
135
- this._input = this.v3 ? this.inputRef : this.$refs.input;
136
- this.$data.hasMounted = true;
137
- this.setValidity();
138
- },
139
- updated: function updated() {
140
- this.setValidity();
141
- this.updateValidClass();
142
- },
143
- // @ts-ignore
144
- setup: !isV3 ? undefined : function () {
145
- var v3 = !!isV3;
146
- var inputRef = ref(null);
147
- return {
148
- v3: v3,
149
- inputRef: inputRef
150
- };
151
- },
152
- render: function render(createElement) {
153
- var _this = this;
154
- var h = gh || createElement;
155
- var isValid = !this.$props.validityStyles || this.validity().valid;
156
- var _a = this.$props,
157
- label = _a.label,
158
- id = _a.id,
159
- required = _a.required,
160
- tabIndex = _a.tabIndex,
161
- ariaLabel = _a.ariaLabel,
162
- ariaLabelledBy = _a.ariaLabelledBy,
163
- ariaDescribedBy = _a.ariaDescribedBy;
164
- var inputId = id || this._inputId;
165
- var textbox = h('input', __assign(__assign({
166
- domProps: this.v3 ? null : __assign(__assign({}, this.$attrs), {
167
- placeholder: this.$props.placeholder,
168
- id: inputId,
169
- required: required,
170
- disabled: this.$props.disabled,
171
- value: this.computedValue
172
- }),
173
- attrs: this.v3 ? undefined : __assign(__assign({}, this.$attrs), {
174
- tabindex: tabIndex
175
- })
176
- }, this.$attrs), {
177
- placeholder: this.$props.placeholder,
178
- id: inputId,
179
- tabindex: tabIndex,
180
- required: required,
181
- ariaLabel: ariaLabel,
182
- ariaLabelledby: ariaLabelledBy,
183
- ariaDescribedby: ariaDescribedBy,
184
- ariaDisabled: this.$props.disabled,
185
- disabled: this.$props.disabled,
186
- value: this.computedValue,
187
- class: this.inputInnerClass,
188
- ref: this.v3 ? function (el) {
189
- _this.inputRef = el;
190
- } : 'input',
191
- on: this.v3 ? null : {
192
- change: this.handleChange,
193
- focus: this.emitFocus,
194
- blur: this.emitBlur,
195
- keydown: this.handleKeydown,
196
- keyup: this.handleKeyup,
197
- keypress: this.handleKeypress,
198
- input: this.handleInput,
199
- animationstart: this.handleAutoFill,
200
- animationend: this.handleAutoFillEnd
201
- },
202
- onKeydown: this.handleKeydown,
203
- onKeyup: this.handleKeyup,
204
- onKeypress: this.handleKeypress,
205
- onChange: this.handleChange,
206
- onFocus: this.emitFocus,
207
- onBlur: this.emitBlur,
208
- onInput: this.handleInput,
209
- onAnimationstart: this.handleAutoFill,
210
- onAnimationend: this.handleAutoFillEnd
211
- }));
212
- return label ?
213
- // @ts-ignore function children
214
- h(kendo_vue_labels_1.FloatingLabel, {
215
- label: label,
216
- attrs: this.v3 ? undefined : {
217
- label: label,
218
- editorId: inputId,
219
- editorValue: this.computedValue,
220
- editorValid: isValid,
221
- editorDisabled: this.$props.disabled,
222
- editorPlaceholder: this.$data.focused ? this.$props.placeholder : '',
223
- dir: this.$props.dir
224
- },
225
- editorId: inputId,
226
- editorValue: this.computedValue,
227
- editorValid: isValid,
228
- editorDisabled: this.$props.disabled,
229
- editorPlaceholder: this.$data.focused ? this.$props.placeholder : '',
230
- dir: this.$props.dir
231
- }, this.v3 ? function () {
232
- return [textbox];
233
- } : [textbox]) : textbox;
234
- },
235
- methods: {
236
- updateValidClass: function updateValidClass() {
237
- this._input.classList.toggle('k-invalid', !this.validity().valid);
238
- },
239
- emitFocus: function emitFocus(e) {
240
- this.$emit('focus', e);
241
- this.$data.focused = true;
242
- },
243
- emitBlur: function emitBlur(e) {
244
- this.$emit('blur', e);
245
- this.$data.focused = false;
246
- },
247
- handleKeydown: function handleKeydown(e) {
248
- this.$emit('keydown', e);
249
- },
250
- handleKeyup: function handleKeyup(e) {
251
- this.$emit('keyup', e);
252
- },
253
- handleKeypress: function handleKeypress(e) {
254
- this.$emit('keypress', e);
255
- },
256
- clearClick: function clearClick(event) {
257
- this.emitUpdate(event, 'change', '');
258
- },
259
- focus: function focus() {
260
- if (this._input) {
261
- this._input.focus();
262
- }
263
- },
264
- validity: function validity() {
265
- var result = {
266
- badInput: this._input ? this._input.validity.badInput : false,
267
- patternMismatch: this._input ? this._input.validity.patternMismatch : false,
268
- rangeOverflow: this._input ? this._input.validity.rangeOverflow : false,
269
- rangeUnderflow: this._input ? this._input.validity.rangeUnderflow : false,
270
- stepMismatch: this._input ? this._input.validity.stepMismatch : false,
271
- tooLong: this._input ? this._input.validity.tooLong : false,
272
- tooShort: this._input ? this._input.validity.tooShort : false,
273
- typeMismatch: this._input ? this._input.validity.typeMismatch : false,
274
- valueMissing: this._input ? this._input.validity.valueMissing : false
275
- };
276
- return __assign(__assign({}, result), {
277
- customError: this.$props.validationMessage !== undefined,
278
- valid: this.$props.valid !== undefined ? this.$props.valid : this._input ? !this.isInvalid(result) : true
279
- });
280
- },
281
- isInvalid: function isInvalid(state) {
282
- var result = false;
283
- for (var prop in state) {
284
- if (state.hasOwnProperty(prop)) {
285
- result = result || state[prop];
286
- }
287
- }
288
- return result;
289
- },
290
- setValidity: function setValidity() {
291
- if (this._input && this._input.setCustomValidity) {
292
- this._input.setCustomValidity(this.validity().valid ? '' : this.$props.validationMessage || '');
293
- }
294
- },
295
- handleInput: function handleInput(event) {
296
- this.emitUpdate(event, 'input', event.target.value);
297
- },
298
- handleChange: function handleChange(event) {
299
- this.emitUpdate(event, 'change', event.target.value);
300
- },
301
- emitUpdate: function emitUpdate(event, eventName, value) {
302
- var that = this;
303
- if (this.disabled) {
304
- return;
305
- }
306
- this.$data.currentValue = value;
307
- this.$data.valueDuringOnChange = value;
308
- this.$nextTick(function () {
309
- that.$emit('changemodel', value);
310
- that.$emit('update:modelValue', value);
311
- that.$emit(eventName, {
312
- event: event,
313
- value: value,
314
- component: that,
315
- target: event.target,
316
- validity: that.validity()
317
- });
318
- that.$data.valueDuringOnChange = undefined;
319
- });
320
- },
321
- handleAutoFill: function handleAutoFill(e) {
322
- if (e.animationName === 'autoFillStart') {
323
- var parent_1 = e.target.parentNode;
324
- if (parent_1 && parent_1.classList.contains('k-empty')) {
325
- this.$data.autofill = true;
326
- parent_1.classList.remove('k-empty');
327
- }
328
- }
329
- },
330
- handleAutoFillEnd: function handleAutoFillEnd(e) {
331
- if (e.animationName === 'autoFillEnd') {
332
- var parent_2 = e.target.parentNode;
333
- if (parent_2) {
334
- this.$data.autofill = false;
335
- }
336
- }
337
- },
338
- name: function name() {
339
- return this.$props.name;
340
- }
341
- },
342
- computed: {
343
- spanClassNames: {
344
- get: function get() {
345
- var isValid = !this.$data.hasMounted || !this.$props.validityStyles || this.validity().valid;
346
- return {
347
- 'k-floating-label-container': true,
348
- 'k-focus': this.$data.focused,
349
- 'k-empty': !((this.computedValue === 0 ? true : this.computedValue) || this.$props.placeholder || this.$data.autofill),
350
- 'k-autofill': this.$data.autofill,
351
- 'k-invalid': !isValid && isValid !== undefined,
352
- 'k-rtl': this.$props.dir === 'rtl'
353
- };
354
- }
355
- },
356
- inputInnerClass: function inputInnerClass() {
357
- var _a;
358
- var _b = this.$props,
359
- size = _b.size,
360
- fillMode = _b.fillMode,
361
- rounded = _b.rounded;
362
- var isValid = !this.$data.hasMounted || !this.$props.validityStyles || this.validity().valid;
363
- return _a = {
364
- 'k-input': true
365
- }, _a["k-input-".concat(kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-".concat(fillMode)] = fillMode, _a["k-rounded-".concat(kendo_vue_common_1.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;
366
- },
367
- computedValue: {
368
- get: function get() {
369
- 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;
370
- }
371
- }
372
- }
373
- };
374
- exports.InputVue2 = InputVue2;
375
- /**
376
- * @hidden
377
- */
378
- var Input = InputVue2;
379
- exports.Input = Input;
@@ -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,47 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.InputSeparatorVue2 = exports.InputSeparator = void 0;
7
- // @ts-ignore
8
- var Vue = require("vue");
9
- var allVue = Vue;
10
- var gh = allVue.h;
11
- var isV3 = allVue.version && allVue.version[0] === '3';
12
- var package_metadata_1 = require("../package-metadata");
13
- var kendo_vue_common_1 = require("@progress/kendo-vue-common");
14
- /**
15
- * @hidden
16
- */
17
- var InputSeparatorVue2 = {
18
- created: function created() {
19
- (0, kendo_vue_common_1.validatePackage)(package_metadata_1.packageMetadata);
20
- },
21
- // @ts-ignore
22
- setup: !isV3 ? undefined : function () {
23
- var v3 = !!isV3;
24
- return {
25
- v3: v3
26
- };
27
- },
28
- render: function render(createElement) {
29
- var h = gh || createElement;
30
- return h("span", {
31
- "class": 'k-input-separator'
32
- });
33
- }
34
- };
35
- exports.InputSeparatorVue2 = InputSeparatorVue2;
36
- /**
37
- * Represents the Kendo UI for Vue InputSeparator component. It can be used as a semarator
38
- * between horizontal icons in prefi and suffic templates.
39
- *
40
- * ```jsx
41
- * <template>
42
- * <InputSeparator>
43
- * </template>
44
- * ```
45
- */
46
- var InputSeparator = InputSeparatorVue2;
47
- exports.InputSeparator = InputSeparator;
@@ -1 +0,0 @@
1
- export declare type Direction = 'ltr' | 'rtl';
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,8 +0,0 @@
1
- /**
2
- * The props passed to the Checkbox and Switch components.
3
- */
4
- export interface ToggleBaseProps {
5
- value?: any;
6
- checked?: any;
7
- defaultChecked?: any;
8
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });