addon/components/ui-form.js

  1. import layout from '../templates/components/ui-form';
  2. import Component from '@ember/component';
  3.  
  4. /**
  5. ui-form component
  6.  
  7. @module components
  8. @namespace components
  9. @class UiForm
  10. @constructor
  11. */
  12. export default Component.extend({
  13. layout: layout,
  14. /**
  15. * The root component element
  16. *
  17. * @property {String} tagName
  18. * @default "div"
  19. */
  20. tagName: 'div',
  21.  
  22. /**
  23. * the form theme
  24. *
  25. * @property {String} theme
  26. */
  27. theme: '',
  28. /**
  29. * the form loading status
  30. *
  31. * @property {Boolean} loading
  32. */
  33. loading:false,
  34.  
  35. /**
  36. * the form error status
  37. *
  38. * @property {Boolean} error
  39. */
  40. error:false,
  41.  
  42. /**
  43. * the form success status
  44. *
  45. * @property {Boolean} error
  46. */
  47. success:false,
  48.  
  49. /**
  50. * the form warning status
  51. *
  52. * @property {Boolean} warning
  53. */
  54. warning:false,
  55.  
  56. /**
  57. * Class names to apply to the button
  58. *
  59. * @property {Array} classNames
  60. */
  61. classNameBindings: ['_uiClass', 'theme', '_componentClass', 'success:success:', 'warning:warning:', 'loading:loading:', 'error:error:'],
  62. _uiClass: 'ui',
  63. _componentClass:'form',
  64. });
  65.