legendContinuousBlockSize.js 700 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.LegendContinuousBlockSize = void 0;
  4. const legendContinuous_1 = require("./legendContinuous");
  5. const legendContinuousSize_1 = require("./legendContinuousSize");
  6. const LegendContinuousBlockSize = (options) => {
  7. return (0, legendContinuousSize_1.LegendContinuousSize)(Object.assign({}, { block: true }, options));
  8. };
  9. exports.LegendContinuousBlockSize = LegendContinuousBlockSize;
  10. exports.LegendContinuousBlockSize.props = Object.assign(Object.assign({}, legendContinuous_1.LegendContinuous.props), { defaultPosition: 'top', defaultOrientation: 'horizontal' });
  11. //# sourceMappingURL=legendContinuousBlockSize.js.map