@atlaskit/editor-plugin-card 16.7.2 → 16.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 +11 -0
- package/cardPlugin/package.json +17 -0
- package/cardPluginType/package.json +17 -0
- package/dist/cjs/entry-points/cardPlugin.js +12 -0
- package/dist/cjs/entry-points/cardPluginType.js +1 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/cardPlugin.js +2 -0
- package/dist/es2019/entry-points/cardPluginType.js +0 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/cardPlugin.js +2 -0
- package/dist/esm/entry-points/cardPluginType.js +0 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/cardPlugin.d.ts +1 -0
- package/dist/types/entry-points/cardPluginType.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/cardPlugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/cardPluginType.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/package.json +8 -8
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-card
|
|
2
2
|
|
|
3
|
+
## 16.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f1eebdf4ed96b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1eebdf4ed96b) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 16.7.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-card/cardPlugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/cardPlugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/cardPlugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/cardPlugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/cardPlugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/cardPlugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-card/cardPluginType",
|
|
3
|
+
"main": "../dist/cjs/entry-points/cardPluginType.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/cardPluginType.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/cardPluginType.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/cardPluginType.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/cardPluginType.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "cardPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _cardPlugin.cardPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _cardPlugin = require("../cardPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { cardPlugin } from '../cardPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CardPlugin, CardPluginDependencies } from '../cardPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Request, CardPluginOptions, CardPluginState } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { cardPlugin } from '../cardPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CardPlugin, CardPluginDependencies } from '../cardPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Request, CardPluginOptions, CardPluginState } from '../types/index';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-card",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.8.0",
|
|
4
4
|
"description": "Card plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"@atlaskit/custom-steps": "^0.16.0",
|
|
35
35
|
"@atlaskit/editor-card-provider": "^6.7.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
37
|
-
"@atlaskit/editor-plugin-base": "^11.
|
|
38
|
-
"@atlaskit/editor-plugin-connectivity": "^10.
|
|
37
|
+
"@atlaskit/editor-plugin-base": "^11.1.0",
|
|
38
|
+
"@atlaskit/editor-plugin-connectivity": "^10.1.0",
|
|
39
39
|
"@atlaskit/editor-plugin-decorations": "^10.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-editor-disabled": "^10.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-editor-viewmode": "^12.1.0",
|
|
42
42
|
"@atlaskit/editor-plugin-feature-flags": "^9.1.0",
|
|
43
43
|
"@atlaskit/editor-plugin-floating-toolbar": "^12.1.0",
|
|
44
44
|
"@atlaskit/editor-plugin-grid": "^10.2.0",
|
|
45
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
46
|
-
"@atlaskit/editor-plugin-width": "^11.
|
|
45
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
46
|
+
"@atlaskit/editor-plugin-width": "^11.1.0",
|
|
47
47
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
48
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
48
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
49
49
|
"@atlaskit/editor-smart-link-draggable": "^0.5.0",
|
|
50
50
|
"@atlaskit/frontend-utilities": "^3.3.0",
|
|
51
51
|
"@atlaskit/icon": "^34.5.0",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"@atlaskit/platform-feature-flags-react": "^0.5.0",
|
|
62
62
|
"@atlaskit/primitives": "^19.0.0",
|
|
63
63
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
64
|
-
"@atlaskit/smart-card": "^44.
|
|
65
|
-
"@atlaskit/tmp-editor-statsig": "^80.
|
|
64
|
+
"@atlaskit/smart-card": "^44.11.0",
|
|
65
|
+
"@atlaskit/tmp-editor-statsig": "^80.3.0",
|
|
66
66
|
"@atlaskit/tokens": "^13.0.0",
|
|
67
67
|
"@babel/runtime": "^7.0.0",
|
|
68
68
|
"@emotion/react": "^11.7.1",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-card/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|