@atlaskit/link-picker 1.28.0 → 1.28.2
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 +12 -0
- package/dist/cjs/common/utils/analytics/analytics.codegen.js +1 -1
- package/dist/cjs/ui/index.js +2 -3
- package/dist/cjs/ui/link-picker/index.js +0 -1
- package/dist/es2019/common/utils/analytics/analytics.codegen.js +1 -1
- package/dist/es2019/ui/index.js +2 -3
- package/dist/es2019/ui/link-picker/index.js +0 -1
- package/dist/esm/common/utils/analytics/analytics.codegen.js +1 -1
- package/dist/esm/ui/index.js +2 -3
- package/dist/esm/ui/link-picker/index.js +0 -1
- package/dist/types/common/utils/analytics/analytics.codegen.d.ts +2 -2
- package/dist/types-ts4.5/common/utils/analytics/analytics.codegen.d.ts +2 -2
- package/package.json +4 -4
- package/dist/cjs/version.json +0 -5
- package/dist/es2019/version.json +0 -5
- package/dist/esm/version.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/link-picker
|
|
2
2
|
|
|
3
|
+
## 1.28.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d2cf6a73817`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2cf6a73817) - Remove redundant aria-label from the input field
|
|
8
|
+
|
|
9
|
+
## 1.28.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
|
|
14
|
+
|
|
3
15
|
## 1.28.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -11,7 +11,7 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
11
11
|
*
|
|
12
12
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
13
13
|
*
|
|
14
|
-
* @codegen <<SignedSource::
|
|
14
|
+
* @codegen <<SignedSource::cd5b926575a5c379425d0d72e5339f12>>
|
|
15
15
|
* @codegenCommand yarn workspace @atlaskit/link-picker run codegen-analytics
|
|
16
16
|
*/
|
|
17
17
|
|
package/dist/cjs/ui/index.js
CHANGED
|
@@ -14,7 +14,6 @@ var _analyticsNext = require("@atlaskit/analytics-next");
|
|
|
14
14
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
15
|
var _constants = require("../common/constants");
|
|
16
16
|
var _sessionProvider = require("../controllers/session-provider");
|
|
17
|
-
var _version = require("../version.json");
|
|
18
17
|
var _errorBoundary = require("./error-boundary");
|
|
19
18
|
var _loaderFallback = require("./loader-fallback");
|
|
20
19
|
var _messagesProvider = require("./messages-provider");
|
|
@@ -26,8 +25,8 @@ var testIds = {
|
|
|
26
25
|
};
|
|
27
26
|
exports.testIds = testIds;
|
|
28
27
|
var PACKAGE_DATA = {
|
|
29
|
-
packageName:
|
|
30
|
-
packageVersion:
|
|
28
|
+
packageName: "@atlaskit/link-picker",
|
|
29
|
+
packageVersion: "1.28.2",
|
|
31
30
|
componentName: _constants.COMPONENT_NAME,
|
|
32
31
|
source: _constants.COMPONENT_NAME
|
|
33
32
|
};
|
|
@@ -319,7 +319,6 @@ var LinkPicker = (0, _analytics.withLinkPickerAnalyticsContext)( /*#__PURE__*/(0
|
|
|
319
319
|
label: intl.formatMessage(_messages.linkTextMessages.linkTextLabel),
|
|
320
320
|
placeholder: intl.formatMessage(_messages.linkTextMessages.linkTextPlaceholder),
|
|
321
321
|
clearLabel: intl.formatMessage(_messages.linkTextMessages.clearLinkText),
|
|
322
|
-
"aria-label": intl.formatMessage(_messages.linkTextMessages.linkTextAriaLabel),
|
|
323
322
|
onClear: handleClear,
|
|
324
323
|
onChange: handleChangeText
|
|
325
324
|
}), !!queryState && (isLoadingPlugins || isActivePlugin) && (0, _react2.jsx)(_searchResults.SearchResults, {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::cd5b926575a5c379425d0d72e5339f12>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlaskit/link-picker run codegen-analytics
|
|
8
8
|
*/
|
|
9
9
|
|
package/dist/es2019/ui/index.js
CHANGED
|
@@ -7,7 +7,6 @@ import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
|
7
7
|
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
8
8
|
import { COMPONENT_NAME } from '../common/constants';
|
|
9
9
|
import { LinkPickerSessionProvider } from '../controllers/session-provider';
|
|
10
|
-
import { name as packageName, version as packageVersion } from '../version.json';
|
|
11
10
|
import { ErrorBoundary } from './error-boundary';
|
|
12
11
|
import { LoaderFallback } from './loader-fallback';
|
|
13
12
|
import { MessagesProvider } from './messages-provider';
|
|
@@ -16,8 +15,8 @@ export const testIds = {
|
|
|
16
15
|
linkPickerRoot: 'link-picker-root'
|
|
17
16
|
};
|
|
18
17
|
export const PACKAGE_DATA = {
|
|
19
|
-
packageName,
|
|
20
|
-
packageVersion,
|
|
18
|
+
packageName: "@atlaskit/link-picker",
|
|
19
|
+
packageVersion: "1.28.2",
|
|
21
20
|
componentName: COMPONENT_NAME,
|
|
22
21
|
source: COMPONENT_NAME
|
|
23
22
|
};
|
|
@@ -319,7 +319,6 @@ export const LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(({
|
|
|
319
319
|
label: intl.formatMessage(linkTextMessages.linkTextLabel),
|
|
320
320
|
placeholder: intl.formatMessage(linkTextMessages.linkTextPlaceholder),
|
|
321
321
|
clearLabel: intl.formatMessage(linkTextMessages.clearLinkText),
|
|
322
|
-
"aria-label": intl.formatMessage(linkTextMessages.linkTextAriaLabel),
|
|
323
322
|
onClear: handleClear,
|
|
324
323
|
onChange: handleChangeText
|
|
325
324
|
}), !!queryState && (isLoadingPlugins || isActivePlugin) && jsx(SearchResults, {
|
|
@@ -4,7 +4,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
4
4
|
*
|
|
5
5
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
6
6
|
*
|
|
7
|
-
* @codegen <<SignedSource::
|
|
7
|
+
* @codegen <<SignedSource::cd5b926575a5c379425d0d72e5339f12>>
|
|
8
8
|
* @codegenCommand yarn workspace @atlaskit/link-picker run codegen-analytics
|
|
9
9
|
*/
|
|
10
10
|
|
package/dist/esm/ui/index.js
CHANGED
|
@@ -7,7 +7,6 @@ import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
|
7
7
|
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
8
8
|
import { COMPONENT_NAME } from '../common/constants';
|
|
9
9
|
import { LinkPickerSessionProvider } from '../controllers/session-provider';
|
|
10
|
-
import { name as packageName, version as packageVersion } from '../version.json';
|
|
11
10
|
import { ErrorBoundary } from './error-boundary';
|
|
12
11
|
import { LoaderFallback } from './loader-fallback';
|
|
13
12
|
import { MessagesProvider } from './messages-provider';
|
|
@@ -16,8 +15,8 @@ export var testIds = {
|
|
|
16
15
|
linkPickerRoot: 'link-picker-root'
|
|
17
16
|
};
|
|
18
17
|
export var PACKAGE_DATA = {
|
|
19
|
-
packageName:
|
|
20
|
-
packageVersion:
|
|
18
|
+
packageName: "@atlaskit/link-picker",
|
|
19
|
+
packageVersion: "1.28.2",
|
|
21
20
|
componentName: COMPONENT_NAME,
|
|
22
21
|
source: COMPONENT_NAME
|
|
23
22
|
};
|
|
@@ -312,7 +312,6 @@ export var LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(functi
|
|
|
312
312
|
label: intl.formatMessage(linkTextMessages.linkTextLabel),
|
|
313
313
|
placeholder: intl.formatMessage(linkTextMessages.linkTextPlaceholder),
|
|
314
314
|
clearLabel: intl.formatMessage(linkTextMessages.clearLinkText),
|
|
315
|
-
"aria-label": intl.formatMessage(linkTextMessages.linkTextAriaLabel),
|
|
316
315
|
onClear: handleClear,
|
|
317
316
|
onChange: handleChangeText
|
|
318
317
|
}), !!queryState && (isLoadingPlugins || isActivePlugin) && jsx(SearchResults, {
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::cd5b926575a5c379425d0d72e5339f12>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlaskit/link-picker run codegen-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
10
|
-
packageName:
|
|
10
|
+
packageName: string;
|
|
11
11
|
packageVersion: string;
|
|
12
12
|
source: 'linkPicker';
|
|
13
13
|
componentName: 'linkPicker';
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::cd5b926575a5c379425d0d72e5339f12>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlaskit/link-picker run codegen-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
10
|
-
packageName:
|
|
10
|
+
packageName: string;
|
|
11
11
|
packageVersion: string;
|
|
12
12
|
source: 'linkPicker';
|
|
13
13
|
componentName: 'linkPicker';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.2",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
56
|
-
"@atlaskit/button": "^16.
|
|
56
|
+
"@atlaskit/button": "^16.9.0",
|
|
57
57
|
"@atlaskit/empty-state": "^7.6.0",
|
|
58
58
|
"@atlaskit/form": "^8.11.0",
|
|
59
59
|
"@atlaskit/frontend-utilities": "^2.7.0",
|
|
60
60
|
"@atlaskit/icon": "^21.12.0",
|
|
61
|
-
"@atlaskit/linking-common": "^4.
|
|
61
|
+
"@atlaskit/linking-common": "^4.4.0",
|
|
62
62
|
"@atlaskit/onboarding": "^10.8.2",
|
|
63
63
|
"@atlaskit/platform-feature-flags": "^0.2.1",
|
|
64
64
|
"@atlaskit/spinner": "^15.5.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@atlaskit/dropdown-menu": "^11.11.0",
|
|
88
88
|
"@atlaskit/link-provider": "^1.6.0",
|
|
89
89
|
"@atlaskit/link-test-helpers": "^6.0.0",
|
|
90
|
-
"@atlaskit/linking-common": "^4.
|
|
90
|
+
"@atlaskit/linking-common": "^4.4.0",
|
|
91
91
|
"@atlaskit/visual-regression": "*",
|
|
92
92
|
"@atlaskit/webdriver-runner": "*",
|
|
93
93
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|
package/dist/cjs/version.json
DELETED
package/dist/es2019/version.json
DELETED