@atlaskit/focused-task-close-account 3.0.12 → 3.0.14

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,19 @@
1
1
  # @atlaskit/focused-task-close-account
2
2
 
3
+ ## 3.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 3.0.13
10
+
11
+ ### Patch Changes
12
+
13
+ - [#169587](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/169587)
14
+ [`e00d3f9b0eb46`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e00d3f9b0eb46) -
15
+ Feature flag cleanup
16
+
3
17
  ## 3.0.12
4
18
 
5
19
  ### Patch Changes
@@ -25,7 +25,6 @@ var _UserInfo = _interopRequireDefault(require("../UserInfo"));
25
25
  var Styled = _interopRequireWildcard(require("./styled"));
26
26
  var _DropdownList = require("../DropdownList");
27
27
  var _MessagesIntlProvider = _interopRequireDefault(require("../MessagesIntlProvider"));
28
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
29
28
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
30
29
  function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
31
30
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
@@ -109,7 +108,7 @@ var DeleteUserOverviewScreen = exports.DeleteUserOverviewScreen = /*#__PURE__*/f
109
108
  (0, _defineProperty2.default)(_this, "displayFourthListElement", function () {
110
109
  return /*#__PURE__*/_react.default.createElement("li", null, /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _this.selectAdminOrSelfCopy(_messages.overviewMessages.paragraphContentCreatedAdmin, _messages.overviewMessages.paragraphContentCreatedSelf)), /*#__PURE__*/_react.default.createElement(Styled.IconHoverWrapper, null, /*#__PURE__*/_react.default.createElement(_StatefulInlineDialog.default, {
111
110
  placement: "auto-start",
112
- content: /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _this.selectAdminOrSelfCopy((0, _platformFeatureFlags.fg)('issue_to_workitem_termrefresh') ? _messages.overviewMessages.inlineDialogContentCreatedAdminissuetermrefresh : _messages.overviewMessages.inlineDialogContentCreatedAdmin, _messages.overviewMessages.inlineDialogContentCreatedSelf))
111
+ content: /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _this.selectAdminOrSelfCopy(_messages.overviewMessages.inlineDialogContentCreatedAdminissuetermrefresh, _messages.overviewMessages.inlineDialogContentCreatedSelf))
113
112
  }, /*#__PURE__*/_react.default.createElement(_informationInfo.default, {
114
113
  color: "currentColor",
115
114
  label: "",
@@ -12,7 +12,6 @@ import UserInfo from '../UserInfo';
12
12
  import * as Styled from './styled';
13
13
  import { DropdownList } from '../DropdownList';
14
14
  import MessagesIntlProvider from '../MessagesIntlProvider';
15
- import { fg } from '@atlaskit/platform-feature-flags';
16
15
  export class DeleteUserOverviewScreen extends React.Component {
17
16
  constructor(...args) {
18
17
  super(...args);
@@ -83,7 +82,7 @@ export class DeleteUserOverviewScreen extends React.Component {
83
82
  _defineProperty(this, "displayFourthListElement", () => {
84
83
  return /*#__PURE__*/React.createElement("li", null, /*#__PURE__*/React.createElement(FormattedMessage, this.selectAdminOrSelfCopy(overviewMessages.paragraphContentCreatedAdmin, overviewMessages.paragraphContentCreatedSelf)), /*#__PURE__*/React.createElement(Styled.IconHoverWrapper, null, /*#__PURE__*/React.createElement(StatefulInlineDialog, {
85
84
  placement: "auto-start",
86
- content: /*#__PURE__*/React.createElement(FormattedMessage, this.selectAdminOrSelfCopy(fg('issue_to_workitem_termrefresh') ? overviewMessages.inlineDialogContentCreatedAdminissuetermrefresh : overviewMessages.inlineDialogContentCreatedAdmin, overviewMessages.inlineDialogContentCreatedSelf))
85
+ content: /*#__PURE__*/React.createElement(FormattedMessage, this.selectAdminOrSelfCopy(overviewMessages.inlineDialogContentCreatedAdminissuetermrefresh, overviewMessages.inlineDialogContentCreatedSelf))
87
86
  }, /*#__PURE__*/React.createElement(InfoIcon, {
88
87
  color: "currentColor",
89
88
  label: "",
@@ -19,7 +19,6 @@ import UserInfo from '../UserInfo';
19
19
  import * as Styled from './styled';
20
20
  import { DropdownList } from '../DropdownList';
21
21
  import MessagesIntlProvider from '../MessagesIntlProvider';
22
- import { fg } from '@atlaskit/platform-feature-flags';
23
22
  export var DeleteUserOverviewScreen = /*#__PURE__*/function (_React$Component) {
24
23
  function DeleteUserOverviewScreen() {
25
24
  var _this;
@@ -100,7 +99,7 @@ export var DeleteUserOverviewScreen = /*#__PURE__*/function (_React$Component) {
100
99
  _defineProperty(_this, "displayFourthListElement", function () {
101
100
  return /*#__PURE__*/React.createElement("li", null, /*#__PURE__*/React.createElement(FormattedMessage, _this.selectAdminOrSelfCopy(overviewMessages.paragraphContentCreatedAdmin, overviewMessages.paragraphContentCreatedSelf)), /*#__PURE__*/React.createElement(Styled.IconHoverWrapper, null, /*#__PURE__*/React.createElement(StatefulInlineDialog, {
102
101
  placement: "auto-start",
103
- content: /*#__PURE__*/React.createElement(FormattedMessage, _this.selectAdminOrSelfCopy(fg('issue_to_workitem_termrefresh') ? overviewMessages.inlineDialogContentCreatedAdminissuetermrefresh : overviewMessages.inlineDialogContentCreatedAdmin, overviewMessages.inlineDialogContentCreatedSelf))
102
+ content: /*#__PURE__*/React.createElement(FormattedMessage, _this.selectAdminOrSelfCopy(overviewMessages.inlineDialogContentCreatedAdminissuetermrefresh, overviewMessages.inlineDialogContentCreatedSelf))
104
103
  }, /*#__PURE__*/React.createElement(InfoIcon, {
105
104
  color: "currentColor",
106
105
  label: "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/focused-task-close-account",
3
- "version": "3.0.12",
3
+ "version": "3.0.14",
4
4
  "description": "This package contains all of the UI components needed to assemble the focused tasks for deactivating and deleting users' accounts in accordance with the GDPR \"Right to be forgotten\".",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -36,13 +36,13 @@
36
36
  "@atlaskit/button": "^23.2.0",
37
37
  "@atlaskit/drawer": "^11.0.0",
38
38
  "@atlaskit/heading": "^5.2.0",
39
- "@atlaskit/icon": "^26.4.0",
39
+ "@atlaskit/icon": "^27.0.0",
40
40
  "@atlaskit/inline-dialog": "^17.2.0",
41
41
  "@atlaskit/platform-feature-flags": "^1.1.0",
42
42
  "@atlaskit/primitives": "^14.8.0",
43
43
  "@atlaskit/section-message": "^8.2.0",
44
44
  "@atlaskit/theme": "^18.0.0",
45
- "@atlaskit/tokens": "^5.0.0",
45
+ "@atlaskit/tokens": "^5.2.0",
46
46
  "@babel/runtime": "^7.0.0",
47
47
  "@emotion/styled": "^11.0.0",
48
48
  "react-intl-next": "npm:react-intl@^5.18.1"
@@ -77,10 +77,5 @@
77
77
  },
78
78
  "sideEffects": [
79
79
  "*.compiled.css"
80
- ],
81
- "platform-feature-flags": {
82
- "issue_to_workitem_termrefresh": {
83
- "type": "boolean"
84
- }
85
- }
80
+ ]
86
81
  }