props.ts 481 B

12345678910111213141516171819202122232425262728293031
  1. export const ariaProps = {
  2. ariaHidden: Boolean,
  3. ariaRole: String,
  4. ariaLabel: String,
  5. ariaLabelledby: String,
  6. ariaDescribedby: String,
  7. ariaBusy: Boolean,
  8. // lStyle: String
  9. }
  10. export default {
  11. ...ariaProps,
  12. lClass: String,
  13. name: {
  14. type: String,
  15. required: true,
  16. },
  17. color: String,
  18. size: [String, Number],
  19. prefix: String,
  20. // type: String,
  21. inherit: {
  22. type: Boolean,
  23. default: true
  24. },
  25. web: {
  26. type: Boolean,
  27. default: true
  28. },
  29. lStyle:[String, Object, Array],
  30. }