@atlaskit/smart-card 26.7.0 → 26.8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 26.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a1b70608039`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1b70608039) - [ux] Adds editor toolbar to link datasource component
8
+
3
9
  ## 26.7.0
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.7.0",
3
+ "version": "26.8.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.7.0",
3
+ "version": "26.8.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.7.0",
3
+ "version": "26.8.0",
4
4
  "sideEffects": false
5
5
  }
@@ -2,7 +2,7 @@ import { JsonLd } from 'json-ld-types';
2
2
  export type ResolveResponse = JsonLd.Response;
3
3
  export { SmartCardProvider as Provider, SmartCardContext, useSmartLinkAnalytics, } from './state';
4
4
  export type { ProviderProps, CardType } from './state';
5
- export type { CardAdf, InlineCardAdf, BlockCardAdf, EmbedCardAdf, DatasourceAdf, } from '@atlaskit/linking-common';
5
+ export type { CardAdf, InlineCardAdf, BlockCardAdf, EmbedCardAdf, DatasourceAdf, DatasourceAdfView, } from '@atlaskit/linking-common';
6
6
  export { APIError } from '@atlaskit/linking-common';
7
7
  export { CardClient as Client } from '@atlaskit/link-provider';
8
8
  export { Card } from './view/Card';
@@ -2,7 +2,7 @@ import { JsonLd } from 'json-ld-types';
2
2
  export type ResolveResponse = JsonLd.Response;
3
3
  export { SmartCardProvider as Provider, SmartCardContext, useSmartLinkAnalytics, } from './state';
4
4
  export type { ProviderProps, CardType } from './state';
5
- export type { CardAdf, InlineCardAdf, BlockCardAdf, EmbedCardAdf, DatasourceAdf, } from '@atlaskit/linking-common';
5
+ export type { CardAdf, InlineCardAdf, BlockCardAdf, EmbedCardAdf, DatasourceAdf, DatasourceAdfView, } from '@atlaskit/linking-common';
6
6
  export { APIError } from '@atlaskit/linking-common';
7
7
  export { CardClient as Client } from '@atlaskit/link-provider';
8
8
  export { Card } from './view/Card';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.7.0",
3
+ "version": "26.8.0",
4
4
  "description": "Smart card component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
package/report.api.md CHANGED
@@ -28,6 +28,7 @@ import { CardType } from '@atlaskit/linking-common';
28
28
  import { CardClient as Client } from '@atlaskit/link-provider';
29
29
  import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
30
30
  import { DatasourceAdf } from '@atlaskit/linking-common';
31
+ import { DatasourceAdfView } from '@atlaskit/linking-common';
31
32
  import { EditorCardProvider } from '@atlaskit/link-provider';
32
33
  import { editorCardProvider } from '@atlaskit/link-provider';
33
34
  import { EmbedCardAdf } from '@atlaskit/linking-common';
@@ -419,6 +420,8 @@ type CustomActionItem = BaseActionItem & {
419
420
 
420
421
  export { DatasourceAdf };
421
422
 
423
+ export { DatasourceAdfView };
424
+
422
425
  // @public (undocumented)
423
426
  type DestinationProduct = 'bitbucket' | 'confluence' | 'jira' | 'trello';
424
427
 
@@ -17,6 +17,7 @@ import { CardType } from '@atlaskit/linking-common';
17
17
  import { CardClient as Client } from '@atlaskit/link-provider';
18
18
  import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
19
19
  import { DatasourceAdf } from '@atlaskit/linking-common';
20
+ import { DatasourceAdfView } from '@atlaskit/linking-common';
20
21
  import { EditorCardProvider } from '@atlaskit/link-provider';
21
22
  import { editorCardProvider } from '@atlaskit/link-provider';
22
23
  import { EmbedCardAdf } from '@atlaskit/linking-common';
@@ -318,6 +319,8 @@ type CustomActionItem = BaseActionItem & {
318
319
 
319
320
  export { DatasourceAdf }
320
321
 
322
+ export { DatasourceAdfView }
323
+
321
324
  // @public (undocumented)
322
325
  type DestinationProduct = 'bitbucket' | 'confluence' | 'jira' | 'trello';
323
326