Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dmn-js-shared

Package Overview
Dependencies
Maintainers
1
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dmn-js-shared - npm Package Compare versions

Comparing version 1.2.2 to 1.3.0

.npmignore

6

lib/features/modeling/behavior/IdChangeBehavior.js

@@ -57,3 +57,7 @@ import { forEach } from 'min-dash/lib/collection';

element.authorityRequirement.forEach(authorityRequirement => {
const { requiredAuthority, requiredDecision, requiredInput } = authorityRequirement;
const {
requiredAuthority,
requiredDecision,
requiredInput
} = authorityRequirement;

@@ -60,0 +64,0 @@ if (requiredAuthority && requiredAuthority.href === `#${oldId}`) {

@@ -22,2 +22,16 @@ 'use strict';

function isInput(element) {
return is(element, 'dmn:InputClause');
}
module.exports.isInput = isInput;
function isOutput(element) {
return is(element, 'dmn:OutputClause');
}
module.exports.isOutput = isOutput;
/**

@@ -24,0 +38,0 @@ * Return the business object for a given element.

2

package.json
{
"name": "dmn-js-shared",
"description": "Shared components used by dmn-js",
"version": "1.2.2",
"version": "1.3.0",
"scripts": {

@@ -6,0 +6,0 @@ "test": "karma start",

@@ -15,3 +15,6 @@ import View from 'lib/base/View';

this._modules = [].concat(options.modules || [], options.additionalModules || []).reverse();
this._modules = [].concat(
options.modules || [],
options.additionalModules || []
).reverse();

@@ -18,0 +21,0 @@ this._eventBus = new EventBus();

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc