description.mjs 587 B

123456789101112131415161718192021222324252627282930
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. import { useSizeProp } from '../../../hooks/use-size/index.mjs';
  3. const descriptionProps = buildProps({
  4. border: Boolean,
  5. column: {
  6. type: Number,
  7. default: 3
  8. },
  9. direction: {
  10. type: String,
  11. values: ["horizontal", "vertical"],
  12. default: "horizontal"
  13. },
  14. size: useSizeProp,
  15. title: {
  16. type: String,
  17. default: ""
  18. },
  19. extra: {
  20. type: String,
  21. default: ""
  22. },
  23. labelWidth: {
  24. type: [String, Number]
  25. }
  26. });
  27. export { descriptionProps };
  28. //# sourceMappingURL=description.mjs.map