@camunda/camunda-composite-components 0.4.1-rc.2 → 0.4.2-rc.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.
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/camunda-cloud/camunda-composite-components.git"
6
6
  },
7
- "version": "0.4.1-rc.1",
7
+ "version": "0.4.1",
8
8
  "scripts": {
9
9
  "clean": "rimraf lib/",
10
10
  "build": "yarn clean && tsc",
@@ -13,7 +13,7 @@
13
13
  "build:storybook": "storybook build",
14
14
  "build:all": "yarn build && yarn build:storybook",
15
15
  "serve:storybook": "serve ./storybook-static -p 6006 -n -L",
16
- "prepare": "husky install",
16
+ "prepare": "husky",
17
17
  "format": "prettier --write .",
18
18
  "lint": "eslint src/",
19
19
  "lint:fix": "eslint --fix src/",
@@ -30,13 +30,13 @@
30
30
  "test": "yarn test:ts && yarn test:storybook && yarn test:visual-regression:docker"
31
31
  },
32
32
  "devDependencies": {
33
- "@babel/core": "7.23.7",
34
- "@babel/preset-env": "7.23.8",
33
+ "@babel/core": "7.23.9",
34
+ "@babel/preset-env": "7.23.9",
35
35
  "@babel/preset-react": "7.23.3",
36
36
  "@babel/preset-typescript": "7.23.3",
37
37
  "@carbon/react": "1.48.1",
38
38
  "@mdx-js/react": "3.0.0",
39
- "@playwright/test": "1.41.1",
39
+ "@playwright/test": "1.41.2",
40
40
  "@semantic-release/changelog": "6.0.3",
41
41
  "@semantic-release/git": "10.0.1",
42
42
  "@storybook/addon-a11y": "7.6.10",
@@ -54,8 +54,8 @@
54
54
  "@types/carbon-components-react": "7.55.10",
55
55
  "@types/event-source-polyfill": "1.0.5",
56
56
  "@types/mixpanel-browser": "2.48.1",
57
- "@types/node": "20.11.14",
58
- "@types/react": "18.2.48",
57
+ "@types/node": "20.11.16",
58
+ "@types/react": "18.2.52",
59
59
  "@types/react-dom": "18.2.18",
60
60
  "@types/styled-components": "5.1.34",
61
61
  "@typescript-eslint/eslint-plugin": "6.19.1",
@@ -74,7 +74,7 @@
74
74
  "eslint-plugin-react-hooks": "4.6.0",
75
75
  "eslint-plugin-storybook": "0.6.15",
76
76
  "event-source-polyfill": "1.0.31",
77
- "husky": "8.0.3",
77
+ "husky": "9.0.5",
78
78
  "mixpanel-browser": "2.48.1",
79
79
  "prettier": "3.2.4",
80
80
  "react": "18.2.0",
@@ -82,14 +82,14 @@
82
82
  "rimraf": "5.0.5",
83
83
  "sass": "1.70.0",
84
84
  "sass-loader": "13.3.3",
85
- "semantic-release": "22.0.12",
85
+ "semantic-release": "23.0.0",
86
86
  "serve": "14.2.1",
87
87
  "storybook": "7.6.10",
88
88
  "style-loader": "3.3.4",
89
89
  "styled-components": "6.1.8",
90
90
  "typescript": "5.3.3",
91
91
  "wait-on": "7.2.0",
92
- "webpack": "5.90.0"
92
+ "webpack": "5.90.1"
93
93
  },
