@atlaskit/smart-user-picker 6.1.6 → 6.2.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,15 @@
1
1
  # @atlassian/smart-user-picker
2
2
 
3
+ ## 6.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`406273e2aa8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/406273e2aa8) - Export Option component from /option entrypoint
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
3
13
  ## 6.1.6
4
14
 
5
15
  ### Patch Changes
@@ -11,7 +11,7 @@ var _uuid = require("uuid");
11
11
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
12
12
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
13
13
  var packageName = "@atlaskit/smart-user-picker";
14
- var packageVersion = "6.1.6";
14
+ var packageVersion = "6.2.0";
15
15
  var startSession = function startSession() {
16
16
  return {
17
17
  id: (0, _uuid.v4)(),
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Option", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _option.Option;
10
+ }
11
+ });
12
+ var _option = require("@atlaskit/user-picker/option");
@@ -1,7 +1,7 @@
1
1
  import { createAndFireEvent } from '@atlaskit/analytics-next';
2
2
  import { v4 as uuid } from 'uuid';
3
3
  const packageName = "@atlaskit/smart-user-picker";
4
- const packageVersion = "6.1.6";
4
+ const packageVersion = "6.2.0";
5
5
  export const startSession = () => ({
6
6
  id: uuid(),
7
7
  start: Date.now(),
@@ -0,0 +1 @@
1
+ export { Option } from '@atlaskit/user-picker/option';
@@ -4,7 +4,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
4
4
  import { createAndFireEvent } from '@atlaskit/analytics-next';
5
5
  import { v4 as uuid } from 'uuid';
6
6
  var packageName = "@atlaskit/smart-user-picker";
7
- var packageVersion = "6.1.6";
7
+ var packageVersion = "6.2.0";
8
8
  export var startSession = function startSession() {
9
9
  return {
10
10
  id: uuid(),
@@ -0,0 +1 @@
1
+ export { Option } from '@atlaskit/user-picker/option';
@@ -0,0 +1,2 @@
1
+ export { Option } from '@atlaskit/user-picker/option';
2
+ export type { OptionProps } from '@atlaskit/user-picker/option';
@@ -0,0 +1,2 @@
1
+ export { Option } from '@atlaskit/user-picker/option';
2
+ export type { OptionProps } from '@atlaskit/user-picker/option';
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/smart-user-picker/option",
3
+ "main": "../dist/cjs/option.js",
4
+ "module": "../dist/esm/option.js",
5
+ "module:es2019": "../dist/es2019/option.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/option.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <4.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/option.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-user-picker",
3
- "version": "6.1.6",
3
+ "version": "6.2.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -22,7 +22,8 @@
22
22
  "sideEffects": false,
23
23
  "atlaskit:src": "src/index.ts",
24
24
  "af:exports": {
25
- ".": "./src/index.ts"
25
+ ".": "./src/index.ts",
26
+ "./option": "./src/option.ts"
26
27
  },
27
28
  "atlassian": {
28
29
  "team": "Search Platform: Search Experience",
@@ -32,7 +33,7 @@
32
33
  "dependencies": {
33
34
  "@atlaskit/analytics-next": "^9.1.0",
34
35
  "@atlaskit/ufo": "^0.2.0",
35
- "@atlaskit/user-picker": "^10.6.0",
36
+ "@atlaskit/user-picker": "^10.7.0",
36
37
  "@babel/runtime": "^7.0.0",
37
38
  "lodash": "^4.17.21",
38
39
  "memoize-one": "^6.0.0",