1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- //Client Input for Payments
- var _default = {
- "name": {
- type: "text",
- placeholder: "First Name",
- columns: "col s12 m6",
- filter: {
- required: true
- }
- },
- "surname": {
- type: "text",
- placeholder: "Last Name",
- columns: "col s12 m6",
- filter: {
- required: true
- }
- },
- "company": {
- type: "text",
- placeholder: "Company",
- columns: "col s12 m6"
- },
- "phone": {
- type: "text",
- placeholder: "Phone",
- columns: "col s12 m6",
- filter: {
- required: true
- }
- },
- "mobile": {
- type: "text",
- placeholder: "Mobile Phone",
- columns: "col s12 m6"
- }
- };
- exports.default = _default;
|