@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.
- package/dist/index.js +227 -1288
- package/dist/index.js.map +7 -1
- package/package.json +31 -34
- package/src/Button.ts +11 -10
- package/src/CheckBox.ts +21 -13
- package/src/ColorInput.ts +16 -10
- package/src/FieldForm.ts +2 -2
- package/src/Form.ts +20 -13
- package/src/Input.ts +39 -24
- package/src/InputRange.ts +24 -15
- package/src/OnOff.ts +15 -10
- package/src/Radio.ts +21 -13
- package/src/Range.ts +33 -21
- package/src/Select.ts +24 -15
- package/src/Slider.ts +7 -3
- package/src/TextArea.ts +19 -12
- package/src/__package__.ts +2 -2
- package/src/index.ts +14 -14
- package/types/Button.d.ts +10 -21
- package/types/CheckBox.d.ts +17 -26
- package/types/ColorInput.d.ts +14 -21
- package/types/FieldForm.d.ts +1 -2
- package/types/Form.d.ts +18 -27
- package/types/Input.d.ts +28 -42
- package/types/InputRange.d.ts +20 -31
- package/types/OnOff.d.ts +12 -21
- package/types/Radio.d.ts +17 -26
- package/types/Range.d.ts +29 -46
- package/types/Select.d.ts +20 -31
- package/types/Slider.d.ts +3 -3
- package/types/TextArea.d.ts +18 -31
- package/types/__package__.d.ts +2 -3
- package/types/index.d.ts +14 -15
- package/dist/index.es6.js +0 -1271
- package/dist/index.es6.js.map +0 -1
- package/dist/index.min.js +0 -2
- package/dist/index.min.js.map +0 -1
- package/types/Button.d.ts.map +0 -1
- package/types/CheckBox.d.ts.map +0 -1
- package/types/ColorInput.d.ts.map +0 -1
- package/types/FieldForm.d.ts.map +0 -1
- package/types/Form.d.ts.map +0 -1
- package/types/Input.d.ts.map +0 -1
- package/types/InputRange.d.ts.map +0 -1
- package/types/OnOff.d.ts.map +0 -1
- package/types/Radio.d.ts.map +0 -1
- package/types/Range.d.ts.map +0 -1
- package/types/Select.d.ts.map +0 -1
- package/types/Slider.d.ts.map +0 -1
- package/types/TextArea.d.ts.map +0 -1
- package/types/__package__.d.ts.map +0 -1
- package/types/index.d.ts.map +0 -1
- package/types-3.4/Button.d.ts +0 -29
- package/types-3.4/CheckBox.d.ts +0 -35
- package/types-3.4/ColorInput.d.ts +0 -29
- package/types-3.4/FieldForm.d.ts +0 -11
- package/types-3.4/Form.d.ts +0 -53
- package/types-3.4/Input.d.ts +0 -51
- package/types-3.4/InputRange.d.ts +0 -41
- package/types-3.4/OnOff.d.ts +0 -58
- package/types-3.4/Radio.d.ts +0 -34
- package/types-3.4/Range.d.ts +0 -55
- package/types-3.4/Select.d.ts +0 -40
- package/types-3.4/Slider.d.ts +0 -86
- package/types-3.4/TextArea.d.ts +0 -37
- package/types-3.4/__package__.d.ts +0 -4
- 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";
|