@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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-form-frontend",
3
- "version": "1.0.37",
3
+ "version": "1.0.39",
4
4
  "description": "Neeto Form Engine Frontend",
5
5
  "author": "BigBinary",
6
6
  "license": "MIT",