fc54b91571dea21c8295d2db2c384d0bd124e23fe181ba533926dc02967d6902cd81c10a4cd68f7f0e3dfe2481675a007da325a125afa0fcaae820ff370dea 604 B

12345678910111213141516171819202122232425262728293031
  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. default: ""
  26. }
  27. });
  28. export { descriptionProps };
  29. //# sourceMappingURL=description.mjs.map