defaults.js 597 B

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