AddressInput.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: "Name",
  11. columns: "col s12 m6",
  12. filter: {
  13. required: true
  14. }
  15. },
  16. "address": {
  17. type: "text",
  18. placeholder: "Address",
  19. columns: "col s12 m6",
  20. filter: {
  21. required: true
  22. }
  23. },
  24. "phone": {
  25. type: "text",
  26. placeholder: "Phone",
  27. columns: "col s12 m6",
  28. filter: {
  29. required: true
  30. }
  31. },
  32. "postalcode": {
  33. type: "text",
  34. placeholder: "Postal Code",
  35. columns: "col s12 m6",
  36. filter: {
  37. required: true
  38. }
  39. },
  40. "city": {
  41. type: "text",
  42. placeholder: "City",
  43. columns: "col s12 m6",
  44. filter: {
  45. required: true
  46. }
  47. },
  48. "state": {
  49. type: "text",
  50. placeholder: "State",
  51. columns: "col s12 m6",
  52. filter: {
  53. required: true
  54. }
  55. },
  56. "country": {
  57. type: "text",
  58. placeholder: "Country",
  59. columns: "col s12 m6"
  60. },
  61. "comments": {
  62. type: "text",
  63. placeholder: "Comments",
  64. columns: "col s12 m6"
  65. }
  66. };
  67. exports.default = _default;