timeline-item.js 836 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var runtime = require('../../../utils/vue/props/runtime.js');
  4. var icon = require('../../../utils/vue/icon.js');
  5. const timelineItemProps = runtime.buildProps({
  6. timestamp: {
  7. type: String,
  8. default: ""
  9. },
  10. hideTimestamp: Boolean,
  11. center: Boolean,
  12. placement: {
  13. type: String,
  14. values: ["top", "bottom"],
  15. default: "bottom"
  16. },
  17. type: {
  18. type: String,
  19. values: ["primary", "success", "warning", "danger", "info"],
  20. default: ""
  21. },
  22. color: {
  23. type: String,
  24. default: ""
  25. },
  26. size: {
  27. type: String,
  28. values: ["normal", "large"],
  29. default: "normal"
  30. },
  31. icon: {
  32. type: icon.iconPropType
  33. },
  34. hollow: Boolean
  35. });
  36. exports.timelineItemProps = timelineItemProps;
  37. //# sourceMappingURL=timeline-item.js.map