@atlaskit/editor-plugin-panel 1.0.4 → 1.0.5
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 +6 -0
- package/dist/cjs/actions.js +0 -1
- package/dist/cjs/toolbar.js +2 -2
- package/dist/es2019/actions.js +0 -1
- package/dist/esm/actions.js +0 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 1.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#80679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80679) [`104eb9443b7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/104eb9443b7e) - ED-22553 Updating adf-schema version to 35.6.0
|
|
8
|
+
|
|
3
9
|
## 1.0.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/cjs/actions.js
CHANGED
|
@@ -113,7 +113,6 @@ function insertPanelWithAnalytics(inputMethod, analyticsAPI) {
|
|
|
113
113
|
inputMethod: inputMethod,
|
|
114
114
|
panelType: _adfSchema.PanelType.INFO // only info panels can be inserted via this action
|
|
115
115
|
},
|
|
116
|
-
|
|
117
116
|
eventType: _analytics.EVENT_TYPE.TRACK
|
|
118
117
|
})(function (state, dispatch) {
|
|
119
118
|
var nodes = state.schema.nodes;
|
package/dist/cjs/toolbar.js
CHANGED
|
@@ -24,8 +24,8 @@ var _warning = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/warni
|
|
|
24
24
|
var _actions = require("./actions");
|
|
25
25
|
var _utils2 = require("./utils");
|
|
26
26
|
var _panelIconMap;
|
|
27
|
-
function _getRequireWildcardCache(
|
|
28
|
-
function _interopRequireWildcard(
|
|
27
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
28
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
29
29
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
30
30
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
31
31
|
var panelIconMap = exports.panelIconMap = (_panelIconMap = {}, (0, _defineProperty2.default)(_panelIconMap, _adfSchema.PanelType.INFO, {
|
package/dist/es2019/actions.js
CHANGED
|
@@ -102,7 +102,6 @@ export function insertPanelWithAnalytics(inputMethod, analyticsAPI) {
|
|
|
102
102
|
inputMethod: inputMethod,
|
|
103
103
|
panelType: PanelType.INFO // only info panels can be inserted via this action
|
|
104
104
|
},
|
|
105
|
-
|
|
106
105
|
eventType: EVENT_TYPE.TRACK
|
|
107
106
|
})(function (state, dispatch) {
|
|
108
107
|
const {
|
package/dist/esm/actions.js
CHANGED
|
@@ -104,7 +104,6 @@ export function insertPanelWithAnalytics(inputMethod, analyticsAPI) {
|
|
|
104
104
|
inputMethod: inputMethod,
|
|
105
105
|
panelType: PanelType.INFO // only info panels can be inserted via this action
|
|
106
106
|
},
|
|
107
|
-
|
|
108
107
|
eventType: EVENT_TYPE.TRACK
|
|
109
108
|
})(function (state, dispatch) {
|
|
110
109
|
var nodes = state.schema.nodes;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/adf-schema": "^35.
|
|
37
|
-
"@atlaskit/editor-common": "^78.
|
|
36
|
+
"@atlaskit/adf-schema": "^35.6.0",
|
|
37
|
+
"@atlaskit/editor-common": "^78.12.0",
|
|
38
38
|
"@atlaskit/editor-palette": "1.5.2",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^1.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-decorations": "^1.0.0",
|