@atlaskit/editor-plugin-card 0.14.0 → 0.14.1
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 +28 -0
- package/dist/types/plugin.d.ts +1 -1
- package/dist/types-ts4.5/plugin.d.ts +1 -1
- package/package.json +3 -3
- package/report.api.md +1 -1
- package/tmp/api-report-tmp.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-card
|
|
2
2
|
|
|
3
|
+
## 0.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646) [`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make feature flags plugin optional in all plugins including:
|
|
8
|
+
|
|
9
|
+
- analytics
|
|
10
|
+
- base
|
|
11
|
+
- card
|
|
12
|
+
- code-block
|
|
13
|
+
- expand
|
|
14
|
+
- extension
|
|
15
|
+
- floating-toolbar
|
|
16
|
+
- hyperlink
|
|
17
|
+
- insert-block
|
|
18
|
+
- layout
|
|
19
|
+
- layout
|
|
20
|
+
- list
|
|
21
|
+
- media
|
|
22
|
+
- paste
|
|
23
|
+
- rule
|
|
24
|
+
- table
|
|
25
|
+
- tasks-and-decisions
|
|
26
|
+
|
|
27
|
+
We already treat it as optional in the plugins, so this is just ensuring that the plugin is not mandatory to be added to the preset.
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
|
|
3
31
|
## 0.14.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import type { CardPluginOptions, CardPluginState } from './types';
|
|
|
11
11
|
export type CardPlugin = NextEditorPlugin<'card', {
|
|
12
12
|
pluginConfiguration: CardPluginOptions;
|
|
13
13
|
dependencies: [
|
|
14
|
-
FeatureFlagsPlugin
|
|
14
|
+
OptionalPlugin<FeatureFlagsPlugin>,
|
|
15
15
|
OptionalPlugin<AnalyticsPlugin>,
|
|
16
16
|
WidthPlugin,
|
|
17
17
|
DecorationsPlugin,
|
|
@@ -11,7 +11,7 @@ import type { CardPluginOptions, CardPluginState } from './types';
|
|
|
11
11
|
export type CardPlugin = NextEditorPlugin<'card', {
|
|
12
12
|
pluginConfiguration: CardPluginOptions;
|
|
13
13
|
dependencies: [
|
|
14
|
-
FeatureFlagsPlugin
|
|
14
|
+
OptionalPlugin<FeatureFlagsPlugin>,
|
|
15
15
|
OptionalPlugin<AnalyticsPlugin>,
|
|
16
16
|
WidthPlugin,
|
|
17
17
|
DecorationsPlugin,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-card",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Card plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"@atlaskit/icon": "^22.0.0",
|
|
49
49
|
"@atlaskit/link-analytics": "^8.3.0",
|
|
50
50
|
"@atlaskit/link-client-extension": "^1.8.0",
|
|
51
|
-
"@atlaskit/link-datasource": "^1.
|
|
51
|
+
"@atlaskit/link-datasource": "^1.19.0",
|
|
52
52
|
"@atlaskit/linking-common": "^4.19.0",
|
|
53
53
|
"@atlaskit/linking-types": "^8.5.0",
|
|
54
54
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
55
|
-
"@atlaskit/primitives": "^1.
|
|
55
|
+
"@atlaskit/primitives": "^1.12.0",
|
|
56
56
|
"@atlaskit/smart-card": "^26.42.0",
|
|
57
57
|
"@atlaskit/theme": "^12.6.0",
|
|
58
58
|
"@atlaskit/tokens": "^1.28.0",
|
package/report.api.md
CHANGED
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ type CardInfo = {
|
|
|
37
37
|
export type CardPlugin = NextEditorPlugin<'card', {
|
|
38
38
|
pluginConfiguration: CardPluginOptions;
|
|
39
39
|
dependencies: [
|
|
40
|
-
FeatureFlagsPlugin
|
|
40
|
+
OptionalPlugin<FeatureFlagsPlugin>,
|
|
41
41
|
OptionalPlugin<AnalyticsPlugin>,
|
|
42
42
|
WidthPlugin,
|
|
43
43
|
DecorationsPlugin,
|