@atlaskit/editor-plugin-expand 4.2.5 → 4.2.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 +16 -0
- package/dist/cjs/legacyExpand/nodeviews/index.js +3 -1
- package/dist/cjs/singlePlayerExpand/node-views/index.js +3 -1
- package/dist/es2019/legacyExpand/nodeviews/index.js +3 -1
- package/dist/es2019/singlePlayerExpand/node-views/index.js +3 -1
- package/dist/esm/legacyExpand/nodeviews/index.js +3 -1
- package/dist/esm/singlePlayerExpand/node-views/index.js +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-expand
|
|
2
2
|
|
|
3
|
+
## 4.2.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`57b19274b9fdd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/57b19274b9fdd) -
|
|
8
|
+
EDITOR-1373 Bump adf-schema version
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 4.2.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`20d3223b57972`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20d3223b57972) -
|
|
16
|
+
Opted out of debounced portal provider
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 4.2.5
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -509,7 +509,9 @@ var ExpandNodeView = exports.ExpandNodeView = /*#__PURE__*/function () {
|
|
|
509
509
|
allowInteractiveExpand: _this3.allowInteractiveExpand,
|
|
510
510
|
expanded: _this3.__livePage ? !__expanded : __expanded
|
|
511
511
|
});
|
|
512
|
-
}, this.icon, this.renderKey
|
|
512
|
+
}, this.icon, this.renderKey, undefined,
|
|
513
|
+
// @portal-render-immediately
|
|
514
|
+
true);
|
|
513
515
|
}
|
|
514
516
|
}, {
|
|
515
517
|
key: "stopEvent",
|
|
@@ -389,7 +389,9 @@ var ExpandNodeView = exports.ExpandNodeView = /*#__PURE__*/function () {
|
|
|
389
389
|
allowInteractiveExpand: _this.allowInteractiveExpand,
|
|
390
390
|
expanded: expanded
|
|
391
391
|
});
|
|
392
|
-
}, icon, _this.renderKey
|
|
392
|
+
}, icon, _this.renderKey, undefined,
|
|
393
|
+
// @portal-render-immediately
|
|
394
|
+
true);
|
|
393
395
|
});
|
|
394
396
|
this.selectNearNode = selectNearNode;
|
|
395
397
|
this.__livePage = __livePage;
|
|
@@ -504,7 +504,9 @@ export class ExpandNodeView {
|
|
|
504
504
|
intl: intl,
|
|
505
505
|
allowInteractiveExpand: this.allowInteractiveExpand,
|
|
506
506
|
expanded: this.__livePage ? !__expanded : __expanded
|
|
507
|
-
}), this.icon, this.renderKey
|
|
507
|
+
}), this.icon, this.renderKey, undefined,
|
|
508
|
+
// @portal-render-immediately
|
|
509
|
+
true);
|
|
508
510
|
}
|
|
509
511
|
stopEvent(event) {
|
|
510
512
|
// Ignored via go/ees005
|
|
@@ -387,7 +387,9 @@ export class ExpandNodeView {
|
|
|
387
387
|
intl: this.intl,
|
|
388
388
|
allowInteractiveExpand: this.allowInteractiveExpand,
|
|
389
389
|
expanded: expanded
|
|
390
|
-
}), icon, this.renderKey
|
|
390
|
+
}), icon, this.renderKey, undefined,
|
|
391
|
+
// @portal-render-immediately
|
|
392
|
+
true);
|
|
391
393
|
});
|
|
392
394
|
this.selectNearNode = selectNearNode;
|
|
393
395
|
this.__livePage = __livePage;
|
|
@@ -501,7 +501,9 @@ export var ExpandNodeView = /*#__PURE__*/function () {
|
|
|
501
501
|
allowInteractiveExpand: _this3.allowInteractiveExpand,
|
|
502
502
|
expanded: _this3.__livePage ? !__expanded : __expanded
|
|
503
503
|
});
|
|
504
|
-
}, this.icon, this.renderKey
|
|
504
|
+
}, this.icon, this.renderKey, undefined,
|
|
505
|
+
// @portal-render-immediately
|
|
506
|
+
true);
|
|
505
507
|
}
|
|
506
508
|
}, {
|
|
507
509
|
key: "stopEvent",
|
|
@@ -381,7 +381,9 @@ export var ExpandNodeView = /*#__PURE__*/function () {
|
|
|
381
381
|
allowInteractiveExpand: _this.allowInteractiveExpand,
|
|
382
382
|
expanded: expanded
|
|
383
383
|
});
|
|
384
|
-
}, icon, _this.renderKey
|
|
384
|
+
}, icon, _this.renderKey, undefined,
|
|
385
|
+
// @portal-render-immediately
|
|
386
|
+
true);
|
|
385
387
|
});
|
|
386
388
|
this.selectNearNode = selectNearNode;
|
|
387
389
|
this.__livePage = __livePage;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-expand",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.7",
|
|
4
4
|
"description": "Expand plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
".": "./src/index.ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/adf-schema": "^50.2.
|
|
35
|
+
"@atlaskit/adf-schema": "^50.2.1",
|
|
36
36
|
"@atlaskit/button": "^23.4.0",
|
|
37
37
|
"@atlaskit/editor-plugin-analytics": "^3.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-decorations": "^3.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-disabled": "^3.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
|
|
41
|
-
"@atlaskit/editor-plugin-selection": "^3.
|
|
41
|
+
"@atlaskit/editor-plugin-selection": "^3.1.0",
|
|
42
42
|
"@atlaskit/editor-plugin-selection-marker": "^3.0.0",
|
|
43
43
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
44
44
|
"@atlaskit/editor-shared-styles": "^3.6.0",
|
|
45
45
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
46
46
|
"@atlaskit/icon": "^27.12.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
|
-
"@atlaskit/tmp-editor-statsig": "^11.
|
|
48
|
+
"@atlaskit/tmp-editor-statsig": "^11.3.0",
|
|
49
49
|
"@atlaskit/tokens": "^6.0.0",
|
|
50
50
|
"@atlaskit/tooltip": "^20.4.0",
|
|
51
51
|
"@babel/runtime": "^7.0.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"w3c-keyname": "^2.1.8"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@atlaskit/editor-common": "^107.
|
|
57
|
+
"@atlaskit/editor-common": "^107.26.0",
|
|
58
58
|
"react": "^18.2.0",
|
|
59
59
|
"react-dom": "^18.2.0",
|
|
60
60
|
"react-intl-next": "npm:react-intl@^5.18.1"
|