legendContinuousBlock.js 624 B

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