Skip to content

Commit

Permalink
feat: update to v1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Dec 1, 2023
2 parents b121f62 + 53b864e commit f02f28e
Show file tree
Hide file tree
Showing 42 changed files with 2,052 additions and 2,284 deletions.
45 changes: 44 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,49 @@ All notable changes to [bpmn-js-element-templates](https://github.com/bpmn-io/bp

___Note:__ Yet to be released changes appear here._

## 1.9.1

* `FIX`: disallow subscription binding for `bpmn:SendTask`
* `DEPS`: update to `@bpmn-io/[email protected]`

## 1.9.0

* `FEAT`: support `isActive` condition ([#19](https://github.com/bpmn-io/bpmn-js-element-templates/issues/19))
* `FEAT`: add conditional correlationKey rendering ([#19](https://github.com/bpmn-io/bpmn-js-element-templates/issues/19))
* `DEPS`: update to `@bpmn-io/[email protected]`


## 1.8.0

* `FEAT`: support receive and send task message templating ([#30](https://github.com/bpmn-io/bpmn-js-element-templates/pull/30))
* `DEPS`: update to `@bpmn-io/[email protected]`

## 1.7.0

* `FEAT`: support `zeebe:taskDefinition` binding ([#29](https://github.com/bpmn-io/bpmn-js-element-templates/pull/29))

## 1.6.1

* `FIX`: display multi-instance configuration in properties panel

## 1.6.0

* `FEAT`: add `zeebe:subscription` in single command ([#21](https://github.com/bpmn-io/bpmn-js-element-templates/issues/21))
* `FIX`: clean up empty `zeebe:subscription` ([#21](https://github.com/bpmn-io/bpmn-js-element-templates/issues/21))
* `DEPS`: update to `[email protected]`

## 1.5.0

* `FEAT`: support `camunda:executionListener` with `implementationType` ([#13](https://github.com/bpmn-io/bpmn-js-element-templates/issues/13))
* `FIX`: set `$parent` property when creating non-primitive properties ([#22](https://github.com/bpmn-io/bpmn-js-element-templates/pull/22))
* `DEPS`: update to `@bpmn-io/[email protected]`

## 1.4.0

* `FEAT`: visually show deprecated templates ([#11](https://github.com/bpmn-io/bpmn-js-element-templates/issues/11))
* `DEPS`: update to `@bpmn-io/[email protected]`


## 1.3.0

* `FEAT`: support tooltips in template properties and groups ([#8](https://github.com/bpmn-io/bpmn-js-element-templates/issues/8))
Expand Down Expand Up @@ -37,4 +80,4 @@ ___Note:__ Yet to be released changes appear here._

## 1.0.0

* initial release
* initial release
19 changes: 18 additions & 1 deletion assets/element-templates.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.bio-properties-panel {
--color-grey-225-10-50: hsl(225, 10%, 50%);

--select-template-background-color: var(--color-blue-205-100-50);
--select-template-hover-background-color: var(--color-blue-205-100-45);
--select-template-fill-color: var(--color-white);
Expand All @@ -8,6 +10,9 @@
--unknown-template-hover-background-color: var(--color-red-360-100-40);

--select-template-information-text-color: var(--color-grey-225-10-55);

--deprecated-template-hover-background-color: var(--color-grey-225-10-50);
--deprecated-template-background-color: var(--color-grey-225-10-55);
}

.bio-properties-panel-header-template-icon {
Expand Down Expand Up @@ -62,6 +67,17 @@
color: var(--text-error-color);
}

.bio-properties-panel-deprecated-template-button .bio-properties-panel-group-header-button {
background-color: var(--deprecated-template-background-color);
color: var(--select-template-label-color);
fill: var(--select-template-fill-color);
}

.bio-properties-panel-deprecated-template-button:hover .bio-properties-panel-group-header-button:hover {
background-color: var(--deprecated-template-hover-background-color);
}


.bio-properties-panel-template-not-found .bio-properties-panel-group-header-button {
background-color: var(--unknown-template-background-color);
color: var(--select-template-label-color);
Expand All @@ -78,6 +94,7 @@
}

.bio-properties-panel-template-not-found-text,
.bio-properties-panel-template-update-available-text {
.bio-properties-panel-template-update-available-text,
.bio-properties-panel-deprecated-template-text {
width: 216px;
}
4 changes: 0 additions & 4 deletions karma.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ module.exports = function(karma) {
] : [])
}
}
},
{
test: /\.svg$/,
use: [ 'react-svg-loader' ]
}
]
},
Expand Down
Loading

0 comments on commit f02f28e

Please sign in to comment.