@camunda/camunda-composite-components 0.0.19 → 0.0.20

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.
@@ -219,11 +219,11 @@ export const C3Navigation = ({ app, appBar, forwardRef, navbar, orgSideBar, info
219
219
  navbar.tags.map((tag) => {
220
220
  if (tag?.tooltip !== undefined) {
221
221
  const { content, buttonLabel } = tag.tooltip;
222
- return (React.createElement("div", { style: {
222
+ return (React.createElement("div", { key: tag.key, style: {
223
223
  height: "1.5rem",
224
224
  marginTop: "0.50rem",
225
225
  } },
226
- React.createElement(Toggletip, { key: tag.key },
226
+ React.createElement(Toggletip, null,
227
227
  React.createElement(ToggletipButton, { label: buttonLabel },
228
228
  React.createElement(Tag, { type: tag.color, style: {
229
229
  padding: "0 1rem",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/camunda-composite-components",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "storybook": "start-storybook -p 6006",