ClientInput.js 768 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. //Client Input for Payments
  7. var _default = {
  8. "name": {
  9. type: "text",
  10. placeholder: "First Name",
  11. columns: "col s12 m6",
  12. filter: {
  13. required: true
  14. }
  15. },
  16. "surname": {
  17. type: "text",
  18. placeholder: "Last Name",
  19. columns: "col s12 m6",
  20. filter: {
  21. required: true
  22. }
  23. },
  24. "company": {
  25. type: "text",
  26. placeholder: "Company",
  27. columns: "col s12 m6"
  28. },
  29. "phone": {
  30. type: "text",
  31. placeholder: "Phone",
  32. columns: "col s12 m6",
  33. filter: {
  34. required: true
  35. }
  36. },
  37. "mobile": {
  38. type: "text",
  39. placeholder: "Mobile Phone",
  40. columns: "col s12 m6"
  41. }
  42. };
  43. exports.default = _default;