@atlaskit/link-picker 1.39.3 → 1.39.4
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/index.js +8 -1
- package/dist/cjs/ui/index.js +1 -1
- package/dist/es2019/index.js +2 -1
- package/dist/es2019/ui/index.js +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/ui/index.js +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/link-picker
|
|
2
2
|
|
|
3
|
+
## 1.39.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#121030](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121030)
|
|
8
|
+
[`23d9b73dfcb67`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/23d9b73dfcb67) -
|
|
9
|
+
Adding loading skeleton to issue goals and exporting the LoaderFallback in linking platform
|
|
10
|
+
|
|
3
11
|
## 1.39.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -10,6 +10,12 @@ Object.defineProperty(exports, "LinkPicker", {
|
|
|
10
10
|
return _ui.default;
|
|
11
11
|
}
|
|
12
12
|
});
|
|
13
|
+
Object.defineProperty(exports, "LoaderFallback", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function get() {
|
|
16
|
+
return _loaderFallback.LoaderFallback;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
13
19
|
Object.defineProperty(exports, "UnauthenticatedError", {
|
|
14
20
|
enumerable: true,
|
|
15
21
|
get: function get() {
|
|
@@ -17,4 +23,5 @@ Object.defineProperty(exports, "UnauthenticatedError", {
|
|
|
17
23
|
}
|
|
18
24
|
});
|
|
19
25
|
var _ui = _interopRequireDefault(require("./ui"));
|
|
20
|
-
var _errors = require("./common/utils/errors");
|
|
26
|
+
var _errors = require("./common/utils/errors");
|
|
27
|
+
var _loaderFallback = require("./ui/loader-fallback");
|
package/dist/cjs/ui/index.js
CHANGED
|
@@ -26,7 +26,7 @@ var testIds = exports.testIds = {
|
|
|
26
26
|
};
|
|
27
27
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
28
28
|
packageName: "@atlaskit/link-picker" || '',
|
|
29
|
-
packageVersion: "1.39.
|
|
29
|
+
packageVersion: "1.39.4" || '',
|
|
30
30
|
componentName: _constants.COMPONENT_NAME,
|
|
31
31
|
source: _constants.COMPONENT_NAME
|
|
32
32
|
};
|
package/dist/es2019/index.js
CHANGED
package/dist/es2019/ui/index.js
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/esm/ui/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ export { default as LinkPicker } from './ui';
|
|
|
2
2
|
export type { LinkPickerProps } from './ui/link-picker';
|
|
3
3
|
export type { LinkInputType, LinkPickerPluginAction, LinkPickerPlugin, LinkPickerState, LinkSearchListItemData, LinkPickerPluginErrorFallback, LinkPickerPluginEmptyStateNoResults, } from './common/types';
|
|
4
4
|
export { UnauthenticatedError } from './common/utils/errors';
|
|
5
|
+
export { LoaderFallback } from './ui/loader-fallback';
|
|
@@ -2,3 +2,4 @@ export { default as LinkPicker } from './ui';
|
|
|
2
2
|
export type { LinkPickerProps } from './ui/link-picker';
|
|
3
3
|
export type { LinkInputType, LinkPickerPluginAction, LinkPickerPlugin, LinkPickerState, LinkSearchListItemData, LinkPickerPluginErrorFallback, LinkPickerPluginEmptyStateNoResults, } from './common/types';
|
|
4
4
|
export { UnauthenticatedError } from './common/utils/errors';
|
|
5
|
+
export { LoaderFallback } from './ui/loader-fallback';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "1.39.
|
|
3
|
+
"version": "1.39.4",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
66
66
|
"@atlaskit/primitives": "^11.0.0",
|
|
67
67
|
"@atlaskit/spinner": "^16.2.0",
|
|
68
|
-
"@atlaskit/tabs": "^16.
|
|
68
|
+
"@atlaskit/tabs": "^16.3.0",
|
|
69
69
|
"@atlaskit/textfield": "^6.4.0",
|
|
70
70
|
"@atlaskit/theme": "^12.11.0",
|
|
71
|
-
"@atlaskit/tokens": "^1.
|
|
71
|
+
"@atlaskit/tokens": "^1.55.0",
|
|
72
72
|
"@atlaskit/tooltip": "^18.5.0",
|
|
73
73
|
"@atlaskit/ufo": "^0.2.0",
|
|
74
74
|
"@atlaskit/visually-hidden": "^1.4.0",
|