UNPKG

dmn-js-decision-table

Version:

A decision table view for dmn-js

14 lines 437 B
import DecisionRuleIndexCellComponent from './components/DecisionRuleIndexCellComponent'; export default class DecisionRuleIndices { constructor(components) { components.onGetComponent('cell', ({ cellType }) => { if (cellType === 'before-rule-cells') { return DecisionRuleIndexCellComponent; } }); } } DecisionRuleIndices.$inject = ['components']; //# sourceMappingURL=DecisionRuleIndices.js.map