defaults.mjs 490 B

12345678910111213141516171819202122232425
  1. //#region ../../packages/components/table/src/table-body/defaults.ts
  2. const defaultProps = {
  3. store: {
  4. required: true,
  5. type: Object
  6. },
  7. stripe: Boolean,
  8. tooltipEffect: String,
  9. tooltipOptions: { type: Object },
  10. context: {
  11. default: () => ({}),
  12. type: Object
  13. },
  14. rowClassName: [String, Function],
  15. rowStyle: [Object, Function],
  16. fixed: {
  17. type: String,
  18. default: ""
  19. },
  20. highlight: Boolean
  21. };
  22. //#endregion
  23. export { defaultProps as default };
  24. //# sourceMappingURL=defaults.mjs.map