@atlaskit/editor-plugin-card 7.4.9 → 7.5.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-card
|
|
2
2
|
|
|
3
|
+
## 7.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`22e6e9fdea37a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/22e6e9fdea37a) -
|
|
8
|
+
Debounced embed card
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 7.4.9
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -537,8 +537,6 @@ var embedCardNodeView = exports.embedCardNodeView = function embedCardNodeView(_
|
|
|
537
537
|
CompetitorPrompt: CompetitorPrompt,
|
|
538
538
|
isPageSSRed: isPageSSRed
|
|
539
539
|
};
|
|
540
|
-
return new EmbedCard(node, view, getPos, portalProviderAPI, eventDispatcher, reactComponentProps
|
|
541
|
-
// @portal-render-immediately
|
|
542
|
-
true).init();
|
|
540
|
+
return new EmbedCard(node, view, getPos, portalProviderAPI, eventDispatcher, reactComponentProps).init();
|
|
543
541
|
};
|
|
544
542
|
};
|
|
@@ -510,7 +510,5 @@ export const embedCardNodeView = ({
|
|
|
510
510
|
CompetitorPrompt,
|
|
511
511
|
isPageSSRed
|
|
512
512
|
};
|
|
513
|
-
return new EmbedCard(node, view, getPos, portalProviderAPI, eventDispatcher, reactComponentProps
|
|
514
|
-
// @portal-render-immediately
|
|
515
|
-
true).init();
|
|
513
|
+
return new EmbedCard(node, view, getPos, portalProviderAPI, eventDispatcher, reactComponentProps).init();
|
|
516
514
|
};
|
|
@@ -530,8 +530,6 @@ export var embedCardNodeView = function embedCardNodeView(_ref4) {
|
|
|
530
530
|
CompetitorPrompt: CompetitorPrompt,
|
|
531
531
|
isPageSSRed: isPageSSRed
|
|
532
532
|
};
|
|
533
|
-
return new EmbedCard(node, view, getPos, portalProviderAPI, eventDispatcher, reactComponentProps
|
|
534
|
-
// @portal-render-immediately
|
|
535
|
-
true).init();
|
|
533
|
+
return new EmbedCard(node, view, getPos, portalProviderAPI, eventDispatcher, reactComponentProps).init();
|
|
536
534
|
};
|
|
537
535
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-card",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"description": "Card plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^3.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-base": "^4.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-connectivity": "^3.1.0",
|
|
42
|
-
"@atlaskit/editor-plugin-decorations": "^3.
|
|
42
|
+
"@atlaskit/editor-plugin-decorations": "^3.1.0",
|
|
43
43
|
"@atlaskit/editor-plugin-editor-disabled": "^3.0.0",
|
|
44
44
|
"@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
|
|
45
45
|
"@atlaskit/editor-plugin-feature-flags": "^2.0.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@atlaskit/primitives": "^14.11.0",
|
|
63
63
|
"@atlaskit/smart-card": "^40.13.0",
|
|
64
64
|
"@atlaskit/theme": "^19.0.0",
|
|
65
|
-
"@atlaskit/tmp-editor-statsig": "^11.
|
|
65
|
+
"@atlaskit/tmp-editor-statsig": "^11.6.0",
|
|
66
66
|
"@atlaskit/tokens": "^6.0.0",
|
|
67
67
|
"@babel/runtime": "^7.0.0",
|
|
68
68
|
"@emotion/react": "^11.7.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"uuid": "^3.1.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@atlaskit/editor-common": "^107.
|
|
75
|
+
"@atlaskit/editor-common": "^107.29.0",
|
|
76
76
|
"@atlaskit/link-provider": "^3.7.0",
|
|
77
77
|
"react": "^18.2.0",
|
|
78
78
|
"react-intl-next": "npm:react-intl@^5.18.1"
|