@atlaskit/profilecard 24.37.0 → 24.37.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 24.37.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 24.37.0
4
10
 
5
11
  ### Minor Changes
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
4
  "target": "es5",
6
5
  "outDir": "../../../../../confluence/tsDist/@atlaskit__profilecard",
7
6
  "rootDir": "../",
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
4
  "target": "es5",
6
5
  "outDir": "../../../../../jira/tsDist/@atlaskit__profilecard/app",
7
6
  "rootDir": "../",
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
4
  "target": "es5",
6
5
  "outDir": "../../../../../tsDist/@atlaskit__profilecard/app",
7
6
  "rootDir": "../",
@@ -7,7 +7,7 @@ export declare const useAgentUrlActions: ({ cloudId, source }: {
7
7
  onCopyAgent: (agentId: string) => void;
8
8
  onDuplicateAgent: (agentId: string) => void;
9
9
  onOpenChat: (agentId: string, agentName: string) => void;
10
- onConversationStarter: ({ agentId, prompt }: {
10
+ onConversationStarter: ({ agentId, prompt, }: {
11
11
  agentId: string;
12
12
  prompt: string;
13
13
  }) => void;
@@ -7,7 +7,7 @@ export declare const useAgentUrlActions: ({ cloudId, source }: {
7
7
  onCopyAgent: (agentId: string) => void;
8
8
  onDuplicateAgent: (agentId: string) => void;
9
9
  onOpenChat: (agentId: string, agentName: string) => void;
10
- onConversationStarter: ({ agentId, prompt }: {
10
+ onConversationStarter: ({ agentId, prompt, }: {
11
11
  agentId: string;
12
12
  prompt: string;
13
13
  }) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "24.37.0",
3
+ "version": "24.37.1",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -42,29 +42,29 @@
42
42
  "@atlaskit/afm-i18n-platform-people-and-teams-profilecard": "2.39.0",
43
43
  "@atlaskit/analytics-next": "^11.1.0",
44
44
  "@atlaskit/atlassian-context": "^0.6.0",
45
- "@atlaskit/avatar": "^25.7.0",
45
+ "@atlaskit/avatar": "^25.8.0",
46
46
  "@atlaskit/avatar-group": "^12.4.0",
47
47
  "@atlaskit/button": "^23.9.0",
48
48
  "@atlaskit/css": "^0.19.0",
49
49
  "@atlaskit/dropdown-menu": "^16.4.0",
50
50
  "@atlaskit/empty-state": "^10.1.0",
51
- "@atlaskit/give-kudos": "^4.12.0",
51
+ "@atlaskit/give-kudos": "^4.13.0",
52
52
  "@atlaskit/heading": "^5.3.0",
53
- "@atlaskit/icon": "^31.0.0",
53
+ "@atlaskit/icon": "^32.0.0",
54
54
  "@atlaskit/link": "3.3.3",
55
55
  "@atlaskit/lozenge": "^13.4.0",
56
56
  "@atlaskit/menu": "^8.4.0",
57
- "@atlaskit/modal-dialog": "^14.10.0",
57
+ "@atlaskit/modal-dialog": "^14.11.0",
58
58
  "@atlaskit/people-teams-ui-public": "^3.7.0",
59
59
  "@atlaskit/platform-feature-flags": "^1.1.0",
60
60
  "@atlaskit/platform-feature-flags-react": "^0.4.0",
61
61
  "@atlaskit/popup": "^4.13.0",
62
62
  "@atlaskit/primitives": "^18.0.0",
63
- "@atlaskit/rovo-agent-components": "^3.33.0",
64
- "@atlaskit/rovo-triggers": "^5.16.0",
63
+ "@atlaskit/rovo-agent-components": "^3.35.0",
64
+ "@atlaskit/rovo-triggers": "^5.18.0",
65
65
  "@atlaskit/spinner": "^19.0.0",
66
66
  "@atlaskit/teams-app-config": "^1.12.0",
67
- "@atlaskit/teams-app-internal-analytics": "^1.24.0",
67
+ "@atlaskit/teams-app-internal-analytics": "^1.25.0",
68
68
  "@atlaskit/teams-avatar": "^2.4.0",
69
69
  "@atlaskit/teams-public": "^0.70.0",
70
70
  "@atlaskit/theme": "^21.0.0",
@@ -83,7 +83,9 @@ const baseFeatureGates = {
83
83
 
84
84
  export const Standard: Story = {
85
85
  name: 'Standard (non-Rovo Dev)',
86
- decorators: [withPlatformFeatureGates({ ...baseFeatureGates, rovo_dev_themed_identity_card: false })],
86
+ decorators: [
87
+ withPlatformFeatureGates({ ...baseFeatureGates, rovo_dev_themed_identity_card: false }),
88
+ ],
87
89
  render: (props) => <AgentProfileCard {...props} />,
88
90
  };
89
91
 
@@ -95,7 +97,9 @@ export const RovoDevGateOff: Story = {
95
97
  creator_type: 'ROVO_DEV',
96
98
  },
97
99
  },
98
- decorators: [withPlatformFeatureGates({ ...baseFeatureGates, rovo_dev_themed_identity_card: false })],
100
+ decorators: [
101
+ withPlatformFeatureGates({ ...baseFeatureGates, rovo_dev_themed_identity_card: false }),
102
+ ],
99
103
  render: (props) => <AgentProfileCard {...props} />,
100
104
  };
101
105
 
@@ -107,6 +111,8 @@ export const RovoDevGateOn: Story = {
107
111
  creator_type: 'ROVO_DEV',
108
112
  },
109
113
  },
110
- decorators: [withPlatformFeatureGates({ ...baseFeatureGates, rovo_dev_themed_identity_card: true })],
114
+ decorators: [
115
+ withPlatformFeatureGates({ ...baseFeatureGates, rovo_dev_themed_identity_card: true }),
116
+ ],
111
117
  render: (props) => <AgentProfileCard {...props} />,
112
118
  };