@atlaskit/teams-public 2.6.2 → 2.7.0
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,12 @@
|
|
|
1
1
|
# @atlaskit/teams-public
|
|
2
2
|
|
|
3
|
+
## 2.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`68e50c0e75e2f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/68e50c0e75e2f) -
|
|
8
|
+
Update i18n NPM package versions for people-and-teams,identity (Group 8)
|
|
9
|
+
|
|
3
10
|
## 2.6.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
@@ -13,10 +12,13 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
13
12
|
var _react = _interopRequireDefault(require("react"));
|
|
14
13
|
var _reactIntl = require("react-intl");
|
|
15
14
|
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
16
|
-
var
|
|
15
|
+
var _modalBody = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-body"));
|
|
16
|
+
var _modalDialog = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-dialog"));
|
|
17
|
+
var _modalFooter = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-footer"));
|
|
18
|
+
var _modalHeader = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-header"));
|
|
19
|
+
var _modalTitle = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-title"));
|
|
17
20
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
18
21
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
19
|
-
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); }
|
|
20
22
|
var messages = exports.messages = (0, _reactIntl.defineMessages)({
|
|
21
23
|
disconnectDialogTitle: {
|
|
22
24
|
id: 'ptc-directory.team-profile-page.team-containers.disconnect-dialog.title',
|
|
@@ -89,11 +91,11 @@ var DisconnectDialog = exports.DisconnectDialog = function DisconnectDialog(_ref
|
|
|
89
91
|
width: "small",
|
|
90
92
|
testId: "team-containers-disconnect-dialog",
|
|
91
93
|
shouldScrollInViewport: true
|
|
92
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
94
|
+
}, /*#__PURE__*/_react.default.createElement(_modalHeader.default, {
|
|
93
95
|
hasCloseButton: true
|
|
94
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
96
|
+
}, /*#__PURE__*/_react.default.createElement(_modalTitle.default, {
|
|
95
97
|
appearance: "warning"
|
|
96
|
-
}, /*#__PURE__*/_react.default.createElement(_reactIntl.FormattedMessage, messages.disconnectDialogTitle))), /*#__PURE__*/_react.default.createElement(
|
|
98
|
+
}, /*#__PURE__*/_react.default.createElement(_reactIntl.FormattedMessage, messages.disconnectDialogTitle))), /*#__PURE__*/_react.default.createElement(_modalBody.default, null, /*#__PURE__*/_react.default.createElement(_compiled.Stack, {
|
|
97
99
|
space: "space.150"
|
|
98
100
|
}, /*#__PURE__*/_react.default.createElement(_compiled.Box, null, /*#__PURE__*/_react.default.createElement(_reactIntl.FormattedMessage, (0, _extends2.default)({}, messages.disconnectDialogDescription, {
|
|
99
101
|
values: {
|
|
@@ -106,7 +108,7 @@ var DisconnectDialog = exports.DisconnectDialog = function DisconnectDialog(_ref
|
|
|
106
108
|
values: {
|
|
107
109
|
containerType: containerType
|
|
108
110
|
}
|
|
109
|
-
})))), /*#__PURE__*/_react.default.createElement(
|
|
111
|
+
})))), /*#__PURE__*/_react.default.createElement(_modalFooter.default, null, /*#__PURE__*/_react.default.createElement(_new.default, {
|
|
110
112
|
appearance: "subtle",
|
|
111
113
|
onClick: onClose
|
|
112
114
|
}, /*#__PURE__*/_react.default.createElement(_reactIntl.FormattedMessage, messages.disconnectDialogCancelButton)), /*#__PURE__*/_react.default.createElement(_new.default, {
|
|
@@ -2,7 +2,11 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { defineMessages, FormattedMessage } from 'react-intl';
|
|
4
4
|
import Button from '@atlaskit/button/new';
|
|
5
|
-
import
|
|
5
|
+
import ModalBody from '@atlaskit/modal-dialog/modal-body';
|
|
6
|
+
import ModalDialog from '@atlaskit/modal-dialog/modal-dialog';
|
|
7
|
+
import ModalFooter from '@atlaskit/modal-dialog/modal-footer';
|
|
8
|
+
import ModalHeader from '@atlaskit/modal-dialog/modal-header';
|
|
9
|
+
import ModalTitle from '@atlaskit/modal-dialog/modal-title';
|
|
6
10
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
11
|
import { Box, Stack, Text } from '@atlaskit/primitives/compiled';
|
|
8
12
|
export const messages = defineMessages({
|
|
@@ -5,7 +5,11 @@ import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { defineMessages, FormattedMessage } from 'react-intl';
|
|
7
7
|
import Button from '@atlaskit/button/new';
|
|
8
|
-
import
|
|
8
|
+
import ModalBody from '@atlaskit/modal-dialog/modal-body';
|
|
9
|
+
import ModalDialog from '@atlaskit/modal-dialog/modal-dialog';
|
|
10
|
+
import ModalFooter from '@atlaskit/modal-dialog/modal-footer';
|
|
11
|
+
import ModalHeader from '@atlaskit/modal-dialog/modal-header';
|
|
12
|
+
import ModalTitle from '@atlaskit/modal-dialog/modal-title';
|
|
9
13
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
10
14
|
import { Box, Stack, Text } from '@atlaskit/primitives/compiled';
|
|
11
15
|
export var messages = defineMessages({
|
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
],
|
|
24
24
|
"atlaskit:src": "src/index.ts",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/afm-i18n-platform-people-and-teams-teams-public": "2.
|
|
26
|
+
"@atlaskit/afm-i18n-platform-people-and-teams-teams-public": "2.214.0",
|
|
27
27
|
"@atlaskit/analytics-next": "^12.3.0",
|
|
28
28
|
"@atlaskit/avatar": "^27.0.0",
|
|
29
29
|
"@atlaskit/button": "^25.0.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/teams-app-internal-product-permissions": "^2.2.0",
|
|
46
46
|
"@atlaskit/teams-client": "^5.2.0",
|
|
47
47
|
"@atlaskit/tile": "^4.0.0",
|
|
48
|
-
"@atlaskit/tokens": "^16.
|
|
48
|
+
"@atlaskit/tokens": "^16.6.0",
|
|
49
49
|
"@atlaskit/tooltip": "^24.0.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@compiled/react": "^1.0.0",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
113
|
"name": "@atlaskit/teams-public",
|
|
114
|
-
"version": "2.
|
|
114
|
+
"version": "2.7.0",
|
|
115
115
|
"description": "Public components related to teams",
|
|
116
116
|
"author": "Atlassian Pty Ltd",
|
|
117
117
|
"license": "Apache-2.0",
|