timeline-item2.mjs 744 B

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