@atlaskit/editor-plugin-insert-block 4.1.5 → 4.1.7
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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 4.1.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 4.1.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`a0e6cdeb5a90c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a0e6cdeb5a90c) -
|
|
14
|
+
[ux] New experiment to unify the handling of panel insertion to more consistent behaviour.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 4.1.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { WrappedComponentProps } from 'react-intl-next';
|
|
3
2
|
import type { MenuItem } from '@atlaskit/editor-common/ui-menu';
|
|
4
3
|
import type { BlockType } from '@atlaskit/editor-plugin-block-type';
|
|
@@ -41,4 +40,4 @@ export interface CreateItemsConfig {
|
|
|
41
40
|
export interface BlockMenuItem extends MenuItem {
|
|
42
41
|
title: JSX.Element | null;
|
|
43
42
|
}
|
|
44
|
-
export declare const createItems: import("memoize-one").MemoizedFn<(config: CreateItemsConfig) =>
|
|
43
|
+
export declare const createItems: import("memoize-one").MemoizedFn<(config: CreateItemsConfig) => Readonly<[BlockMenuItem[], BlockMenuItem[]]>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { WrappedComponentProps } from 'react-intl-next';
|
|
3
2
|
import type { MenuItem } from '@atlaskit/editor-common/ui-menu';
|
|
4
3
|
import type { BlockType } from '@atlaskit/editor-plugin-block-type';
|
|
@@ -41,7 +40,7 @@ export interface CreateItemsConfig {
|
|
|
41
40
|
export interface BlockMenuItem extends MenuItem {
|
|
42
41
|
title: JSX.Element | null;
|
|
43
42
|
}
|
|
44
|
-
export declare const createItems: import("memoize-one").MemoizedFn<(config: CreateItemsConfig) =>
|
|
43
|
+
export declare const createItems: import("memoize-one").MemoizedFn<(config: CreateItemsConfig) => Readonly<[
|
|
45
44
|
BlockMenuItem[],
|
|
46
45
|
BlockMenuItem[]
|
|
47
|
-
]
|
|
46
|
+
]>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-insert-block",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.7",
|
|
4
4
|
"description": "Insert block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
".": "./src/index.ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/button": "^23.
|
|
35
|
+
"@atlaskit/button": "^23.4.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^3.0.0",
|
|
37
|
-
"@atlaskit/editor-plugin-block-type": "^6.
|
|
37
|
+
"@atlaskit/editor-plugin-block-type": "^6.2.0",
|
|
38
38
|
"@atlaskit/editor-plugin-code-block": "^5.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-connectivity": "^3.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-date": "^5.1.0",
|
|
@@ -42,32 +42,32 @@
|
|
|
42
42
|
"@atlaskit/editor-plugin-expand": "^4.2.0",
|
|
43
43
|
"@atlaskit/editor-plugin-extension": "^6.1.0",
|
|
44
44
|
"@atlaskit/editor-plugin-feature-flags": "^2.0.0",
|
|
45
|
-
"@atlaskit/editor-plugin-hyperlink": "^5.
|
|
45
|
+
"@atlaskit/editor-plugin-hyperlink": "^5.4.0",
|
|
46
46
|
"@atlaskit/editor-plugin-image-upload": "^3.0.0",
|
|
47
47
|
"@atlaskit/editor-plugin-layout": "^3.1.0",
|
|
48
48
|
"@atlaskit/editor-plugin-media": "^5.2.0",
|
|
49
|
-
"@atlaskit/editor-plugin-media-insert": "^9.
|
|
49
|
+
"@atlaskit/editor-plugin-media-insert": "^9.2.0",
|
|
50
50
|
"@atlaskit/editor-plugin-mentions": "^5.2.0",
|
|
51
51
|
"@atlaskit/editor-plugin-metrics": "^4.0.0",
|
|
52
|
-
"@atlaskit/editor-plugin-panel": "^5.
|
|
52
|
+
"@atlaskit/editor-plugin-panel": "^5.3.0",
|
|
53
53
|
"@atlaskit/editor-plugin-placeholder-text": "^3.1.0",
|
|
54
54
|
"@atlaskit/editor-plugin-primary-toolbar": "^4.1.0",
|
|
55
55
|
"@atlaskit/editor-plugin-quick-insert": "^3.0.0",
|
|
56
56
|
"@atlaskit/editor-plugin-rule": "^3.0.0",
|
|
57
57
|
"@atlaskit/editor-plugin-status": "^4.1.0",
|
|
58
|
-
"@atlaskit/editor-plugin-table": "^12.
|
|
59
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "^6.
|
|
58
|
+
"@atlaskit/editor-plugin-table": "^12.2.0",
|
|
59
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "^6.3.0",
|
|
60
60
|
"@atlaskit/editor-plugin-type-ahead": "^3.1.0",
|
|
61
61
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
62
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
62
|
+
"@atlaskit/editor-shared-styles": "^3.6.0",
|
|
63
63
|
"@atlaskit/emoji": "^69.3.0",
|
|
64
64
|
"@atlaskit/heading": "^5.2.0",
|
|
65
|
-
"@atlaskit/icon": "^27.
|
|
66
|
-
"@atlaskit/icon-lab": "^5.
|
|
65
|
+
"@atlaskit/icon": "^27.12.0",
|
|
66
|
+
"@atlaskit/icon-lab": "^5.6.0",
|
|
67
67
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
68
68
|
"@atlaskit/primitives": "^14.11.0",
|
|
69
69
|
"@atlaskit/theme": "^19.0.0",
|
|
70
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
70
|
+
"@atlaskit/tmp-editor-statsig": "^10.0.0",
|
|
71
71
|
"@atlaskit/tokens": "^6.0.0",
|
|
72
72
|
"@atlaskit/tooltip": "^20.4.0",
|
|
73
73
|
"@babel/runtime": "^7.0.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"react-virtualized": "^9.8.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@atlaskit/editor-common": "^107.
|
|
81
|
+
"@atlaskit/editor-common": "^107.25.0",
|
|
82
82
|
"react": "^18.2.0",
|
|
83
83
|
"react-dom": "^18.2.0",
|
|
84
84
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
@@ -89,8 +89,7 @@
|
|
|
89
89
|
"@atlaskit/ssr": "workspace:^",
|
|
90
90
|
"@atlaskit/visual-regression": "workspace:^",
|
|
91
91
|
"@testing-library/react": "^13.4.0",
|
|
92
|
-
"@types/react-virtualized": "^9.18.12"
|
|
93
|
-
"typescript": "~5.4.2"
|
|
92
|
+
"@types/react-virtualized": "^9.18.12"
|
|
94
93
|
},
|
|
95
94
|
"techstack": {
|
|
96
95
|
"@atlassian/frontend": {
|