@atlaskit/task-decision 17.9.10 → 17.9.12
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,17 @@
|
|
|
1
1
|
# @atlaskit/task-decision
|
|
2
2
|
|
|
3
|
+
## 17.9.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#85831](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85831) [`1eb41b0f62ce`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1eb41b0f62ce) - Add test id to decision item.
|
|
8
|
+
|
|
9
|
+
## 17.9.11
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
14
|
+
|
|
3
15
|
## 17.9.10
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/constants/package.json
CHANGED
|
@@ -68,6 +68,7 @@ var Item = exports.default = /*#__PURE__*/function (_PureComponent) {
|
|
|
68
68
|
}, dataAttributes), children));
|
|
69
69
|
} else if (itemType === 'DECISION') {
|
|
70
70
|
return (0, _react2.jsx)("div", {
|
|
71
|
+
"data-testid": "elements-decision-item",
|
|
71
72
|
css: (0, _styles.decisionStyles)(),
|
|
72
73
|
"data-decision-wrapper": "true"
|
|
73
74
|
}, icon, this.renderPlaceholder(), (0, _react2.jsx)("div", (0, _extends2.default)({
|
|
@@ -49,6 +49,7 @@ export default class Item extends PureComponent {
|
|
|
49
49
|
}, dataAttributes), children));
|
|
50
50
|
} else if (itemType === 'DECISION') {
|
|
51
51
|
return jsx("div", {
|
|
52
|
+
"data-testid": "elements-decision-item",
|
|
52
53
|
css: decisionStyles(),
|
|
53
54
|
"data-decision-wrapper": "true"
|
|
54
55
|
}, icon, this.renderPlaceholder(), jsx("div", _extends({
|
|
@@ -64,6 +64,7 @@ var Item = /*#__PURE__*/function (_PureComponent) {
|
|
|
64
64
|
}, dataAttributes), children));
|
|
65
65
|
} else if (itemType === 'DECISION') {
|
|
66
66
|
return jsx("div", {
|
|
67
|
+
"data-testid": "elements-decision-item",
|
|
67
68
|
css: decisionStyles(),
|
|
68
69
|
"data-decision-wrapper": "true"
|
|
69
70
|
}, icon, this.renderPlaceholder(), jsx("div", _extends({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/task-decision",
|
|
3
|
-
"version": "17.9.
|
|
3
|
+
"version": "17.9.12",
|
|
4
4
|
"description": "Tasks and decisions react components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
45
45
|
"@atlaskit/icon": "^22.1.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^0.2.2",
|
|
47
|
-
"@atlaskit/theme": "^12.
|
|
48
|
-
"@atlaskit/tokens": "^1.
|
|
47
|
+
"@atlaskit/theme": "^12.7.0",
|
|
48
|
+
"@atlaskit/tokens": "^1.42.0",
|
|
49
49
|
"@atlaskit/util-service-support": "^6.2.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@emotion/react": "^11.7.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"fetch-mock": "^8.0.0",
|
|
73
73
|
"react": "^16.8.0",
|
|
74
74
|
"sinon": "^2.2.0",
|
|
75
|
-
"typescript": "~4.
|
|
75
|
+
"typescript": "~5.4.2",
|
|
76
76
|
"url-search-params": "^0.10.0"
|
|
77
77
|
},
|
|
78
78
|
"techstack": {
|
|
@@ -91,4 +91,4 @@
|
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
94
|
-
}
|
|
94
|
+
}
|