@atlaskit/editor-plugin-tasks-and-decisions 2.4.2 → 2.4.3

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,13 @@
1
1
  # @atlaskit/editor-plugin-tasks-and-decisions
2
2
 
3
+ ## 2.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#137344](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137344)
8
+ [`ec4ac3d413b9a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ec4ac3d413b9a) -
9
+ ED-24829 Fixed lazy node attributes to match parseDOM
10
+
3
11
  ## 2.4.2
4
12
 
5
13
  ### Patch Changes
@@ -22,8 +22,8 @@ var decisionItemSpecWithFixedToDOM = exports.decisionItemSpecWithFixedToDOM = fu
22
22
  localId = _node$attrs.localId,
23
23
  state = _node$attrs.state;
24
24
  var attrs = {
25
- decisionLocalId: localId || 'local-decision',
26
- decisionState: state,
25
+ 'data-decision-local-id': localId || 'local-decision',
26
+ 'data-decision-state': state,
27
27
  class: 'decisionItemView-content-wrap',
28
28
  // Styles to match `packages/elements/task-decision/src/components/styles.ts`
29
29
  style: (0, _lazyNodeView.convertToInlineCss)({
@@ -14,8 +14,8 @@ export const decisionItemSpecWithFixedToDOM = () => {
14
14
  state
15
15
  } = node.attrs;
16
16
  const attrs = {
17
- decisionLocalId: localId || 'local-decision',
18
- decisionState: state,
17
+ 'data-decision-local-id': localId || 'local-decision',
18
+ 'data-decision-state': state,
19
19
  class: 'decisionItemView-content-wrap',
20
20
  // Styles to match `packages/elements/task-decision/src/components/styles.ts`
21
21
  style: convertToInlineCss({
@@ -15,8 +15,8 @@ export var decisionItemSpecWithFixedToDOM = function decisionItemSpecWithFixedTo
15
15
  localId = _node$attrs.localId,
16
16
  state = _node$attrs.state;
17
17
  var attrs = {
18
- decisionLocalId: localId || 'local-decision',
19
- decisionState: state,
18
+ 'data-decision-local-id': localId || 'local-decision',
19
+ 'data-decision-state': state,
20
20
  class: 'decisionItemView-content-wrap',
21
21
  // Styles to match `packages/elements/task-decision/src/components/styles.ts`
22
22
  style: convertToInlineCss({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-tasks-and-decisions",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "Tasks and decisions plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -10,8 +10,6 @@
10
10
  "atlassian": {
11
11
  "team": "Editor: AI",
12
12
  "singleton": true,
13
- "inPublicMirror": false,
14
- "releaseModel": "continuous",
15
13
  "runReact18": false
16
14
  },
17
15
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
@@ -34,9 +32,9 @@
34
32
  },
35
33
  "dependencies": {
36
34
  "@atlaskit/adf-schema": "^40.9.0",
37
- "@atlaskit/analytics-namespaced-context": "^6.11.0",
35
+ "@atlaskit/analytics-namespaced-context": "^6.12.0",
38
36
  "@atlaskit/analytics-next": "^10.1.0",
39
- "@atlaskit/editor-common": "^88.2.0",
37
+ "@atlaskit/editor-common": "^88.8.0",
40
38
  "@atlaskit/editor-plugin-analytics": "^1.8.0",
41
39
  "@atlaskit/editor-plugin-context-identifier": "^1.3.0",
42
40
  "@atlaskit/editor-plugin-type-ahead": "^1.8.0",