| 12345678910111213141516171819 |
- import { baseAnnotationChannels, basePostInference, basePreInference, } from './utils';
- import { Link } from './link';
- export const Connector = (...args) => {
- return Link(...args);
- };
- const shapes = ['connector'];
- Connector.props = {
- defaultShape: 'connector',
- defaultLabelShape: 'label',
- composite: false,
- channels: [
- ...baseAnnotationChannels({ shapes }),
- { name: 'x', required: true },
- { name: 'y', required: true },
- ],
- preInference: [...basePreInference()],
- postInference: [...basePostInference()],
- };
- //# sourceMappingURL=connector.js.map
|