@hpcc-js/form 2.11.2 → 3.1.0

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 (67) hide show
  1. package/dist/index.js +227 -1288
  2. package/dist/index.js.map +7 -1
  3. package/package.json +31 -34
  4. package/src/Button.ts +11 -10
  5. package/src/CheckBox.ts +21 -13
  6. package/src/ColorInput.ts +16 -10
  7. package/src/FieldForm.ts +2 -2
  8. package/src/Form.ts +20 -13
  9. package/src/Input.ts +39 -24
  10. package/src/InputRange.ts +24 -15
  11. package/src/OnOff.ts +15 -10
  12. package/src/Radio.ts +21 -13
  13. package/src/Range.ts +33 -21
  14. package/src/Select.ts +24 -15
  15. package/src/Slider.ts +7 -3
  16. package/src/TextArea.ts +19 -12
  17. package/src/__package__.ts +2 -2
  18. package/src/index.ts +14 -14
  19. package/types/Button.d.ts +10 -21
  20. package/types/CheckBox.d.ts +17 -26
  21. package/types/ColorInput.d.ts +14 -21
  22. package/types/FieldForm.d.ts +1 -2
  23. package/types/Form.d.ts +18 -27
  24. package/types/Input.d.ts +28 -42
  25. package/types/InputRange.d.ts +20 -31
  26. package/types/OnOff.d.ts +12 -21
  27. package/types/Radio.d.ts +17 -26
  28. package/types/Range.d.ts +29 -46
  29. package/types/Select.d.ts +20 -31
  30. package/types/Slider.d.ts +3 -3
  31. package/types/TextArea.d.ts +18 -31
  32. package/types/__package__.d.ts +2 -3
  33. package/types/index.d.ts +14 -15
  34. package/dist/index.es6.js +0 -1271
  35. package/dist/index.es6.js.map +0 -1
  36. package/dist/index.min.js +0 -2
  37. package/dist/index.min.js.map +0 -1
  38. package/types/Button.d.ts.map +0 -1
  39. package/types/CheckBox.d.ts.map +0 -1
  40. package/types/ColorInput.d.ts.map +0 -1
  41. package/types/FieldForm.d.ts.map +0 -1
  42. package/types/Form.d.ts.map +0 -1
  43. package/types/Input.d.ts.map +0 -1
  44. package/types/InputRange.d.ts.map +0 -1
  45. package/types/OnOff.d.ts.map +0 -1
  46. package/types/Radio.d.ts.map +0 -1
  47. package/types/Range.d.ts.map +0 -1
  48. package/types/Select.d.ts.map +0 -1
  49. package/types/Slider.d.ts.map +0 -1
  50. package/types/TextArea.d.ts.map +0 -1
  51. package/types/__package__.d.ts.map +0 -1
  52. package/types/index.d.ts.map +0 -1
  53. package/types-3.4/Button.d.ts +0 -29
  54. package/types-3.4/CheckBox.d.ts +0 -35
  55. package/types-3.4/ColorInput.d.ts +0 -29
  56. package/types-3.4/FieldForm.d.ts +0 -11
  57. package/types-3.4/Form.d.ts +0 -53
  58. package/types-3.4/Input.d.ts +0 -51
  59. package/types-3.4/InputRange.d.ts +0 -41
  60. package/types-3.4/OnOff.d.ts +0 -58
  61. package/types-3.4/Radio.d.ts +0 -34
  62. package/types-3.4/Range.d.ts +0 -55
  63. package/types-3.4/Select.d.ts +0 -40
  64. package/types-3.4/Slider.d.ts +0 -86
  65. package/types-3.4/TextArea.d.ts +0 -37
  66. package/types-3.4/__package__.d.ts +0 -4
  67. package/types-3.4/index.d.ts +0 -15
package/types/index.d.ts CHANGED
@@ -1,15 +1,14 @@
1
- export * from "./__package__";
2
- export * from "./Button";
3
- export * from "./CheckBox";
4
- export * from "./ColorInput";
5
- export * from "./Form";
6
- export * from "./FieldForm";
7
- export * from "./Input";
8
- export * from "./InputRange";
9
- export * from "./OnOff";
10
- export * from "./Radio";
11
- export * from "./Range";
12
- export * from "./Select";
13
- export * from "./Slider";
14
- export * from "./TextArea";
15
- //# sourceMappingURL=index.d.ts.map
1
+ export * from "./__package__.ts";
2
+ export * from "./Button.ts";
3
+ export * from "./CheckBox.ts";
4
+ export * from "./ColorInput.ts";
5
+ export * from "./Form.ts";
6
+ export * from "./FieldForm.ts";
7
+ export * from "./Input.ts";
8
+ export * from "./InputRange.ts";
9
+ export * from "./OnOff.ts";
10
+ export * from "./Radio.ts";
11
+ export * from "./Range.ts";
12
+ export * from "./Select.ts";
13
+ export * from "./Slider.ts";
14
+ export * from "./TextArea.ts";