@atlaskit/profilecard 24.21.6 → 24.21.8

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,19 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 24.21.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4d676bbdb3ce6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4d676bbdb3ce6) -
8
+ ts-ignore added temporarily to unblock local consumption for help-center, will be removed once
9
+ project refs are setup
10
+
11
+ ## 24.21.7
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 24.21.6
4
18
 
5
19
  ### Patch Changes
@@ -152,7 +152,10 @@ var TeamMembers = function TeamMembers(_ref) {
152
152
  ref: ref
153
153
  }, props, {
154
154
  testId: "first-member"
155
- })) : /*#__PURE__*/_react.default.createElement(Component, props);
155
+ })) :
156
+ /*#__PURE__*/
157
+ // @ts-ignore - Workaround for help-center local consumption
158
+ _react.default.createElement(Component, props);
156
159
  }
157
160
  }
158
161
  }
@@ -135,7 +135,10 @@ const TeamMembers = ({
135
135
  ref: ref
136
136
  }, props, {
137
137
  testId: "first-member"
138
- })) : /*#__PURE__*/React.createElement(Component, props)
138
+ })) :
139
+ /*#__PURE__*/
140
+ // @ts-ignore - Workaround for help-center local consumption
141
+ React.createElement(Component, props)
139
142
  }
140
143
  }
141
144
  })));
@@ -143,7 +143,10 @@ var TeamMembers = function TeamMembers(_ref) {
143
143
  ref: ref
144
144
  }, props, {
145
145
  testId: "first-member"
146
- })) : /*#__PURE__*/React.createElement(Component, props);
146
+ })) :
147
+ /*#__PURE__*/
148
+ // @ts-ignore - Workaround for help-center local consumption
149
+ React.createElement(Component, props);
147
150
  }
148
151
  }