94
94
  "dependencies": {
95
95
  "jwt-decode": "4.0.0",
@@ -15,7 +15,7 @@ export const C3AppTeaser = ({ appName: app, hasTrialExpired, canUpgradePlan, can
15
15
  redirectToCheckout();
16
16
  }
17
17
  else {
18
- window.location.href = `https://console.${decodedAudience}/org/${activeOrganizationId}`;
18
+ window.location.href = `https://console.${decodedAudience}/org/${activeOrganizationId}/checkout`;
19
19
  }
20
20
  }
21
21
  else {
@@ -37,7 +37,7 @@ export const C3NavigationAppBar = ({ appBar, forwardRef, navbar, }) => {
37
37
  element.href =
38
38
  currentApp === "modeler"
39
39
  ? ""
40
- : `https://modeler.${decodedAudience}/login?returnUrl=/org/${activeOrg?.uuid}`;
40
+ : `https://modeler.${decodedAudience}/org/${activeOrg?.uuid}`;
41
41
  }
42
42
  }
43
43
  else {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const OnboardingStep: ({ theme, config, generic, setGeneric, }: {
3
2
  theme: string;
4
3
  config: any;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/camunda-cloud/camunda-composite-components.git"
6
6
  },
7
- "version": "0.4.1-rc.2",
7
+ "version": "0.4.2-rc.0",
8
8
  "scripts": {
9
9
  "clean": "rimraf lib/",
10
10
  "build": "yarn clean && tsc",
@@ -13,7 +13,7 @@
13
13
  "build:storybook": "storybook build",
14
14
  "build:all": "yarn build && yarn build:storybook",
15
15
  "serve:storybook": "serve ./storybook-static -p 6006 -n -L",
16
- "prepare": "husky install",
16
+ "prepare": "husky",
17
17
  "format": "prettier --write .",
18
18
  "lint": "eslint src/",
19
19
  "lint:fix": "eslint --fix src/",
@@ -30,13 +30,13 @@
30
30
  "test": "yarn test:ts && yarn test:storybook && yarn test:visual-regression:docker"
31
31
  },
32
32
  "devDependencies": {
33
- "@babel/core": "7.23.7",
34
- "@babel/preset-env": "7.23.8",
33
+ "@babel/core": "7.23.9",
34
+ "@babel/preset-env": "7.23.9",
35
35
  "@babel/preset-react": "7.23.3",
36
36
  "@babel/preset-typescript": "7.23.3",
37
37
  "@carbon/react": "1.48.1",
38
38
  "@mdx-js/react": "3.0.0",
39
- "@playwright/test": "1.41.1",
39
+ "@playwright/test": "1.41.2",
40
40
  "@semantic-release/changelog": "6.0.3",
41
41
  "@semantic-release/git": "10.0.1",
42
42
  "@storybook/addon-a11y": "7.6.10",
@@ -54,8 +54,8 @@
54
54
  "@types/carbon-components-react": "7.55.10",
55
55
  "@types/event-source-polyfill": "1.0.5",
56
56
  "@types/mixpanel-browser": "2.48.1",
57
- "@types/node": "20.11.14",
58
- "@types/react": "18.2.48",
57
+ "@types/node": "20.11.16",
58
+ "@types/react": "18.2.52",
59
59
  "@types/react-dom": "18.2.18",
60
60
  "@types/styled-components": "5.1.34",
61
61
  "@typescript-eslint/eslint-plugin": "6.19.1",
@@ -74,7 +74,7 @@
74
74
  "eslint-plugin-react-hooks": "4.6.0",
75
75
  "eslint-plugin-storybook": "0.6.15",
76
76
  "event-source-polyfill": "1.0.31",
77
- "husky": "8.0.3",
77
+ "husky": "9.0.5",
78
78
  "mixpanel-browser": "2.48.1",
79
79
  "prettier": "3.2.4",
80
80
  "react": "18.2.0",
@@ -82,14 +82,14 @@
82
82
  "rimraf": "5.0.5",
83
83
  "sass": "1.70.0",
84
84
  "sass-loader": "13.3.3",
85
- "semantic-release": "22.0.12",
85
+ "semantic-release": "23.0.0",
86
86
  "serve": "14.2.1",
87
87
  "storybook": "7.6.10",
88
88
  "style-loader": "3.3.4",
89
89
  "styled-components": "6.1.8",
90
90
  "typescript": "5.3.3",
91
91
  "wait-on": "7.2.0",
92
- "webpack": "5.90.0"
92
+ "webpack": "5.90.1"
93
93
  },
94
94
  "dependencies": {
95
95
  "jwt-decode": "4.0.0",