@atlaskit/user-picker 11.6.8 → 11.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,24 @@
1
1
  # @atlaskit/user-picker
2
2
 
3
+ ## 11.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`be2f98085fa9f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/be2f98085fa9f) -
8
+ [ux] Introduce additional email props to smart user picker (displayEmailInByline,
9
+ enableEmailSearch, allowEmailSelectionWhenEmailMatched) and one type adjustment to user picker
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 11.6.9
16
+
17
+ ### Patch Changes
18
+
19
+ - [`944f9ffd5469c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/944f9ffd5469c) -
20
+ Remove @atlaskit/analytics-viewer
21
+
3
22
  ## 11.6.8
4
23
 
5
24
  ### Patch Changes
@@ -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 = "0.0.0-development";
15
+ var packageVersion = "11.6.9";
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}$/;
@@ -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 = "0.0.0-development";
5
+ const packageVersion = "11.6.9";
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}$/;
@@ -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 = "0.0.0-development";
8
+ var packageVersion = "11.6.9";
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}$/;
@@ -287,6 +287,7 @@ export interface User extends OptionData {
287
287
  publicName?: string;
288
288
  title?: string;
289
289
  type?: 'user' | 'external_user';
290
+ userType?: 'DEFAULT' | 'APP' | 'CUSTOMER' | 'SYSTEM';
290
291
  }
291
292
  export type LozengeColor = 'default' | 'success' | 'removed' | 'inprogress' | 'new' | 'moved';
292
293
  export interface LozengeProps {
@@ -290,6 +290,7 @@ export interface User extends OptionData {
290
290
  publicName?: string;
291
291
  title?: string;
292
292
  type?: 'user' | 'external_user';
293
+ userType?: 'DEFAULT' | 'APP' | 'CUSTOMER' | 'SYSTEM';
293
294
  }
294
295
  export type LozengeColor = 'default' | 'success' | 'removed' | 'inprogress' | 'new' | 'moved';
295
296
  export interface LozengeProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/user-picker",
3
- "version": "11.6.8",
3
+ "version": "11.7.0",
4
4
  "description": "Fabric component for display a dropdown to select a user from",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -44,11 +44,11 @@
44
44
  "dependencies": {
45
45
  "@atlaskit/afm-i18n-platform-elements-user-picker": "2.7.0",
46
46
  "@atlaskit/analytics-next": "^11.1.0",
47
- "@atlaskit/avatar": "^25.1.0",
48
- "@atlaskit/icon": "^28.2.0",
47
+ "@atlaskit/avatar": "^25.2.0",
48
+ "@atlaskit/icon": "^28.3.0",
49
49
  "@atlaskit/logo": "^19.7.0",
50
50
  "@atlaskit/lozenge": "^13.0.0",
51
- "@atlaskit/people-teams-ui-public": "^3.2.0",
51
+ "@atlaskit/people-teams-ui-public": "^3.4.0",
52
52
  "@atlaskit/platform-feature-flags": "^1.1.0",
53
53
  "@atlaskit/popper": "^7.1.0",
54
54
  "@atlaskit/primitives": "^14.15.0",
@@ -72,7 +72,6 @@
72
72
  "react-intl-next": "npm:react-intl@^5.18.1"
73
73
  },
74
74
  "devDependencies": {
75
- "@atlaskit/analytics-viewer": "^0.9.0",
76
75
  "@atlaskit/elements-test-helpers": "workspace:^",
77
76
  "@atlaskit/heading": "^5.2.0",
78
77
  "@atlassian/feature-flags-test-utils": "^0.3.0",