68e1a501c19744b26bd8fea2285e97e7bdb7103e6f52ac72e29fb335fc513353386c3531c5e78f82d6b8f3ebfa9c792f9c02ae0a0f19f6f37593dbda6276c4 698 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var vue = require('vue');
  4. var tableGrid = require('../table-grid.js');
  5. function _isSlot(s) {
  6. return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !vue.isVNode(s);
  7. }
  8. const RightTable = (props, {
  9. slots
  10. }) => {
  11. if (!props.columns.length)
  12. return;
  13. const {
  14. rightTableRef,
  15. ...rest
  16. } = props;
  17. return vue.createVNode(tableGrid["default"], vue.mergeProps({
  18. "ref": rightTableRef
  19. }, rest), _isSlot(slots) ? slots : {
  20. default: () => [slots]
  21. });
  22. };
  23. var RightTable$1 = RightTable;
  24. exports["default"] = RightTable$1;
  25. //# sourceMappingURL=right-table.js.map