@atlaskit/link-picker 5.1.7 → 5.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 +16 -0
- package/dist/cjs/entry-points/errors.js +12 -0
- package/dist/cjs/entry-points/lazy-link-picker.js +13 -0
- package/dist/cjs/entry-points/link-picker.js +13 -0
- package/dist/cjs/entry-points/loader-fallback.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/entry-points/errors.js +1 -0
- package/dist/es2019/entry-points/lazy-link-picker.js +1 -0
- package/dist/es2019/entry-points/link-picker.js +1 -0
- package/dist/es2019/entry-points/loader-fallback.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/es2019/index.js +8 -0
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/entry-points/errors.js +1 -0
- package/dist/esm/entry-points/lazy-link-picker.js +1 -0
- package/dist/esm/entry-points/link-picker.js +1 -0
- package/dist/esm/entry-points/loader-fallback.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/esm/index.js +8 -0
- package/dist/esm/ui/main.js +1 -1
- package/dist/types/entry-points/errors.d.ts +1 -0
- package/dist/types/entry-points/lazy-link-picker.d.ts +1 -0
- package/dist/types/entry-points/link-picker.d.ts +1 -0
- package/dist/types/entry-points/loader-fallback.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types-ts4.5/entry-points/errors.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/lazy-link-picker.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/link-picker.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/loader-fallback.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +6 -0
- package/errors/package.json +17 -0
- package/lazy/package.json +5 -5
- package/link-picker/package.json +17 -0
- package/loader-fallback/package.json +17 -0
- package/package.json +4 -4
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/link-picker
|
|
2
2
|
|
|
3
|
+
## 5.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`71166a02faaa1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/71166a02faaa1) -
|
|
8
|
+
Mark barrel exports as deprecated and add new entry points:
|
|
9
|
+
- @atlaskit/link-picker/errors
|
|
10
|
+
- @atlaskit/link-picker/lazy
|
|
11
|
+
- @atlaskit/link-picker/loader-fallback
|
|
12
|
+
- @atlaskit/link-picker/types
|
|
13
|
+
- @atlaskit/link-picker/ui
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 5.1.7
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "UnauthenticatedError", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _errors.UnauthenticatedError;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _errors = require("../common/utils/errors");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "LazyLinkPicker", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _lazy.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _lazy = _interopRequireDefault(require("../ui/lazy"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _ui.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _ui = _interopRequireDefault(require("../ui"));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "LoaderFallback", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _loaderFallback.LoaderFallback;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _loaderFallback = require("../ui/loader-fallback");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/dist/cjs/ui/main.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: "5.1.
|
|
29
|
+
packageVersion: "5.1.7" || '',
|
|
30
30
|
componentName: _constants.COMPONENT_NAME,
|
|
31
31
|
source: _constants.COMPONENT_NAME
|
|
32
32
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UnauthenticatedError } from '../common/utils/errors';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LazyLinkPicker } from '../ui/lazy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LoaderFallback } from '../ui/loader-fallback';
|
|
File without changes
|
package/dist/es2019/index.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
/** @deprecated Use @atlaskit/link-picker/link-picker */
|
|
1
2
|
export { default } from './ui';
|
|
3
|
+
/** @deprecated Use @atlaskit/link-picker/lazy */
|
|
2
4
|
export { DeprecatedLazyLinkPickerExport as LinkPicker } from './ui';
|
|
5
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
6
|
+
|
|
7
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
8
|
+
|
|
9
|
+
/** @deprecated Use @atlaskit/link-picker/errors */
|
|
3
10
|
export { UnauthenticatedError } from './common/utils/errors';
|
|
11
|
+
/** @deprecated Use @atlaskit/link-picker/loader-fallback */
|
|
4
12
|
export { LoaderFallback } from './ui/loader-fallback';
|
package/dist/es2019/ui/main.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UnauthenticatedError } from '../common/utils/errors';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LazyLinkPicker } from '../ui/lazy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LoaderFallback } from '../ui/loader-fallback';
|
|
File without changes
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
/** @deprecated Use @atlaskit/link-picker/link-picker */
|
|
1
2
|
export { default } from './ui';
|
|
3
|
+
/** @deprecated Use @atlaskit/link-picker/lazy */
|
|
2
4
|
export { DeprecatedLazyLinkPickerExport as LinkPicker } from './ui';
|
|
5
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
6
|
+
|
|
7
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
8
|
+
|
|
9
|
+
/** @deprecated Use @atlaskit/link-picker/errors */
|
|
3
10
|
export { UnauthenticatedError } from './common/utils/errors';
|
|
11
|
+
/** @deprecated Use @atlaskit/link-picker/loader-fallback */
|
|
4
12
|
export { LoaderFallback } from './ui/loader-fallback';
|
package/dist/esm/ui/main.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UnauthenticatedError } from '../common/utils/errors';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LazyLinkPicker } from '../ui/lazy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LoaderFallback } from '../ui/loader-fallback';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LinkPickerProps, LinkInputType, LinkPickerPluginAction, LinkPickerPlugin, LinkPickerState, LinkSearchListItemData, LinkPickerPluginErrorFallback, LinkPickerPluginEmptyStateNoResults, LinkPickerUiOptions, } from '../common/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
/** @deprecated Use @atlaskit/link-picker/link-picker */
|
|
1
2
|
export { default } from './ui';
|
|
3
|
+
/** @deprecated Use @atlaskit/link-picker/lazy */
|
|
2
4
|
export { DeprecatedLazyLinkPickerExport as LinkPicker } from './ui';
|
|
5
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
3
6
|
export type { LinkPickerProps } from './common/types';
|
|
7
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
4
8
|
export type { LinkInputType, LinkPickerPluginAction, LinkPickerPlugin, LinkPickerState, LinkSearchListItemData, LinkPickerPluginErrorFallback, LinkPickerPluginEmptyStateNoResults, LinkPickerUiOptions, } from './common/types';
|
|
9
|
+
/** @deprecated Use @atlaskit/link-picker/errors */
|
|
5
10
|
export { UnauthenticatedError } from './common/utils/errors';
|
|
11
|
+
/** @deprecated Use @atlaskit/link-picker/loader-fallback */
|
|
6
12
|
export { LoaderFallback } from './ui/loader-fallback';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UnauthenticatedError } from '../common/utils/errors';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LazyLinkPicker } from '../ui/lazy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LoaderFallback } from '../ui/loader-fallback';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LinkPickerProps, LinkInputType, LinkPickerPluginAction, LinkPickerPlugin, LinkPickerState, LinkSearchListItemData, LinkPickerPluginErrorFallback, LinkPickerPluginEmptyStateNoResults, LinkPickerUiOptions, } from '../common/types';
|
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
/** @deprecated Use @atlaskit/link-picker/link-picker */
|
|
1
2
|
export { default } from './ui';
|
|
3
|
+
/** @deprecated Use @atlaskit/link-picker/lazy */
|
|
2
4
|
export { DeprecatedLazyLinkPickerExport as LinkPicker } from './ui';
|
|
5
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
3
6
|
export type { LinkPickerProps } from './common/types';
|
|
7
|
+
/** @deprecated Use @atlaskit/link-picker/types */
|
|
4
8
|
export type { LinkInputType, LinkPickerPluginAction, LinkPickerPlugin, LinkPickerState, LinkSearchListItemData, LinkPickerPluginErrorFallback, LinkPickerPluginEmptyStateNoResults, LinkPickerUiOptions, } from './common/types';
|
|
9
|
+
/** @deprecated Use @atlaskit/link-picker/errors */
|
|
5
10
|
export { UnauthenticatedError } from './common/utils/errors';
|
|
11
|
+
/** @deprecated Use @atlaskit/link-picker/loader-fallback */
|
|
6
12
|
export { LoaderFallback } from './ui/loader-fallback';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-picker/errors",
|
|
3
|
+
"main": "../dist/cjs/entry-points/errors.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/errors.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/errors.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/errors.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/errors.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/lazy/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker/lazy",
|
|
3
|
-
"main": "../dist/cjs/lazy.js",
|
|
4
|
-
"module": "../dist/esm/lazy.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/lazy.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/lazy-link-picker.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/lazy-link-picker.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/lazy-link-picker.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/lazy.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/lazy-link-picker.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/lazy.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/lazy-link-picker.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-picker/link-picker",
|
|
3
|
+
"main": "../dist/cjs/entry-points/link-picker.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/link-picker.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/link-picker.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/link-picker.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/link-picker.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-picker/loader-fallback",
|
|
3
|
+
"main": "../dist/cjs/entry-points/loader-fallback.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/loader-fallback.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/loader-fallback.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/loader-fallback.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/loader-fallback.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@atlaskit/linking-common": "^9.11.0",
|
|
63
63
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
64
64
|
"@atlaskit/primitives": "^19.0.0",
|
|
65
|
-
"@atlaskit/smart-card": "^44.
|
|
65
|
+
"@atlaskit/smart-card": "^44.13.0",
|
|
66
66
|
"@atlaskit/spinner": "^19.1.0",
|
|
67
67
|
"@atlaskit/spotlight": "^0.14.0",
|
|
68
68
|
"@atlaskit/tabs": "^19.1.0",
|
|
@@ -88,10 +88,10 @@
|
|
|
88
88
|
"@af/analytics-codegen": "workspace:^",
|
|
89
89
|
"@af/integration-testing": "workspace:^",
|
|
90
90
|
"@af/visual-regression": "workspace:^",
|
|
91
|
-
"@atlaskit/dropdown-menu": "^16.
|
|
91
|
+
"@atlaskit/dropdown-menu": "^16.9.0",
|
|
92
92
|
"@atlaskit/link-test-helpers": "^10.2.0",
|
|
93
93
|
"@atlassian/a11y-jest-testing": "^0.11.0",
|
|
94
|
-
"@atlassian/a11y-playwright-testing": "^0.
|
|
94
|
+
"@atlassian/a11y-playwright-testing": "^0.10.0",
|
|
95
95
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
96
96
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
97
97
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-picker/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|