@bpmn-io/properties-panel 0.17.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,22 @@ All notable changes to [`@bpmn-io/properties-panel`](https://github.com/bpmn-io/
6
6
 
7
7
  ___Note:__ Yet to be released changes appear here._
8
8
 
9
+ ## 0.20.0
10
+
11
+ * `FEAT`: keep `FEEL` enabled state ([#174](https://github.com/bpmn-io/properties-panel/pull/174))
12
+ * `DEPS`: update to `@bpmn-io/feel-editor@0.3.0`
13
+
14
+ ## 0.19.0
15
+
16
+ * `FEAT`: make group headers sticky ([#175](https://github.com/bpmn-io/properties-panel/pull/175))
17
+ * `CHORE`: use element as key for entries ([#176](https://github.com/bpmn-io/properties-panel/pull/176))
18
+
19
+ ## 0.18.0
20
+
21
+ * `FEAT`: pass variables to FEEL editor ([#171](https://github.com/bpmn-io/properties-panel/pull/171))
22
+ * `FIX`: add error class to text area with error ([#165](https://github.com/bpmn-io/properties-panel/issues/165))
23
+ * `CHORE`: revert sticky headers ([#172](https://github.com/bpmn-io/properties-panel/pull/172))
24
+
9
25
  ## 0.17.0
10
26
 
11
27
  * `FEAT`: add `FeelEntry` component ([#158](https://github.com/bpmn-io/properties-panel/pull/158))
@@ -120,8 +120,11 @@
120
120
  overflow: hidden;
121
121
  }
122
122
 
123
- .bio-properties-panel * {
123
+ .bio-properties-panel {
124
124
  color: var(--text-base-color);
125
+ }
126
+
127
+ .bio-properties-panel * {
125
128
  font-size: var(--text-size-base);
126
129
  line-height: var(--text-line-height);
127
130
  font-weight: 400;
@@ -173,7 +176,7 @@
173
176
  background-color: var(--header-background-color);
174
177
  border-bottom: 1px solid var(--header-bottom-border-color);
175
178
  width: 100%;
176
- z-index: 1;
179
+ z-index: 10;
177
180
  max-height: 64px;
178
181
  overflow: hidden;
179
182
  }
@@ -246,7 +249,7 @@
246
249
  position: -webkit-sticky; /* for safari */
247
250
  position: sticky;
248
251
  top: 0;
249
- z-index: 1;
252
+ z-index: 10;
250
253
  }
251
254
 
252
255
  .bio-properties-panel-group-header .bio-properties-panel-group-header-title {
@@ -988,7 +991,7 @@ textarea.bio-properties-panel-input {
988
991
  background-color: var(--feel-indicator-background-color);
989
992
  border-right: 0px;
990
993
  border-radius: 2px 0 0 2px;
991
- z-index: 100;
994
+ z-index: 1;
992
995
  height: 100%;
993
996
  width: 2em;
994
997
  text-align: center;