@atlaskit/editor-plugin-panel 1.0.8 → 1.0.10

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,18 @@
1
1
  # @atlaskit/editor-plugin-panel
2
2
 
3
+ ## 1.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [#91106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91106) [`b6ffa30186b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6ffa30186b9) - Bump ADF-schema package to version 35.0.0
8
+ - Updated dependencies
9
+
10
+ ## 1.0.9
11
+
12
+ ### Patch Changes
13
+
14
+ - [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724) [`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) - [ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from 35.7.0 to 35.8.0
15
+
3
16
  ## 1.0.8
4
17
 
5
18
  ### Patch Changes
package/dist/cjs/utils.js CHANGED
@@ -31,6 +31,7 @@ var panelAttrsToDom = exports.panelAttrsToDom = function panelAttrsToDom(attrs,
31
31
  var panelAttrs = {
32
32
  class: _panel.PanelSharedCssClassName.prefix,
33
33
  'data-panel-type': panelType || _adfSchema.PanelType.INFO,
34
+ 'data-testid': 'panel-node-view',
34
35
  style: style
35
36
  };
36
37
  if (panelColor && isCustomPanel) {
@@ -25,6 +25,7 @@ export const panelAttrsToDom = (attrs, allowCustomPanel) => {
25
25
  let panelAttrs = {
26
26
  class: PanelSharedCssClassName.prefix,
27
27
  'data-panel-type': panelType || PanelType.INFO,
28
+ 'data-testid': 'panel-node-view',
28
29
  style
29
30
  };
30
31
  if (panelColor && isCustomPanel) {
package/dist/esm/utils.js CHANGED
@@ -24,6 +24,7 @@ export var panelAttrsToDom = function panelAttrsToDom(attrs, allowCustomPanel) {
24
24
  var panelAttrs = {
25
25
  class: PanelSharedCssClassName.prefix,
26
26
  'data-panel-type': panelType || PanelType.INFO,
27
+ 'data-testid': 'panel-node-view',
27
28
  style: style
28
29
  };
29
30
  if (panelColor && isCustomPanel) {
@@ -10,6 +10,7 @@ export interface PanelPluginConfig {
10
10
  export type DomPanelAtrrs = {
11
11
  class: string;
12
12
  'data-panel-type': string;
13
+ 'data-testid'?: string;
13
14
  'data-panel-color'?: string;
14
15
  'data-panel-icon-id'?: string;
15
16
  'data-panel-icon-text'?: string;
@@ -10,6 +10,7 @@ export interface PanelPluginConfig {
10
10
  export type DomPanelAtrrs = {
11
11
  class: string;
12
12
  'data-panel-type': string;
13
+ 'data-testid'?: string;
13
14
  'data-panel-color'?: string;
14
15
  'data-panel-icon-id'?: string;
15
16
  'data-panel-icon-text'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-panel",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
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.7.0",
37
- "@atlaskit/editor-common": "^78.18.0",
36
+ "@atlaskit/adf-schema": "^35.9.0",
37
+ "@atlaskit/editor-common": "^78.28.0",
38
38
  "@atlaskit/editor-palette": "1.5.3",
39
39
  "@atlaskit/editor-plugin-analytics": "^1.0.0",
40
40
  "@atlaskit/editor-plugin-decorations": "^1.0.0",
@@ -43,7 +43,7 @@
43
43
  "@atlaskit/emoji": "^67.6.0",
44
44
  "@atlaskit/icon": "^22.1.0",
45
45
  "@atlaskit/platform-feature-flags": "^0.2.0",
46
- "@atlaskit/theme": "^12.6.0",
46
+ "@atlaskit/theme": "^12.7.0",
47
47
  "@babel/runtime": "^7.0.0"
48
48
  },
49
49
  "peerDependencies": {