1
0
Fork 0
mirror of synced 2024-07-05 14:31:17 +12:00
This commit is contained in:
Adria Navarro 2024-03-27 10:10:01 +01:00
parent 5df68cfca7
commit b99a51d48b
4 changed files with 3 additions and 3 deletions

View file

@ -4322,7 +4322,7 @@
}
]
},
"singleattachmentfield": {
"attachmentsinglefield": {
"name": "Single Attachment",
"icon": "Attach",
"styles": ["size"],

View file

@ -16,7 +16,7 @@
[FieldType.LONGFORM]: "longformfield",
[FieldType.DATETIME]: "datetimefield",
[FieldType.ATTACHMENT]: "attachmentfield",
[FieldType.ATTACHMENT_SINGLE]: "singleattachmentfield",
[FieldType.ATTACHMENT_SINGLE]: "attachmentsinglefield",
[FieldType.LINK]: "relationshipfield",
[FieldType.JSON]: "jsonfield",
[FieldType.BARCODEQR]: "codescanner",

View file

@ -9,7 +9,7 @@ export { default as booleanfield } from "./BooleanField.svelte"
export { default as longformfield } from "./LongFormField.svelte"
export { default as datetimefield } from "./DateTimeField.svelte"
export { default as attachmentfield } from "./AttachmentField.svelte"
export { default as singleattachmentfield } from "./SingleAttachmentField.svelte"
export { default as attachmentsinglefield } from "./AttachmentSingleField.svelte"
export { default as relationshipfield } from "./RelationshipField.svelte"
export { default as passwordfield } from "./PasswordField.svelte"
export { default as formstep } from "./FormStep.svelte"