Update FieldOptions Component to Include Additional Input Types (#768)

- Expanded the `typesWithoutPlaceholder` array in `FieldOptions.vue` to include new input types: 'matrix', 'signature', 'barcode', 'scale', 'slider', and 'rating'. This enhancement allows for broader form field options, improving the flexibility and usability of the form component.

These changes aim to enhance the form capabilities by accommodating a wider range of input types, thereby enriching the user experience.
This commit is contained in:
Chirag Chhatrala 2025-05-27 13:50:45 +05:30 committed by GitHub
parent 3730b80980
commit 434d8b694f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ export default {
},
data() {
return {
typesWithoutPlaceholder: ['date', 'checkbox', 'files', 'payment'],
typesWithoutPlaceholder: ['date', 'checkbox', 'files', 'payment', 'matrix', 'signature', 'barcode', 'scale', 'slider', 'rating'],
editorToolbarCustom: [
['bold', 'italic', 'underline', 'link']
],