@atlaskit/share 6.12.0 → 6.13.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 +8 -0
- package/dist/cjs/components/CopyLinkButton.js +1 -1
- package/dist/cjs/components/CopyLinkButtonNext.js +3 -2
- package/dist/cjs/components/analytics/analytics.js +1 -1
- package/dist/es2019/components/CopyLinkButton.js +1 -1
- package/dist/es2019/components/CopyLinkButtonNext.js +3 -2
- package/dist/es2019/components/analytics/analytics.js +1 -1
- package/dist/esm/components/CopyLinkButton.js +1 -1
- package/dist/esm/components/CopyLinkButtonNext.js +3 -2
- package/dist/esm/components/analytics/analytics.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/share
|
|
2
2
|
|
|
3
|
+
## 6.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#175527](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/175527)
|
|
8
|
+
[`4747c395fd276`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4747c395fd276) -
|
|
9
|
+
[ux] Update compiled migrated button styles for the extended variant
|
|
10
|
+
|
|
3
11
|
## 6.12.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -139,7 +139,7 @@ var CopyLinkButtonInner = exports.CopyLinkButtonInner = /*#__PURE__*/function (_
|
|
|
139
139
|
theme: isExtendedShareDialogEnabled ? function (current, themeProps) {
|
|
140
140
|
return {
|
|
141
141
|
buttonStyles: _objectSpread(_objectSpread({}, current(themeProps).buttonStyles), {}, {
|
|
142
|
-
color: "var(--ds-text, #
|
|
142
|
+
color: "var(--ds-text-subtle, #44546F)",
|
|
143
143
|
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
144
144
|
alignItems: 'center'
|
|
145
145
|
}),
|
|
@@ -127,8 +127,9 @@ var CopyLinkButton = exports.CopyLinkButton = /*#__PURE__*/function (_React$Comp
|
|
|
127
127
|
theme: isExtendedShareDialogEnabled ? function (current, themeProps) {
|
|
128
128
|
return {
|
|
129
129
|
buttonStyles: _objectSpread(_objectSpread({}, current(themeProps).buttonStyles), {}, {
|
|
130
|
-
color: "var(--ds-text, #
|
|
131
|
-
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
130
|
+
color: "var(--ds-text-subtle, #44546F)",
|
|
131
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
132
|
+
alignItems: 'center'
|
|
132
133
|
}),
|
|
133
134
|
spinnerStyles: current(themeProps).spinnerStyles
|
|
134
135
|
};
|
|
@@ -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
|
+
packageVersion: "6.12.0"
|
|
17
17
|
}, attributes);
|
|
18
18
|
};
|
|
19
19
|
var createEvent = function createEvent(eventType, source, action, actionSubject, actionSubjectId) {
|
|
@@ -121,7 +121,7 @@ export class CopyLinkButtonInner extends React.Component {
|
|
|
121
121
|
theme: isExtendedShareDialogEnabled ? (current, themeProps) => ({
|
|
122
122
|
buttonStyles: {
|
|
123
123
|
...current(themeProps).buttonStyles,
|
|
124
|
-
color: "var(--ds-text, #
|
|
124
|
+
color: "var(--ds-text-subtle, #44546F)",
|
|
125
125
|
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
126
126
|
alignItems: 'center'
|
|
127
127
|
},
|
|
@@ -105,8 +105,9 @@ export class CopyLinkButton extends React.Component {
|
|
|
105
105
|
theme: isExtendedShareDialogEnabled ? (current, themeProps) => ({
|
|
106
106
|
buttonStyles: {
|
|
107
107
|
...current(themeProps).buttonStyles,
|
|
108
|
-
color: "var(--ds-text, #
|
|
109
|
-
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
108
|
+
color: "var(--ds-text-subtle, #44546F)",
|
|
109
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
110
|
+
alignItems: 'center'
|
|
110
111
|
},
|
|
111
112
|
spinnerStyles: current(themeProps).spinnerStyles
|
|
112
113
|
}) : undefined
|
|
@@ -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.
|
|
4
|
+
packageVersion: "6.12.0",
|
|
5
5
|
...attributes
|
|
6
6
|
});
|
|
7
7
|
const createEvent = (eventType, source, action, actionSubject, actionSubjectId, attributes = {}) => ({
|
|
@@ -135,7 +135,7 @@ export var CopyLinkButtonInner = /*#__PURE__*/function (_React$Component) {
|
|
|
135
135
|
theme: isExtendedShareDialogEnabled ? function (current, themeProps) {
|
|
136
136
|
return {
|
|
137
137
|
buttonStyles: _objectSpread(_objectSpread({}, current(themeProps).buttonStyles), {}, {
|
|
138
|
-
color: "var(--ds-text, #
|
|
138
|
+
color: "var(--ds-text-subtle, #44546F)",
|
|
139
139
|
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
140
140
|
alignItems: 'center'
|
|
141
141
|
}),
|
|
@@ -120,8 +120,9 @@ export var CopyLinkButton = /*#__PURE__*/function (_React$Component) {
|
|
|
120
120
|
theme: isExtendedShareDialogEnabled ? function (current, themeProps) {
|
|
121
121
|
return {
|
|
122
122
|
buttonStyles: _objectSpread(_objectSpread({}, current(themeProps).buttonStyles), {}, {
|
|
123
|
-
color: "var(--ds-text, #
|
|
124
|
-
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
123
|
+
color: "var(--ds-text-subtle, #44546F)",
|
|
124
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
125
|
+
alignItems: 'center'
|
|
125
126
|
}),
|
|
126
127
|
spinnerStyles: current(themeProps).spinnerStyles
|
|
127
128
|
};
|
|
@@ -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.
|
|
9
|
+
packageVersion: "6.12.0"
|
|
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.
|
|
3
|
+
"version": "6.13.0",
|
|
4
4
|
"description": "Fabric Share Element",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@atlaskit/dropdown-menu": "^16.1.0",
|
|
45
45
|
"@atlaskit/form": "^12.0.0",
|
|
46
46
|
"@atlaskit/heading": "^5.2.0",
|
|
47
|
-
"@atlaskit/icon": "^27.
|
|
47
|
+
"@atlaskit/icon": "^27.1.0",
|
|
48
48
|
"@atlaskit/link": "^3.2.0",
|
|
49
49
|
"@atlaskit/menu": "^8.0.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"@atlaskit/tabs": "^18.1.0",
|
|
58
58
|
"@atlaskit/textarea": "^8.0.0",
|
|
59
59
|
"@atlaskit/theme": "^18.0.0",
|
|
60
|
-
"@atlaskit/tokens": "^5.
|
|
60
|
+
"@atlaskit/tokens": "^5.4.0",
|
|
61
61
|
"@atlaskit/tooltip": "^20.3.0",
|
|
62
62
|
"@atlaskit/ufo": "^0.4.0",
|
|
63
|
-
"@atlaskit/user-picker": "^11.
|
|
63
|
+
"@atlaskit/user-picker": "^11.3.0",
|
|
64
64
|
"@atlaskit/util-service-support": "^6.3.0",
|
|
65
65
|
"@babel/runtime": "^7.0.0",
|
|
66
66
|
"@emotion/react": "^11.7.1",
|