@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/app/javascript/src/translations/en.json +3 -1
- package/dist/index.cjs.js +278 -125
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +279 -126
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +8 -0
package/package.json
CHANGED
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>;
|