@bpmn-io/properties-panel 0.11.0 → 0.13.1
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 +15 -0
- package/assets/properties-panel.css +25 -0
- package/dist/index.esm.js +548 -188
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +554 -185
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,21 @@ 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.13.1
|
|
10
|
+
|
|
11
|
+
* `FIX`: add accessible title for documentation ref ([#144](https://github.com/bpmn-io/properties-panel/pull/144))
|
|
12
|
+
* `FIX`: make event bus prop optional ([#143](https://github.com/bpmn-io/properties-panel/pull/143))
|
|
13
|
+
|
|
14
|
+
## 0.13.0
|
|
15
|
+
|
|
16
|
+
* `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
|
|
17
|
+
* `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
|
|
18
|
+
* `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
|
|
19
|
+
|
|
20
|
+
## 0.12.0
|
|
21
|
+
|
|
22
|
+
* `FEAT`: allow addition of FEEL icon to TextFields and TextAreas ([#138](https://github.com/bpmn-io/properties-panel/pull/138))
|
|
23
|
+
|
|
9
24
|
## 0.11.0
|
|
10
25
|
|
|
11
26
|
* `FEAT`: all group and entry components specified as `component` are actual components, not elements ([#134](https://github.com/bpmn-io/properties-panel/pull/134))
|
|
@@ -185,6 +185,11 @@
|
|
|
185
185
|
margin-top: -6px;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
+
.bio-properties-panel-header-actions {
|
|
189
|
+
margin-left: auto;
|
|
190
|
+
margin-top: auto;
|
|
191
|
+
}
|
|
192
|
+
|
|
188
193
|
/**
|
|
189
194
|
* Scroll container
|
|
190
195
|
*/
|
|
@@ -875,3 +880,23 @@ textarea.bio-properties-panel-input {
|
|
|
875
880
|
.bio-properties-panel-dropdown-button__menu-item--actionable:hover {
|
|
876
881
|
background-color: var(--dropdown-item-hover-background-color);
|
|
877
882
|
}
|
|
883
|
+
|
|
884
|
+
.bio-properties-panel-feel-input {
|
|
885
|
+
position: relative;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.bio-properties-panel-feel-input input {
|
|
889
|
+
padding-right: 2em
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.bio-properties-panel-feel-icon {
|
|
893
|
+
display: inline-block;
|
|
894
|
+
height: 16px;
|
|
895
|
+
vertical-align: text-bottom;
|
|
896
|
+
padding: 0 3px;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.bio-properties-panel-feel-icon svg {
|
|
900
|
+
width: 16px;
|
|
901
|
+
height: 16px;
|
|
902
|
+
}
|