149
152
  }
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- export declare const AgentProfileCardWrapper: ({ children }: {
2
+ export declare const AgentProfileCardWrapper: ({ children, }: {
3
3
  children: React.ReactNode;
4
4
  }) => React.JSX.Element;
@@ -1 +1 @@
1
- export declare const TeamProfileCardLazy: import("react").LazyExoticComponent<(props: import("../../types").TeamProfilecardProps) => import("react").JSX.Element | null>;
1
+ export declare const TeamProfileCardLazy: import("react").LazyExoticComponent<(props: import("../../types").TeamProfilecardProps) => React.JSX.Element | null>;
@@ -5,5 +5,5 @@ interface AnalyticsProps {
5
5
  fireAnalytics: (payload: AnalyticsEventPayload) => void;
6
6
  fireAnalyticsNext: FireEventType;
7
7
  }
8
- declare const UserLoadingState: ({ fireAnalytics, fireAnalyticsNext }: AnalyticsProps) => React.JSX.Element;
8
+ declare const UserLoadingState: ({ fireAnalytics, fireAnalyticsNext, }: AnalyticsProps) => React.JSX.Element;
9
9
  export default UserLoadingState;
@@ -7,5 +7,5 @@ interface AnalyticsProps {
7
7
  fireAnalyticsNext?: <K extends keyof AnalyticsEventAttributes>(eventKey: K, attributes: AnalyticsEventAttributes[K]) => void;
8
8
  profileType: ProfileType;
9
9
  }
10
- export declare const LoadingState: ({ fireAnalytics, fireAnalyticsNext, profileType }: AnalyticsProps) => React.JSX.Element;
10
+ export declare const LoadingState: ({ fireAnalytics, fireAnalyticsNext, profileType, }: AnalyticsProps) => React.JSX.Element;
11
11
  export {};
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import type { TeamContainersSkeletonProps } from '@atlaskit/teams-public';
3
- export declare const TeamContainersSkeleton: ({ numberOfContainers }: TeamContainersSkeletonProps) => React.JSX.Element;
3
+ export declare const TeamContainersSkeleton: ({ numberOfContainers, }: TeamContainersSkeletonProps) => React.JSX.Element;
@@ -31,7 +31,7 @@ export declare const DisabledInfo: ({ children }: {
31
31
  export declare const LozengeWrapper: ({ children }: {
32
32
  children: ReactNode;
33
33
  }) => React.JSX.Element;
34
- export declare const CustomLozengeContainer: ({ children }: {
34
+ export declare const CustomLozengeContainer: ({ children, }: {
35
35
  children: ReactNode;
36
36
  }) => React.JSX.Element;
37
37
  export declare const JobTitleLabel: ({ children }: {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export declare const ReportingLinesSection: ({ children }: {
2
+ export declare const ReportingLinesSection: ({ children, }: {
3
3
  children: React.ReactNode;
4
4
  }) => React.JSX.Element;
5
5
  export declare const ManagerSection: ({ children }: {
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- export declare const AgentProfileCardWrapper: ({ children }: {
2
+ export declare const AgentProfileCardWrapper: ({ children, }: {
3
3
  children: React.ReactNode;
4
4
  }) => React.JSX.Element;
@@ -1 +1 @@
1
- export declare const TeamProfileCardLazy: import("react").LazyExoticComponent<(props: import("../../types").TeamProfilecardProps) => import("react").JSX.Element | null>;
1
+ export declare const TeamProfileCardLazy: import("react").LazyExoticComponent<(props: import("../../types").TeamProfilecardProps) => React.JSX.Element | null>;
@@ -5,5 +5,5 @@ interface AnalyticsProps {
5
5
  fireAnalytics: (payload: AnalyticsEventPayload) => void;
6
6
  fireAnalyticsNext: FireEventType;
7
7
  }
8
- declare const UserLoadingState: ({ fireAnalytics, fireAnalyticsNext }: AnalyticsProps) => React.JSX.Element;
8
+ declare const UserLoadingState: ({ fireAnalytics, fireAnalyticsNext, }: AnalyticsProps) => React.JSX.Element;
9
9
  export default UserLoadingState;
@@ -7,5 +7,5 @@ interface AnalyticsProps {
7
7
  fireAnalyticsNext?: <K extends keyof AnalyticsEventAttributes>(eventKey: K, attributes: AnalyticsEventAttributes[K]) => void;
8
8
  profileType: ProfileType;
9
9
  }
10
- export declare const LoadingState: ({ fireAnalytics, fireAnalyticsNext, profileType }: AnalyticsProps) => React.JSX.Element;
10
+ export declare const LoadingState: ({ fireAnalytics, fireAnalyticsNext, profileType, }: AnalyticsProps) => React.JSX.Element;
11
11
  export {};
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import type { TeamContainersSkeletonProps } from '@atlaskit/teams-public';
3
- export declare const TeamContainersSkeleton: ({ numberOfContainers }: TeamContainersSkeletonProps) => React.JSX.Element;
3
+ export declare const TeamContainersSkeleton: ({ numberOfContainers, }: TeamContainersSkeletonProps) => React.JSX.Element;
@@ -31,7 +31,7 @@ export declare const DisabledInfo: ({ children }: {
31
31
  export declare const LozengeWrapper: ({ children }: {
32
32
  children: ReactNode;
33
33
  }) => React.JSX.Element;
34
- export declare const CustomLozengeContainer: ({ children }: {
34
+ export declare const CustomLozengeContainer: ({ children, }: {
35
35
  children: ReactNode;
36
36
  }) => React.JSX.Element;
37
37
  export declare const JobTitleLabel: ({ children }: {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export declare const ReportingLinesSection: ({ children }: {
2
+ export declare const ReportingLinesSection: ({ children, }: {
3
3
  children: React.ReactNode;
4
4
  }) => React.JSX.Element;
5
5
  export declare const ManagerSection: ({ children }: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "24.21.6",
3
+ "version": "24.21.8",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -45,7 +45,7 @@
45
45
  "@atlaskit/avatar": "^25.5.0",
46
46
  "@atlaskit/avatar-group": "^12.4.0",
47
47
  "@atlaskit/button": "^23.6.0",
48
- "@atlaskit/css": "^0.16.0",
48
+ "@atlaskit/css": "^0.17.0",
49
49
  "@atlaskit/dropdown-menu": "^16.3.0",
50
50
  "@atlaskit/empty-state": "^10.1.0",
51
51
  "@atlaskit/feature-gate-js-client": "^5.5.0",
@@ -61,16 +61,16 @@
61
61
  "@atlaskit/platform-feature-flags": "^1.1.0",
62
62
  "@atlaskit/platform-feature-flags-react": "^0.4.0",
63
63
  "@atlaskit/popup": "^4.6.0",
64
- "@atlaskit/primitives": "^16.2.0",
65
- "@atlaskit/rovo-agent-components": "^3.11.0",
66
- "@atlaskit/rovo-triggers": "^4.3.0",
64
+ "@atlaskit/primitives": "^16.3.0",
65
+ "@atlaskit/rovo-agent-components": "^3.12.0",
66
+ "@atlaskit/rovo-triggers": "^4.4.0",
67
67
  "@atlaskit/spinner": "^19.0.0",
68
68
  "@atlaskit/teams-app-config": "^1.12.0",
69
69
  "@atlaskit/teams-app-internal-analytics": "^1.20.0",
70
70
  "@atlaskit/teams-avatar": "^2.4.0",
71
71
  "@atlaskit/teams-public": "^0.63.0",
72
72
  "@atlaskit/theme": "^21.0.0",
73
- "@atlaskit/tokens": "^8.1.0",
73
+ "@atlaskit/tokens": "^8.3.0",
74
74
  "@atlaskit/tooltip": "^20.10.0",
75
75
  "@babel/runtime": "^7.0.0",
76
76
  "@compiled/react": "^0.18.6",