@atlaskit/share 6.16.5 → 6.16.7
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 +14 -0
- package/afm-cc/tsconfig.json +1 -1
- package/dist/cjs/components/LazyShareForm/LazyShareForm.js +1 -5
- package/dist/cjs/components/analytics/analytics.js +1 -1
- package/dist/es2019/components/LazyShareForm/LazyShareForm.js +1 -4
- package/dist/es2019/components/analytics/analytics.js +1 -1
- package/dist/esm/components/LazyShareForm/LazyShareForm.js +1 -4
- package/dist/esm/components/analytics/analytics.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/share
|
|
2
2
|
|
|
3
|
+
## 6.16.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`20a5aa8c4e7a0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20a5aa8c4e7a0) -
|
|
8
|
+
Removed gridSize import. No visual changes.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 6.16.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 6.16.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/afm-cc/tsconfig.json
CHANGED
|
@@ -10,7 +10,6 @@ var _react2 = require("@emotion/react");
|
|
|
10
10
|
var _reactIntlNext = require("react-intl-next");
|
|
11
11
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
12
12
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
13
|
-
var _constants = require("@atlaskit/theme/constants");
|
|
14
13
|
var _i18n = require("../../i18n");
|
|
15
14
|
var _analytics = require("../analytics/analytics");
|
|
16
15
|
var _IntegrationForm = require("../IntegrationForm");
|
|
@@ -25,11 +24,8 @@ var _utils = require("../utils");
|
|
|
25
24
|
|
|
26
25
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
27
26
|
|
|
28
|
-
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
29
|
-
|
|
30
27
|
var footerBottomMessageStyles = (0, _react2.css)({
|
|
31
|
-
|
|
32
|
-
width: "".concat((0, _constants.gridSize)() * 44, "px")
|
|
28
|
+
width: '352px'
|
|
33
29
|
});
|
|
34
30
|
var footerCustomStyles = (0, _react2.css)({
|
|
35
31
|
margin: "0 ".concat("var(--ds-space-negative-300, -24px)", " ", "var(--ds-space-negative-200, -16px)", " ", "var(--ds-space-negative-300, -24px)")
|
|
@@ -13,7 +13,7 @@ var buildAttributes = function buildAttributes() {
|
|
|
13
13
|
var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
14
14
|
return _objectSpread({
|
|
15
15
|
packageName: "@atlaskit/share",
|
|
16
|
-
packageVersion: "6.16.
|
|
16
|
+
packageVersion: "6.16.6"
|
|
17
17
|
}, attributes);
|
|
18
18
|
};
|
|
19
19
|
var createEvent = function createEvent(eventType, source, action, actionSubject, actionSubjectId) {
|
|
@@ -10,8 +10,6 @@ import { css, jsx } from '@emotion/react';
|
|
|
10
10
|
import { FormattedMessage } from 'react-intl-next';
|
|
11
11
|
import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
12
12
|
import { Text } from '@atlaskit/primitives/compiled';
|
|
13
|
-
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
14
|
-
import { gridSize } from '@atlaskit/theme/constants';
|
|
15
13
|
import { messages } from '../../i18n';
|
|
16
14
|
import { INTEGRATION_MODAL_SOURCE } from '../analytics/analytics';
|
|
17
15
|
import { IntegrationForm } from '../IntegrationForm';
|
|
@@ -19,8 +17,7 @@ import { ShareForm } from '../ShareForm';
|
|
|
19
17
|
import { ShareFormWrapper } from '../ShareFormWrapper';
|
|
20
18
|
import { allowEmails } from '../utils';
|
|
21
19
|
const footerBottomMessageStyles = css({
|
|
22
|
-
|
|
23
|
-
width: `${gridSize() * 44}px`
|
|
20
|
+
width: '352px'
|
|
24
21
|
});
|
|
25
22
|
const footerCustomStyles = css({
|
|
26
23
|
margin: `0 ${"var(--ds-space-negative-300, -24px)"} ${"var(--ds-space-negative-200, -16px)"} ${"var(--ds-space-negative-300, -24px)"}`
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isEmail, isExternalUser, isGroup, isTeam, isUser } from '@atlaskit/smart-user-picker';
|
|
2
2
|
const buildAttributes = (attributes = {}) => ({
|
|
3
3
|
packageName: "@atlaskit/share",
|
|
4
|
-
packageVersion: "6.16.
|
|
4
|
+
packageVersion: "6.16.6",
|
|
5
5
|
...attributes
|
|
6
6
|
});
|
|
7
7
|
const createEvent = (eventType, source, action, actionSubject, actionSubjectId, attributes = {}) => ({
|
|
@@ -10,8 +10,6 @@ import { css, jsx } from '@emotion/react';
|
|
|
10
10
|
import { FormattedMessage } from 'react-intl-next';
|
|
11
11
|
import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
12
12
|
import { Text } from '@atlaskit/primitives/compiled';
|
|
13
|
-
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
14
|
-
import { gridSize } from '@atlaskit/theme/constants';
|
|
15
13
|
import { messages } from '../../i18n';
|
|
16
14
|
import { INTEGRATION_MODAL_SOURCE } from '../analytics/analytics';
|
|
17
15
|
import { IntegrationForm } from '../IntegrationForm';
|
|
@@ -19,8 +17,7 @@ import { ShareForm } from '../ShareForm';
|
|
|
19
17
|
import { ShareFormWrapper } from '../ShareFormWrapper';
|
|
20
18
|
import { allowEmails } from '../utils';
|
|
21
19
|
var footerBottomMessageStyles = css({
|
|
22
|
-
|
|
23
|
-
width: "".concat(gridSize() * 44, "px")
|
|
20
|
+
width: '352px'
|
|
24
21
|
});
|
|
25
22
|
var footerCustomStyles = css({
|
|
26
23
|
margin: "0 ".concat("var(--ds-space-negative-300, -24px)", " ", "var(--ds-space-negative-200, -16px)", " ", "var(--ds-space-negative-300, -24px)")
|
|
@@ -6,7 +6,7 @@ var buildAttributes = function buildAttributes() {
|
|
|
6
6
|
var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
7
7
|
return _objectSpread({
|
|
8
8
|
packageName: "@atlaskit/share",
|
|
9
|
-
packageVersion: "6.16.
|
|
9
|
+
packageVersion: "6.16.6"
|
|
10
10
|
}, attributes);
|
|
11
11
|
};
|
|
12
12
|
var createEvent = function createEvent(eventType, source, action, actionSubject, actionSubjectId) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/share",
|
|
3
|
-
"version": "6.16.
|
|
3
|
+
"version": "6.16.7",
|
|
4
4
|
"description": "Fabric Share Element",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -43,20 +43,20 @@
|
|
|
43
43
|
"@atlaskit/dropdown-menu": "^16.3.0",
|
|
44
44
|
"@atlaskit/form": "^12.2.0",
|
|
45
45
|
"@atlaskit/heading": "^5.2.0",
|
|
46
|
-
"@atlaskit/icon": "^28.
|
|
46
|
+
"@atlaskit/icon": "^28.1.0",
|
|
47
47
|
"@atlaskit/link": "^3.2.0",
|
|
48
48
|
"@atlaskit/menu": "^8.3.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
50
50
|
"@atlaskit/popper": "^7.1.0",
|
|
51
51
|
"@atlaskit/popup": "^4.3.0",
|
|
52
52
|
"@atlaskit/portal": "^5.1.0",
|
|
53
|
-
"@atlaskit/primitives": "^14.
|
|
53
|
+
"@atlaskit/primitives": "^14.12.0",
|
|
54
54
|
"@atlaskit/smart-user-picker": "^8.2.0",
|
|
55
55
|
"@atlaskit/spinner": "^19.0.0",
|
|
56
56
|
"@atlaskit/tabs": "^18.1.0",
|
|
57
57
|
"@atlaskit/textarea": "^8.0.0",
|
|
58
|
-
"@atlaskit/theme": "^
|
|
59
|
-
"@atlaskit/tokens": "^6.
|
|
58
|
+
"@atlaskit/theme": "^20.0.0",
|
|
59
|
+
"@atlaskit/tokens": "^6.1.0",
|
|
60
60
|
"@atlaskit/tooltip": "^20.4.0",
|
|
61
61
|
"@atlaskit/ufo": "^0.4.0",
|
|
62
62
|
"@atlaskit/user-picker": "^11.6.0",
|