@camunda/camunda-composite-components 0.1.0 → 0.1.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.
|
@@ -25,10 +25,6 @@ const HeaderPanel = styled(CarbonHeaderPanel)`
|
|
|
25
25
|
`
|
|
26
26
|
const BottomElements = styled.div`
|
|
27
27
|
align-self: end;
|
|
28
|
-
|
|
29
|
-
button {
|
|
30
|
-
padding-top: 6px;
|
|
31
|
-
}
|
|
32
28
|
`
|
|
33
29
|
const C3NavigationSideBar = (props) => {
|
|
34
30
|
const { icon, sideBar, children, version, bottomChildren } = props
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react"
|
|
2
2
|
import { Link } from "@carbon/react"
|
|
3
|
-
import { ArrowRight, TrashCan } from "@carbon/react/icons"
|
|
3
|
+
import { ArrowRight, TrashCan, Add } from "@carbon/react/icons"
|
|
4
4
|
export function createAppProps() {
|
|
5
5
|
return {
|
|
6
6
|
name: "Console",
|
|
@@ -147,6 +147,16 @@ export function createOrgSideBarProps(options) {
|
|
|
147
147
|
},
|
|
148
148
|
},
|
|
149
149
|
elements,
|
|
150
|
+
bottomElements: [
|
|
151
|
+
{
|
|
152
|
+
key: "createTrial",
|
|
153
|
+
label: "Create new Trial Org",
|
|
154
|
+
renderIcon: Add,
|
|
155
|
+
onClick: () => {
|
|
156
|
+
console.log("clicked")
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
],
|
|
150
160
|
}
|
|
151
161
|
}
|
|
152
162
|
export function createUserSideBarProps(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/camunda-composite-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"clean": "rimraf lib/",
|
|
6
6
|
"copy-css-files": "copyfiles -u 1 src/components/**/*.css lib/esm",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@babel/preset-env": "7.22.4",
|
|
23
23
|
"@babel/preset-react": "7.22.3",
|
|
24
24
|
"@babel/preset-typescript": "7.21.5",
|
|
25
|
-
"@carbon/react": "1.
|
|
25
|
+
"@carbon/react": "1.34.1",
|
|
26
26
|
"@mdx-js/react": "1.6.22",
|
|
27
27
|
"@storybook/addon-a11y": "7.0.18",
|
|
28
28
|
"@storybook/addon-actions": "7.0.18",
|