How to use the diagram-js/lib/features/rules/RuleProvider.call function in diagram-js

To help you get started, we’ve selected a few diagram-js examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bpmn-io / bpmn-js / test / util / custom-rules / CustomRules.js View on Github external
export default function CustomRules(eventBus) {
  RuleProvider.call(this, eventBus);
}
github bpmn-io / bpmn-js / test / integration / custom-elements / CustomRules.js View on Github external
export default function CustomRules(eventBus) {
  RuleProvider.call(this, eventBus);
}
github bpmn-io / bpmn-js-nyan / lib / resize-all-rules / ResizeAllRules.js View on Github external
export default function ResizeAllRules(eventBus) {
  RuleProvider.call(this, eventBus);
}
github bpmn-io / dmn-js / lib / table / features / io-label / IoLabelRules.js View on Github external
function IoLabelRules(eventBus, ioLabel) {
  RuleProvider.call(this, eventBus);

  this._ioLabel = ioLabel;
}
github bpmn-io / dmn-js / lib / features / simple-mode / SimpleModeRules.js View on Github external
function SimpleModeRules(eventBus, simpleMode, elementRegistry) {
  RuleProvider.call(this, eventBus);

  this._simpleMode = simpleMode;
  this._elementRegistry = elementRegistry;
}
github bpmn-io / bpmn-js-examples / custom-elements / app / custom-modeler / custom / CustomRules.js View on Github external
export default function CustomRules(eventBus) {
  RuleProvider.call(this, eventBus);
}
github bpmn-io / bpmn-js / lib / features / modeling / rules / ModelingRules.js View on Github external
function ModelingRules(eventBus) {
  RuleProvider.call(this, eventBus);
}
github bpmn-io / bpmn-js-examples / custom-modeling-rules / lib / custom-rules / CustomRules.js View on Github external
export default function CustomRules(eventBus) {
  RuleProvider.call(this, eventBus);
}
github bpmn-io / table-js / lib / features / utility-column / UtilityColumnRules.js View on Github external
function UtilityColumnRules(eventBus, utilityColumn) {
  RuleProvider.call(this, eventBus);

  this._utilityColumn = utilityColumn;
}