@atlaskit/user-picker 11.6.3 → 11.6.5
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/dist/cjs/analytics.js +1 -1
- package/dist/cjs/components/AddOptionAvatar.js +1 -1
- package/dist/cjs/components/GroupOption/main.js +1 -1
- package/dist/cjs/i18n/en.js +1 -0
- package/dist/cjs/i18n/en_GB.js +1 -0
- package/dist/cjs/i18n/en_ZZ.js +1 -0
- package/dist/es2019/analytics.js +1 -1
- package/dist/es2019/components/AddOptionAvatar.js +1 -1
- package/dist/es2019/components/GroupOption/main.js +1 -1
- package/dist/es2019/i18n/en.js +1 -0
- package/dist/es2019/i18n/en_GB.js +1 -0
- package/dist/es2019/i18n/en_ZZ.js +1 -0
- package/dist/esm/analytics.js +1 -1
- package/dist/esm/components/AddOptionAvatar.js +1 -1
- package/dist/esm/components/GroupOption/main.js +1 -1
- package/dist/esm/i18n/en.js +1 -0
- package/dist/esm/i18n/en_GB.js +1 -0
- package/dist/esm/i18n/en_ZZ.js +1 -0
- package/dist/types/i18n/en.d.ts +1 -0
- package/dist/types/i18n/en_GB.d.ts +1 -0
- package/dist/types/i18n/en_ZZ.d.ts +1 -0
- package/dist/types-ts4.5/i18n/en.d.ts +1 -0
- package/dist/types-ts4.5/i18n/en_GB.d.ts +1 -0
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/user-picker
|
|
2
2
|
|
|
3
|
+
## 11.6.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`f0662cd7a143e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f0662cd7a143e) -
|
|
8
|
+
Internal changes to how borders are applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 11.6.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 11.6.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/analytics.js
CHANGED
|
@@ -12,7 +12,7 @@ var _utils = require("./components/utils");
|
|
|
12
12
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
13
13
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
14
14
|
var packageName = "@atlaskit/user-picker";
|
|
15
|
-
var packageVersion = "
|
|
15
|
+
var packageVersion = "0.0.0-development";
|
|
16
16
|
var UUID_REGEXP_TEAMS_GROUPS = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
17
17
|
var UUID_REGEXP_OLD_AAID = /^[a-fA-F0-9]{1,8}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
18
18
|
var UUID_REGEXP_NEW_AAID = /^[a-fA-F0-9]{24,24}$/;
|
|
@@ -25,7 +25,7 @@ var getEmailAvatarWrapperStyle = function getEmailAvatarWrapperStyle(isLozenge,
|
|
|
25
25
|
padding: padding,
|
|
26
26
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
27
27
|
backgroundColor: backgroundColor,
|
|
28
|
-
borderRadius:
|
|
28
|
+
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
29
29
|
display: 'flex',
|
|
30
30
|
alignItems: 'center',
|
|
31
31
|
marginLeft: "var(--ds-space-025, 2px)"
|
|
@@ -30,7 +30,7 @@ var groupOptionIconWrapper = exports.groupOptionIconWrapper = (0, _react2.css)({
|
|
|
30
30
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
31
31
|
'> span': {
|
|
32
32
|
backgroundColor: "var(--ds-background-neutral, ".concat(_colors.N20, ")"),
|
|
33
|
-
borderRadius:
|
|
33
|
+
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
34
34
|
padding: "var(--ds-space-050, 4px)"
|
|
35
35
|
}
|
|
36
36
|
});
|
package/dist/cjs/i18n/en.js
CHANGED
|
@@ -40,6 +40,7 @@ var _default = exports.default = {
|
|
|
40
40
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
41
41
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
42
42
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
43
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
43
44
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
44
45
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
45
46
|
'fabric.elements.user-picker.team.member.count': 'Team • {count} {count, plural, one {member} other {members}}',
|
package/dist/cjs/i18n/en_GB.js
CHANGED
|
@@ -40,6 +40,7 @@ var _default = exports.default = {
|
|
|
40
40
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
41
41
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
42
42
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
43
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
43
44
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
44
45
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
45
46
|
'fabric.elements.user-picker.team.member.count': 'Team • {count} {count, plural, one {member} other {members}}',
|
package/dist/cjs/i18n/en_ZZ.js
CHANGED
|
@@ -40,6 +40,7 @@ var _default = exports.default = {
|
|
|
40
40
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
41
41
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
42
42
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
43
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
43
44
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
44
45
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
45
46
|
'fabric.elements.user-picker.team.member.count': '{count, plural, one {Team • {count} member} other {Team • {count} members}}',
|
package/dist/es2019/analytics.js
CHANGED
|
@@ -2,7 +2,7 @@ import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
|
2
2
|
import { v4 as uuidv4 } from 'uuid';
|
|
3
3
|
import { isCustom, isExternalUser } from './components/utils';
|
|
4
4
|
const packageName = "@atlaskit/user-picker";
|
|
5
|
-
const packageVersion = "
|
|
5
|
+
const packageVersion = "0.0.0-development";
|
|
6
6
|
const UUID_REGEXP_TEAMS_GROUPS = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
7
7
|
const UUID_REGEXP_OLD_AAID = /^[a-fA-F0-9]{1,8}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
8
8
|
const UUID_REGEXP_NEW_AAID = /^[a-fA-F0-9]{24,24}$/;
|
|
@@ -16,7 +16,7 @@ const getEmailAvatarWrapperStyle = (isLozenge, isPendingAction) => {
|
|
|
16
16
|
padding,
|
|
17
17
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
18
18
|
backgroundColor,
|
|
19
|
-
borderRadius:
|
|
19
|
+
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
20
20
|
display: 'flex',
|
|
21
21
|
alignItems: 'center',
|
|
22
22
|
marginLeft: "var(--ds-space-025, 2px)"
|
|
@@ -19,7 +19,7 @@ export const groupOptionIconWrapper = css({
|
|
|
19
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
20
20
|
'> span': {
|
|
21
21
|
backgroundColor: `var(--ds-background-neutral, ${N20})`,
|
|
22
|
-
borderRadius:
|
|
22
|
+
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
23
23
|
padding: "var(--ds-space-050, 4px)"
|
|
24
24
|
}
|
|
25
25
|
});
|
package/dist/es2019/i18n/en.js
CHANGED
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
35
35
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
36
36
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
37
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
37
38
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
38
39
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
39
40
|
'fabric.elements.user-picker.team.member.count': 'Team • {count} {count, plural, one {member} other {members}}',
|
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
35
35
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
36
36
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
37
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
37
38
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
38
39
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
39
40
|
'fabric.elements.user-picker.team.member.count': 'Team • {count} {count, plural, one {member} other {members}}',
|
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
35
35
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
36
36
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
37
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
37
38
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
38
39
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
39
40
|
'fabric.elements.user-picker.team.member.count': '{count, plural, one {Team • {count} member} other {Team • {count} members}}',
|
package/dist/esm/analytics.js
CHANGED
|
@@ -5,7 +5,7 @@ import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
|
5
5
|
import { v4 as uuidv4 } from 'uuid';
|
|
6
6
|
import { isCustom, isExternalUser } from './components/utils';
|
|
7
7
|
var packageName = "@atlaskit/user-picker";
|
|
8
|
-
var packageVersion = "
|
|
8
|
+
var packageVersion = "0.0.0-development";
|
|
9
9
|
var UUID_REGEXP_TEAMS_GROUPS = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
10
10
|
var UUID_REGEXP_OLD_AAID = /^[a-fA-F0-9]{1,8}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
11
11
|
var UUID_REGEXP_NEW_AAID = /^[a-fA-F0-9]{24,24}$/;
|
|
@@ -16,7 +16,7 @@ var getEmailAvatarWrapperStyle = function getEmailAvatarWrapperStyle(isLozenge,
|
|
|
16
16
|
padding: padding,
|
|
17
17
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
18
18
|
backgroundColor: backgroundColor,
|
|
19
|
-
borderRadius:
|
|
19
|
+
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
20
20
|
display: 'flex',
|
|
21
21
|
alignItems: 'center',
|
|
22
22
|
marginLeft: "var(--ds-space-025, 2px)"
|
|
@@ -26,7 +26,7 @@ export var groupOptionIconWrapper = css({
|
|
|
26
26
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
27
27
|
'> span': {
|
|
28
28
|
backgroundColor: "var(--ds-background-neutral, ".concat(N20, ")"),
|
|
29
|
-
borderRadius:
|
|
29
|
+
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
30
30
|
padding: "var(--ds-space-050, 4px)"
|
|
31
31
|
}
|
|
32
32
|
});
|
package/dist/esm/i18n/en.js
CHANGED
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
35
35
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
36
36
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
37
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
37
38
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
38
39
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
39
40
|
'fabric.elements.user-picker.team.member.count': 'Team • {count} {count, plural, one {member} other {members}}',
|
package/dist/esm/i18n/en_GB.js
CHANGED
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
35
35
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
36
36
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
37
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
37
38
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
38
39
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
39
40
|
'fabric.elements.user-picker.team.member.count': 'Team • {count} {count, plural, one {member} other {members}}',
|
package/dist/esm/i18n/en_ZZ.js
CHANGED
|
@@ -34,6 +34,7 @@ export default {
|
|
|
34
34
|
'fabric.elements.user-picker.source.confluence': 'Confluence',
|
|
35
35
|
'fabric.elements.user-picker.source.jira': 'Jira',
|
|
36
36
|
'fabric.elements.user-picker.source.other-atlassian': 'Other Atlassian products',
|
|
37
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': 'Other Atlassian apps',
|
|
37
38
|
'fabric.elements.user-picker.team.member.50plus': 'Team • 50+ members',
|
|
38
39
|
'fabric.elements.user-picker.team.member.50plus.including.you': 'Team • 50+ members, including you',
|
|
39
40
|
'fabric.elements.user-picker.team.member.count': '{count, plural, one {Team • {count} member} other {Team • {count} members}}',
|
package/dist/types/i18n/en.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ declare const _default: {
|
|
|
32
32
|
'fabric.elements.user-picker.source.confluence': string;
|
|
33
33
|
'fabric.elements.user-picker.source.jira': string;
|
|
34
34
|
'fabric.elements.user-picker.source.other-atlassian': string;
|
|
35
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': string;
|
|
35
36
|
'fabric.elements.user-picker.team.member.50plus': string;
|
|
36
37
|
'fabric.elements.user-picker.team.member.50plus.including.you': string;
|
|
37
38
|
'fabric.elements.user-picker.team.member.count': string;
|
|
@@ -32,6 +32,7 @@ declare const _default: {
|
|
|
32
32
|
'fabric.elements.user-picker.source.confluence': string;
|
|
33
33
|
'fabric.elements.user-picker.source.jira': string;
|
|
34
34
|
'fabric.elements.user-picker.source.other-atlassian': string;
|
|
35
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': string;
|
|
35
36
|
'fabric.elements.user-picker.team.member.50plus': string;
|
|
36
37
|
'fabric.elements.user-picker.team.member.50plus.including.you': string;
|
|
37
38
|
'fabric.elements.user-picker.team.member.count': string;
|
|
@@ -32,6 +32,7 @@ declare const _default: {
|
|
|
32
32
|
'fabric.elements.user-picker.source.confluence': string;
|
|
33
33
|
'fabric.elements.user-picker.source.jira': string;
|
|
34
34
|
'fabric.elements.user-picker.source.other-atlassian': string;
|
|
35
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': string;
|
|
35
36
|
'fabric.elements.user-picker.team.member.50plus': string;
|
|
36
37
|
'fabric.elements.user-picker.team.member.50plus.including.you': string;
|
|
37
38
|
'fabric.elements.user-picker.team.member.count': string;
|
|
@@ -32,6 +32,7 @@ declare const _default: {
|
|
|
32
32
|
'fabric.elements.user-picker.source.confluence': string;
|
|
33
33
|
'fabric.elements.user-picker.source.jira': string;
|
|
34
34
|
'fabric.elements.user-picker.source.other-atlassian': string;
|
|
35
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': string;
|
|
35
36
|
'fabric.elements.user-picker.team.member.50plus': string;
|
|
36
37
|
'fabric.elements.user-picker.team.member.50plus.including.you': string;
|
|
37
38
|
'fabric.elements.user-picker.team.member.count': string;
|
|
@@ -32,6 +32,7 @@ declare const _default: {
|
|
|
32
32
|
'fabric.elements.user-picker.source.confluence': string;
|
|
33
33
|
'fabric.elements.user-picker.source.jira': string;
|
|
34
34
|
'fabric.elements.user-picker.source.other-atlassian': string;
|
|
35
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': string;
|
|
35
36
|
'fabric.elements.user-picker.team.member.50plus': string;
|
|
36
37
|
'fabric.elements.user-picker.team.member.50plus.including.you': string;
|
|
37
38
|
'fabric.elements.user-picker.team.member.count': string;
|
|
@@ -32,6 +32,7 @@ declare const _default: {
|
|
|
32
32
|
'fabric.elements.user-picker.source.confluence': string;
|
|
33
33
|
'fabric.elements.user-picker.source.jira': string;
|
|
34
34
|
'fabric.elements.user-picker.source.other-atlassian': string;
|
|
35
|
+
'fabric.elements.user-picker.source.other-atlassian-appify': string;
|
|
35
36
|
'fabric.elements.user-picker.team.member.50plus': string;
|
|
36
37
|
'fabric.elements.user-picker.team.member.50plus.including.you': string;
|
|
37
38
|
'fabric.elements.user-picker.team.member.count': string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/user-picker",
|
|
3
|
-
"version": "11.6.
|
|
3
|
+
"version": "11.6.5",
|
|
4
4
|
"description": "Fabric component for display a dropdown to select a user from",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"@atlaskit/people-teams-ui-public": "^3.1.0",
|
|
57
57
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
58
58
|
"@atlaskit/popper": "^7.1.0",
|
|
59
|
-
"@atlaskit/primitives": "^14.
|
|
59
|
+
"@atlaskit/primitives": "^14.14.0",
|
|
60
60
|
"@atlaskit/select": "^21.2.0",
|
|
61
61
|
"@atlaskit/spinner": "^19.0.0",
|
|
62
62
|
"@atlaskit/teams-avatar": "^2.3.0",
|
|
63
|
-
"@atlaskit/theme": "^
|
|
64
|
-
"@atlaskit/tokens": "^6.
|
|
63
|
+
"@atlaskit/theme": "^21.0.0",
|
|
64
|
+
"@atlaskit/tokens": "^6.3.0",
|
|
65
65
|
"@atlaskit/tooltip": "^20.4.0",
|
|
66
66
|
"@atlaskit/ufo": "^0.4.0",
|
|
67
67
|
"@babel/runtime": "^7.0.0",
|