@atlaskit/editor-plugin-insert-block 12.0.16 → 13.0.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 +32 -0
- package/package.json +39 -47
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 13.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 13.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
|
|
14
|
+
Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
|
|
15
|
+
|
|
16
|
+
Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
|
|
17
|
+
|
|
18
|
+
Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
|
|
19
|
+
|
|
20
|
+
```diff
|
|
21
|
+
- "typesVersions": {
|
|
22
|
+
- ">=4.5 <4.9": {
|
|
23
|
+
- "*": [
|
|
24
|
+
- "dist/types-ts4.5/*",
|
|
25
|
+
- "dist/types-ts4.5/index.d.ts"
|
|
26
|
+
- ]
|
|
27
|
+
- }
|
|
28
|
+
- },
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
|
|
3
35
|
## 12.0.16
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-insert-block",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.1",
|
|
4
4
|
"description": "Insert block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,56 +16,48 @@
|
|
|
16
16
|
"module": "dist/esm/index.js",
|
|
17
17
|
"module:es2019": "dist/es2019/index.js",
|
|
18
18
|
"types": "dist/types/index.d.ts",
|
|
19
|
-
"typesVersions": {
|
|
20
|
-
">=4.5 <4.9": {
|
|
21
|
-
"*": [
|
|
22
|
-
"dist/types-ts4.5/*",
|
|
23
|
-
"dist/types-ts4.5/index.d.ts"
|
|
24
|
-
]
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
19
|
"sideEffects": [
|
|
28
20
|
"*.compiled.css"
|
|
29
21
|
],
|
|
30
22
|
"atlaskit:src": "src/index.ts",
|
|
31
23
|
"dependencies": {
|
|
32
|
-
"@atlaskit/browser-apis": "^0.0
|
|
33
|
-
"@atlaskit/editor-plugin-analytics": "^
|
|
34
|
-
"@atlaskit/editor-plugin-block-type": "^
|
|
35
|
-
"@atlaskit/editor-plugin-code-block": "^
|
|
36
|
-
"@atlaskit/editor-plugin-connectivity": "^
|
|
37
|
-
"@atlaskit/editor-plugin-date": "^
|
|
38
|
-
"@atlaskit/editor-plugin-emoji": "^
|
|
39
|
-
"@atlaskit/editor-plugin-expand": "^
|
|
40
|
-
"@atlaskit/editor-plugin-extension": "^
|
|
41
|
-
"@atlaskit/editor-plugin-feature-flags": "^
|
|
42
|
-
"@atlaskit/editor-plugin-hyperlink": "^
|
|
43
|
-
"@atlaskit/editor-plugin-image-upload": "^
|
|
44
|
-
"@atlaskit/editor-plugin-layout": "^
|
|
45
|
-
"@atlaskit/editor-plugin-media": "^
|
|
46
|
-
"@atlaskit/editor-plugin-media-insert": "^
|
|
47
|
-
"@atlaskit/editor-plugin-mentions": "^
|
|
48
|
-
"@atlaskit/editor-plugin-metrics": "^
|
|
49
|
-
"@atlaskit/editor-plugin-panel": "^
|
|
50
|
-
"@atlaskit/editor-plugin-placeholder-text": "^
|
|
51
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^
|
|
52
|
-
"@atlaskit/editor-plugin-quick-insert": "^
|
|
53
|
-
"@atlaskit/editor-plugin-rule": "^
|
|
54
|
-
"@atlaskit/editor-plugin-status": "^
|
|
55
|
-
"@atlaskit/editor-plugin-table": "^
|
|
56
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "^
|
|
57
|
-
"@atlaskit/editor-plugin-toolbar": "^
|
|
58
|
-
"@atlaskit/editor-plugin-type-ahead": "^
|
|
59
|
-
"@atlaskit/editor-prosemirror": "^
|
|
60
|
-
"@atlaskit/editor-shared-styles": "^
|
|
61
|
-
"@atlaskit/editor-toolbar": "^
|
|
62
|
-
"@atlaskit/editor-toolbar-model": "^0.
|
|
63
|
-
"@atlaskit/emoji": "^
|
|
64
|
-
"@atlaskit/icon": "^
|
|
65
|
-
"@atlaskit/icon-lab": "^
|
|
66
|
-
"@atlaskit/platform-feature-flags": "^
|
|
67
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
68
|
-
"@atlaskit/tokens": "^
|
|
24
|
+
"@atlaskit/browser-apis": "^1.0.0",
|
|
25
|
+
"@atlaskit/editor-plugin-analytics": "^12.0.0",
|
|
26
|
+
"@atlaskit/editor-plugin-block-type": "^16.0.0",
|
|
27
|
+
"@atlaskit/editor-plugin-code-block": "^14.0.0",
|
|
28
|
+
"@atlaskit/editor-plugin-connectivity": "^12.0.0",
|
|
29
|
+
"@atlaskit/editor-plugin-date": "^14.0.0",
|
|
30
|
+
"@atlaskit/editor-plugin-emoji": "^13.0.0",
|
|
31
|
+
"@atlaskit/editor-plugin-expand": "^13.0.0",
|
|
32
|
+
"@atlaskit/editor-plugin-extension": "^15.0.0",
|
|
33
|
+
"@atlaskit/editor-plugin-feature-flags": "^11.0.0",
|
|
34
|
+
"@atlaskit/editor-plugin-hyperlink": "^14.0.0",
|
|
35
|
+
"@atlaskit/editor-plugin-image-upload": "^12.0.0",
|
|
36
|
+
"@atlaskit/editor-plugin-layout": "^13.0.0",
|
|
37
|
+
"@atlaskit/editor-plugin-media": "^14.0.0",
|
|
38
|
+
"@atlaskit/editor-plugin-media-insert": "^25.0.0",
|
|
39
|
+
"@atlaskit/editor-plugin-mentions": "^14.1.0",
|
|
40
|
+
"@atlaskit/editor-plugin-metrics": "^13.0.0",
|
|
41
|
+
"@atlaskit/editor-plugin-panel": "^14.0.0",
|
|
42
|
+
"@atlaskit/editor-plugin-placeholder-text": "^13.0.0",
|
|
43
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^13.0.0",
|
|
44
|
+
"@atlaskit/editor-plugin-quick-insert": "^12.0.0",
|
|
45
|
+
"@atlaskit/editor-plugin-rule": "^12.0.0",
|
|
46
|
+
"@atlaskit/editor-plugin-status": "^13.0.0",
|
|
47
|
+
"@atlaskit/editor-plugin-table": "^24.0.0",
|
|
48
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "^15.0.0",
|
|
49
|
+
"@atlaskit/editor-plugin-toolbar": "^9.0.0",
|
|
50
|
+
"@atlaskit/editor-plugin-type-ahead": "^12.0.0",
|
|
51
|
+
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
52
|
+
"@atlaskit/editor-shared-styles": "^4.0.0",
|
|
53
|
+
"@atlaskit/editor-toolbar": "^2.0.0",
|
|
54
|
+
"@atlaskit/editor-toolbar-model": "^1.0.0",
|
|
55
|
+
"@atlaskit/emoji": "^71.0.0",
|
|
56
|
+
"@atlaskit/icon": "^36.0.0",
|
|
57
|
+
"@atlaskit/icon-lab": "^7.0.0",
|
|
58
|
+
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
59
|
+
"@atlaskit/tmp-editor-statsig": "^105.0.0",
|
|
60
|
+
"@atlaskit/tokens": "^14.0.0",
|
|
69
61
|
"@babel/runtime": "^7.0.0",
|
|
70
62
|
"@emotion/react": "^11.7.1",
|
|
71
63
|
"bind-event-listener": "^3.0.0",
|
|
@@ -74,7 +66,7 @@
|
|
|
74
66
|
"react-virtualized": "^9.22.6"
|
|
75
67
|
},
|
|
76
68
|
"peerDependencies": {
|
|
77
|
-
"@atlaskit/editor-common": "^
|
|
69
|
+
"@atlaskit/editor-common": "^116.1.0",
|
|
78
70
|
"react": "^18.2.0",
|
|
79
71
|
"react-dom": "^18.2.0",
|
|
80
72
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|