@bigbinary/neeto-form-frontend 1.2.53 → 1.2.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-form-frontend",
3
- "version": "1.2.53",
3
+ "version": "1.2.55",
4
4
  "description": "Neeto Form Engine Frontend",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-form-nano",
package/types.d.ts CHANGED
@@ -216,6 +216,13 @@ interface EmailProps {
216
216
  isRequired: boolean;
217
217
  }
218
218
 
219
+ interface NameProps {
220
+ name: string;
221
+ isRequired?: boolean;
222
+ isLabelDisabled?: boolean;
223
+ enableFieldCode?: boolean;
224
+ }
225
+
219
226
  interface DropdownProps {
220
227
  item: Item;
221
228
  name: string;
@@ -279,6 +286,7 @@ export const Submission: React.FC<SubmissionProps>;
279
286
  export const NeetoFormProvider: React.FC;
280
287
  export const Fields: {
281
288
  Email: React.FC<EmailProps>;
289
+ Name: React.FC<NameProps>;
282
290
  Dropdown: React.FC<DropdownProps>;
283
291
  ShortText: React.FC<ShortTextProps>;
284
292
  LongText: React.FC<LongTextProps>;