@atlaskit/smart-card 26.3.7 → 26.3.9

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,17 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 26.3.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [`d476c6d5223`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d476c6d5223) - Add an optional err?:Error property to OnErrorCallback for upcoming changes
8
+
9
+ ## 26.3.8
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 26.3.7
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.3.7",
3
+ "version": "26.3.9",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.3.7",
3
+ "version": "26.3.9",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.3.7",
3
+ "version": "26.3.9",
4
4
  "sideEffects": false
5
5
  }
@@ -26,4 +26,5 @@ export type ErrorCardType = 'errored' | 'fallback' | 'forbidden' | 'not_found' |
26
26
  export type OnErrorCallback = (data: {
27
27
  status: Extract<CardType, ErrorCardType>;
28
28
  url: string;
29
+ err?: Error;
29
30
  }) => void;
@@ -26,4 +26,5 @@ export type ErrorCardType = 'errored' | 'fallback' | 'forbidden' | 'not_found' |
26
26
  export type OnErrorCallback = (data: {
27
27
  status: Extract<CardType, ErrorCardType>;
28
28
  url: string;
29
+ err?: Error;
29
30
  }) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.3.7",
3
+ "version": "26.3.9",
4
4
  "description": "Smart card component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -43,8 +43,8 @@
43
43
  "@atlaskit/in-product-testing": "^0.2.0",
44
44
  "@atlaskit/link-analytics": "^8.0.2",
45
45
  "@atlaskit/link-client-extension": "^1.1.0",
46
- "@atlaskit/linking-common": "^2.12.0",
47
- "@atlaskit/linking-types": "^3.0.0",
46
+ "@atlaskit/linking-common": "^2.13.0",
47
+ "@atlaskit/linking-types": "^4.0.0",
48
48
  "@atlaskit/logo": "^13.14.0",
49
49
  "@atlaskit/lozenge": "^11.4.0",
50
50
  "@atlaskit/media-common": "^5.0.0",
package/report.api.md CHANGED
@@ -680,6 +680,7 @@ export type OnActionMenuOpenChangeOptions = {
680
680
  type OnErrorCallback = (data: {
681
681
  status: Extract<CardType, ErrorCardType>;
682
682
  url: string;
683
+ err?: Error;
683
684
  }) => void;
684
685
 
685
686
  // @public (undocumented)
@@ -540,6 +540,7 @@ export type OnActionMenuOpenChangeOptions = {
540
540
  type OnErrorCallback = (data: {
541
541
  status: Extract<CardType, ErrorCardType>;
542
542
  url: string;
543
+ err?: Error;
543
544
  }) => void;
544
545
 
545
546
  // @public (undocumented)