@bpmn-io/properties-panel 0.10.2 → 0.13.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 +18 -0
- package/assets/properties-panel.css +25 -0
- package/dist/index.esm.js +1044 -185
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1048 -180
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ 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.0
|
|
10
|
+
|
|
11
|
+
* `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
|
|
12
|
+
* `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
|
|
13
|
+
* `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
|
|
14
|
+
|
|
15
|
+
## 0.12.0
|
|
16
|
+
|
|
17
|
+
* `FEAT`: allow addition of FEEL icon to TextFields and TextAreas ([#138](https://github.com/bpmn-io/properties-panel/pull/138))
|
|
18
|
+
|
|
19
|
+
## 0.11.0
|
|
20
|
+
|
|
21
|
+
* `FEAT`: all group and entry components specified as `component` are actual components, not elements ([#134](https://github.com/bpmn-io/properties-panel/pull/134))
|
|
22
|
+
|
|
23
|
+
### BREAKING CHANGES
|
|
24
|
+
|
|
25
|
+
* `component` property of an entry must be an actual component, not an element
|
|
26
|
+
|
|
9
27
|
## 0.10.2
|
|
10
28
|
|
|
11
29
|
* `FIX`: add missing aria label for `simple` component ([67f374](https://github.com/bpmn-io/properties-panel/commit/67f37491ab8dc8493c8dd1e749d7418d11825125))
|
|
@@ -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
|
+
}
|