cd99efd0c901df6d1461e8fe1a34c555ed45ac7693a334106e10102ad4e33bc5bca71ecdb9736d5e2dcec3f22562986559e3227cf6bf64a99d492754d31917 593 B

12345678910111213141516171819202122232425262728
  1. import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
  2. const cardProps = buildProps({
  3. header: {
  4. type: String,
  5. default: ""
  6. },
  7. footer: {
  8. type: String,
  9. default: ""
  10. },
  11. bodyStyle: {
  12. type: definePropType([String, Object, Array]),
  13. default: ""
  14. },
  15. headerClass: String,
  16. bodyClass: String,
  17. footerClass: String,
  18. shadow: {
  19. type: String,
  20. values: ["always", "hover", "never"],
  21. default: void 0
  22. }
  23. });
  24. const cardContextKey = Symbol("cardContextKey");
  25. export { cardContextKey, cardProps };
  26. //# sourceMappingURL=card.mjs.map