@bigbinary/neeto-form-frontend 1.0.37 → 1.0.39
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 +2 -0
- package/dist/index.cjs.js +1430 -691
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +1431 -692
- package/dist/index.js.map +1 -1
- package/index.d.ts +11 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -209,6 +209,15 @@ interface StarRatingProps {
|
|
|
209
209
|
isRequired: boolean;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
+
interface AdditionalGuestsProps {
|
|
213
|
+
name: string;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
interface ConditionProps {
|
|
217
|
+
name: string;
|
|
218
|
+
isRequired: boolean;
|
|
219
|
+
}
|
|
220
|
+
|
|
212
221
|
export const BuildForm: React.FC<BuildFormProps>;
|
|
213
222
|
export const ExternalForm: React.FC<ExternalFormProps>;
|
|
214
223
|
export const Submission: React.FC<SubmissionProps>;
|
|
@@ -224,6 +233,8 @@ export const Fields: {
|
|
|
224
233
|
Rating: React.FC<RatingProps>;
|
|
225
234
|
Terms: React.FC<TermsProps>;
|
|
226
235
|
StarRating: React.FC<StarRatingProps>;
|
|
236
|
+
AdditionalGuests: React.FC<AdditionalGuestsProps>;
|
|
237
|
+
Condition: React.FC<ConditionProps>;
|
|
227
238
|
};
|
|
228
239
|
|
|
229
240
|
export const useBuildFormState: () => IBuildFormState;
|