@atlaskit/quick-search 10.1.1 → 10.2.1
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 +13 -0
- package/dist/cjs/components/constants.js +2 -0
- package/dist/es2019/components/Results/index.js +2 -0
- package/dist/es2019/components/constants.js +2 -0
- package/dist/es2019/index.js +2 -0
- package/dist/esm/components/Results/index.js +2 -0
- package/dist/esm/components/constants.js +2 -0
- package/dist/esm/index.js +2 -0
- package/package.json +3 -3
- package/tsconfig.json +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/quick-search
|
|
2
2
|
|
|
3
|
+
## 10.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 10.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`a20add1ee54fc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a20add1ee54fc) -
|
|
14
|
+
Enable no-barrel-files for search packages and suppress existing barrels.
|
|
15
|
+
|
|
3
16
|
## 10.1.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -4,6 +4,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.QS_ANALYTICS_EV_SUBMIT = exports.QS_ANALYTICS_EV_QUERY_ENTERED = exports.QS_ANALYTICS_EV_OPEN = exports.QS_ANALYTICS_EV_KB_CTRLS_USED = exports.QS_ANALYTICS_EV_CLOSE = exports.ATLASKIT_QUICKSEARCH_NS = void 0;
|
|
7
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
8
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
7
9
|
/* eslint-disable import/prefer-default-export */
|
|
8
10
|
var ATLASKIT_QUICKSEARCH_NS = exports.ATLASKIT_QUICKSEARCH_NS = 'atlaskit.navigation.quick-search';
|
|
9
11
|
var QS_ANALYTICS_EV_CLOSE = exports.QS_ANALYTICS_EV_CLOSE = "".concat(ATLASKIT_QUICKSEARCH_NS, ".close");
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
2
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
1
3
|
export { default as ContainerResult } from './ContainerResult';
|
|
2
4
|
export { default as ObjectResult } from './ObjectResult';
|
|
3
5
|
export { default as PersonResult } from './PersonResult';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
2
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
1
3
|
/* eslint-disable import/prefer-default-export */
|
|
2
4
|
export const ATLASKIT_QUICKSEARCH_NS = 'atlaskit.navigation.quick-search';
|
|
3
5
|
export const QS_ANALYTICS_EV_CLOSE = `${ATLASKIT_QUICKSEARCH_NS}.close`;
|
package/dist/es2019/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
2
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
1
3
|
export { default as ContainerResult } from './ContainerResult';
|
|
2
4
|
export { default as ObjectResult } from './ObjectResult';
|
|
3
5
|
export { default as PersonResult } from './PersonResult';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
2
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
1
3
|
/* eslint-disable import/prefer-default-export */
|
|
2
4
|
export var ATLASKIT_QUICKSEARCH_NS = 'atlaskit.navigation.quick-search';
|
|
3
5
|
export var QS_ANALYTICS_EV_CLOSE = "".concat(ATLASKIT_QUICKSEARCH_NS, ".close");
|
package/dist/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/quick-search",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.1",
|
|
4
4
|
"description": "A quick-search component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/analytics": "^9.0.0",
|
|
33
|
-
"@atlaskit/avatar": "^25.
|
|
33
|
+
"@atlaskit/avatar": "^25.8.0",
|
|
34
34
|
"@atlaskit/menu": "^8.4.0",
|
|
35
35
|
"@atlaskit/spinner": "^19.0.0",
|
|
36
|
-
"@atlaskit/theme": "^
|
|
36
|
+
"@atlaskit/theme": "^22.0.0",
|
|
37
37
|
"@atlaskit/tokens": "^11.0.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0",
|
|
39
39
|
"keycode": "^2.1.7"
|