@camunda/camunda-composite-components 0.4.1 → 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.
- package/lib/esm/package.json +12 -12
- package/lib/esm/src/api/profile.d.ts +2 -1
- package/lib/esm/src/assets/appTeaserPreviews.d.ts +3 -0
- package/lib/esm/src/assets/appTeaserPreviews.js +3 -0
- package/lib/esm/src/components/c3-app-teaser/app-teaser-cards.d.ts +17 -0
- package/lib/esm/src/components/c3-app-teaser/app-teaser-cards.js +25 -0
- package/lib/esm/src/components/c3-app-teaser/app-teaster-card.d.ts +14 -0
- package/lib/esm/src/components/c3-app-teaser/app-teaster-card.js +19 -0
- package/lib/esm/src/components/c3-app-teaser/c3-app-teaser-page.d.ts +8 -0
- package/lib/esm/src/components/c3-app-teaser/c3-app-teaser-page.js +19 -0
- package/lib/esm/src/components/c3-app-teaser/c3-app-teaser.d.ts +12 -0
- package/lib/esm/src/components/c3-app-teaser/c3-app-teaser.js +75 -0
- package/lib/esm/src/components/c3-help-center/c3-help-center.js +1 -1
- package/lib/esm/src/components/c3-help-center/c3-help-center.types.d.ts +0 -13
- package/lib/esm/src/components/c3-help-center/help-center.js +1 -1
- package/lib/esm/src/components/c3-help-center/tabs/feedback.js +1 -1
- package/lib/esm/src/components/c3-navigation/{c3-navigation-appbar.d.ts → c3-navigation-appbar/c3-navigation-appbar.d.ts} +1 -1
- package/lib/esm/src/components/c3-navigation/{c3-navigation-appbar.js → c3-navigation-appbar/c3-navigation-appbar.js} +69 -20
- package/lib/esm/src/components/c3-navigation/c3-navigation-appbar/components.d.ts +6 -0
- package/lib/esm/src/components/c3-navigation/c3-navigation-appbar/components.js +15 -0
- package/lib/esm/src/components/c3-navigation/c3-navigation-sidebar/c3-navigation-sidebar.types.d.ts +9 -0
- package/lib/esm/src/components/c3-navigation/c3-navigation-sidebar/c3-notification-sidebar.js +1 -1
- package/lib/esm/src/components/c3-navigation/c3-navigation.js +5 -3
- package/lib/esm/src/components/c3-navigation/story-helpers.d.ts +1 -0
- package/lib/esm/src/components/c3-navigation/story-helpers.js +64 -41
- package/lib/esm/src/components/c3-onboarding-survey/c3-onboarding-survey.js +1 -1
- package/lib/esm/src/components/c3-onboarding-survey/step.d.ts +0 -1
- package/lib/esm/src/components/c3-user-configuration/c3-profile-provider/c3-profile-provider.d.ts +1 -1
- package/lib/esm/src/components/c3-user-configuration/c3-profile-provider/c3-profile-provider.js +3 -0
- package/lib/esm/src/components/c3-user-configuration/c3-user-configuration-provider.d.ts +1 -0
- package/lib/esm/src/index.d.ts +4 -2
- package/lib/esm/src/index.js +3 -1
- package/lib/esm/src/utils/camunda.d.ts +7 -0
- package/lib/esm/src/utils/camunda.js +30 -0
- package/lib/esm/src/utils/camunda.types.d.ts +44 -0
- package/lib/esm/src/utils/camunda.types.js +1 -0
- package/package.json +12 -12
- /package/lib/esm/src/{icons → assets}/c3-icons.d.ts +0 -0
- /package/lib/esm/src/{icons → assets}/c3-icons.js +0 -0
- /package/lib/esm/src/{icons → assets}/c3-icons.types.d.ts +0 -0
- /package/lib/esm/src/{icons → assets}/c3-icons.types.js +0 -0
package/lib/esm/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
|
|
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
|
|
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.
|
|
34
|
-
"@babel/preset-env": "7.23.
|
|
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.
|
|
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,12 +54,12 @@
|
|
|
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.
|
|
58
|
-
"@types/react": "18.2.
|
|
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
|
-
"@typescript-eslint/eslint-plugin": "6.19.
|
|
62
|
-
"@typescript-eslint/parser": "6.19.
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "6.19.1",
|
|
62
|
+
"@typescript-eslint/parser": "6.19.1",
|
|
63
63
|
"axe-playwright": "1.2.3",
|
|
64
64
|
"babel-loader": "9.1.3",
|
|
65
65
|
"conventional-changelog-conventionalcommits": "7.0.2",
|
|
@@ -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": "
|
|
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": "
|
|
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.
|
|
92
|
+
"webpack": "5.90.1"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
95
|
"jwt-decode": "4.0.0",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { C3NotificationsProps } from "../components/c3-navigation/c3-navigation.types";
|
|
2
2
|
import { Theme } from "../components/c3-user-configuration/c3-profile-provider/c3-profile-provider";
|
|
3
|
-
import {
|
|
3
|
+
import { Organization } from "../utils/camunda.types";
|
|
4
|
+
import { Cluster } from "../utils/camunda.types";
|
|
4
5
|
export type Profile = {
|
|
5
6
|
theme: Theme;
|
|
6
7
|
};
|