@atlaskit/editor-plugin-card 5.2.1 → 5.2.2
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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-card
|
|
2
2
|
|
|
3
|
+
## 5.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#123042](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/123042)
|
|
8
|
+
[`c21eaf81cd674`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c21eaf81cd674) -
|
|
9
|
+
Fix card state on embed card which was never removed if the card was deleted or changed.
|
|
10
|
+
|
|
3
11
|
## 5.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -400,7 +400,8 @@ var EmbedCard = exports.EmbedCard = /*#__PURE__*/function (_ReactNodeView) {
|
|
|
400
400
|
fullWidthMode: fullWidthMode,
|
|
401
401
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
402
402
|
pluginInjectionApi: pluginInjectionApi,
|
|
403
|
-
onClickCallback: onClickCallback
|
|
403
|
+
onClickCallback: onClickCallback,
|
|
404
|
+
id: this.id
|
|
404
405
|
});
|
|
405
406
|
}
|
|
406
407
|
}, {
|
|
@@ -378,7 +378,8 @@ export class EmbedCard extends ReactNodeView {
|
|
|
378
378
|
fullWidthMode: fullWidthMode,
|
|
379
379
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
380
380
|
pluginInjectionApi: pluginInjectionApi,
|
|
381
|
-
onClickCallback: onClickCallback
|
|
381
|
+
onClickCallback: onClickCallback,
|
|
382
|
+
id: this.id
|
|
382
383
|
});
|
|
383
384
|
}
|
|
384
385
|
destroy() {
|
|
@@ -393,7 +393,8 @@ export var EmbedCard = /*#__PURE__*/function (_ReactNodeView) {
|
|
|
393
393
|
fullWidthMode: fullWidthMode,
|
|
394
394
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
395
395
|
pluginInjectionApi: pluginInjectionApi,
|
|
396
|
-
onClickCallback: onClickCallback
|
|
396
|
+
onClickCallback: onClickCallback,
|
|
397
|
+
id: this.id
|
|
397
398
|
});
|
|
398
399
|
}
|
|
399
400
|
}, {
|