@opengov/form-renderer 0.0.4 → 0.0.7
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/fields/CalculatedNumber.d.ts +3 -0
- package/dist/index.d.ts +2 -1
- package/dist/lib.js +1451 -1430
- package/dist/lib.umd.cjs +29 -29
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,9 @@ import { default as Checkbox } from './fields/Checkbox';
|
|
|
2
2
|
import { default as DateInput } from './fields/DateInput';
|
|
3
3
|
import { default as TextInput } from './fields/TextInput';
|
|
4
4
|
import { default as NumberInput } from './fields/NumberInput';
|
|
5
|
+
import { default as CalculatedNumberInput } from './fields/CalculatedNumber';
|
|
5
6
|
import { default as Select } from './fields/Select';
|
|
6
7
|
import { default as FormFieldLabel } from './fields/FormFieldLabel';
|
|
7
8
|
import { default as FormProvider } from './FormProvider';
|
|
8
|
-
export { FormProvider, FormFieldLabel, Checkbox, DateInput, TextInput, NumberInput, Select };
|
|
9
|
+
export { FormProvider, FormFieldLabel, Checkbox, DateInput, TextInput, NumberInput, CalculatedNumberInput, Select };
|
|
9
10
|
export default function FormRenderer(): import("react/jsx-runtime").JSX.Element;
|