@bpmn-io/properties-panel 3.32.0 → 3.33.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/assets/properties-panel.css +1 -1
- package/dist/assets/properties-panel.css +7 -1
- package/dist/index.esm.js +5 -11
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -11
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -162,22 +162,16 @@ LaunchIcon.defaultProps = {
|
|
|
162
162
|
viewBox: "0 0 32 32"
|
|
163
163
|
};
|
|
164
164
|
var OpenPopupIcon = function OpenPopupIcon(props) {
|
|
165
|
-
return jsxRuntime.
|
|
165
|
+
return jsxRuntime.jsx("svg", {
|
|
166
166
|
...props,
|
|
167
|
-
children:
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
}), jsxRuntime.jsx("path", {
|
|
171
|
-
fill: "currentColor",
|
|
172
|
-
d: "M18 26H4V16h2v-2H4a2.006 2.006 0 0 0-2 2v10a2.006 2.006 0 0 0 2 2h14a2.006 2.006 0 0 0 2-2v-2h-2Z"
|
|
173
|
-
})]
|
|
167
|
+
children: jsxRuntime.jsx("path", {
|
|
168
|
+
d: "M6 15v-1H2.7L7 9.7 6.3 9 2 13.3V10H1v5zm4-14v1h3.3L9 6.3l.7.7L14 2.7V6h1V1z"
|
|
169
|
+
})
|
|
174
170
|
});
|
|
175
171
|
};
|
|
176
172
|
OpenPopupIcon.defaultProps = {
|
|
177
173
|
xmlns: "http://www.w3.org/2000/svg",
|
|
178
|
-
|
|
179
|
-
height: "16",
|
|
180
|
-
viewBox: "0 0 32 32"
|
|
174
|
+
viewBox: "0 0 16 16"
|
|
181
175
|
};
|
|
182
176
|
|
|
183
177
|
function Header(props) {
|