import { baseAnnotationChannels, basePostInference, basePreInference, } from './utils'; import { AbstractRange } from './range'; export const RangeY = () => { return AbstractRange({ extendX: true }); }; const shapes = ['range']; RangeY.props = { defaultShape: 'range', defaultLabelShape: 'label', composite: false, channels: [ ...baseAnnotationChannels({ shapes }), { name: 'y', required: true }, ], preInference: [...basePreInference()], postInference: [...basePostInference()], }; //# sourceMappingURL=rangeY.js.map