PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / assets / js / common / formFieldsTemplates.js
ameliabooking / v3 / src / assets / js / common Last commit date
appointments.js 1 year ago attendees.js 1 year ago colorManipulation.js 3 years ago customer.js 1 year ago date.js 1 year ago defaultCustomize.js 1 year ago employee.js 1 year ago events.js 1 year ago formFieldsTemplates.js 3 years ago formatting.js 1 year ago helper.js 1 year ago image.js 1 year ago integrationApple.js 1 year ago integrationGoogle.js 1 year ago integrationOutlook.js 1 year ago integrationStripe.js 1 year ago integrationZoom.js 1 year ago licence.js 2 years ago objectAndArrayManipulation.js 3 years ago pricing.js 1 year ago recurring.js 1 year ago responsive.js 1 year ago scrollElements.js 4 years ago settings.js 1 year ago translationsElementPlus.js 1 year ago
formFieldsTemplates.js
34 lines
1 // * Import from Vue
2 import {
3 markRaw,
4 reactive
5 } from "vue";
6
7 // * Form Field templates
8 import AmInputFormField from "../../../views/common/FormFields/AmInputFormField.vue";
9 import AmPhoneFormField from "../../../views/common/FormFields/AmPhoneFormField.vue";
10 import AmSelectFormField from "../../../views/common/FormFields/AmSelectFormField.vue";
11 import AmRadioFormField from "../../../views/common/FormFields/AmRadioFormField.vue";
12 import AmCheckboxFormField from "../../../views/common/FormFields/AmCheckboxFormField.vue";
13 import AmAttachmentFormField from "../../../views/common/FormFields/AmAttachmentFormField.vue";
14 import AmDatePickerFormField from "../../../views/common/FormFields/AmDatePickerFormField.vue";
15 import AmContentFormField from "../../../views/common/FormFields/AmContentFormField.vue";
16 import AmAddressFormField from "../../../views/common/FormFields/AmAddressFormField.vue";
17
18 // * Form Fields Object
19 let formFieldsTemplates = reactive({
20 text: markRaw(AmInputFormField),
21 'text-area': markRaw(AmInputFormField),
22 phone: markRaw(AmPhoneFormField),
23 select: markRaw(AmSelectFormField),
24 radio: markRaw(AmRadioFormField),
25 checkbox: markRaw(AmCheckboxFormField),
26 file: markRaw(AmAttachmentFormField),
27 datepicker: markRaw(AmDatePickerFormField),
28 content: markRaw(AmContentFormField),
29 address: markRaw(AmAddressFormField)
30 })
31
32 export {
33 formFieldsTemplates
34 }