@atlaskit/link-create 1.13.3 → 1.14.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/link-create
2
2
 
3
+ ## 1.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#68013](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68013) [`a23882ab49f8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a23882ab49f8) - Upgrade depdendency `final-form` for bugfix.
8
+
9
+ ## 1.14.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#66763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66763) [`496a3feac442`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/496a3feac442) - Update `LinkPickerPlugin` Type to take a generic `entityKey` type
14
+
3
15
  ## 1.13.3
4
16
 
5
17
  ### Patch Changes
@@ -31,7 +31,7 @@ var LinkCreateWithAnalyticsContext = (0, _analytics.withLinkCreateAnalyticsConte
31
31
  }));
32
32
  var PACKAGE_DATA = exports.PACKAGE_DATA = {
33
33
  packageName: "@atlaskit/link-create" || '',
34
- packageVersion: "1.13.3" || '',
34
+ packageVersion: "1.14.1" || '',
35
35
  component: _constants.COMPONENT_NAME,
36
36
  componentName: _constants.COMPONENT_NAME
37
37
  };
@@ -23,7 +23,7 @@ const LinkCreateWithAnalyticsContext = withLinkCreateAnalyticsContext( /*#__PURE
23
23
  }));
24
24
  export const PACKAGE_DATA = {
25
25
  packageName: "@atlaskit/link-create" || '',
26
- packageVersion: "1.13.3" || '',
26
+ packageVersion: "1.14.1" || '',
27
27
  component: COMPONENT_NAME,
28
28
  componentName: COMPONENT_NAME
29
29
  };
@@ -23,7 +23,7 @@ var LinkCreateWithAnalyticsContext = withLinkCreateAnalyticsContext( /*#__PURE__
23
23
  }));
24
24
  export var PACKAGE_DATA = {
25
25
  packageName: "@atlaskit/link-create" || '',
26
- packageVersion: "1.13.3" || '',
26
+ packageVersion: "1.14.1" || '',
27
27
  component: COMPONENT_NAME,
28
28
  componentName: COMPONENT_NAME
29
29
  };
@@ -32,7 +32,7 @@ export type EditViewProps = {
32
32
  */
33
33
  onClose: () => void;
34
34
  };
35
- export interface LinkCreatePlugin {
35
+ export interface LinkCreatePlugin<Key = string> {
36
36
  /**
37
37
  * The Group that this plugin entity belongs to
38
38
  */
@@ -48,7 +48,7 @@ export interface LinkCreatePlugin {
48
48
  /**
49
49
  * A unique key for the plugin entity
50
50
  */
51
- key: string;
51
+ key: Key;
52
52
  /**
53
53
  * A renderer function to render the form
54
54
  */
@@ -32,7 +32,7 @@ export type EditViewProps = {
32
32
  */
33
33
  onClose: () => void;
34
34
  };
35
- export interface LinkCreatePlugin {
35
+ export interface LinkCreatePlugin<Key = string> {
36
36
  /**
37
37
  * The Group that this plugin entity belongs to
38
38
  */
@@ -48,7 +48,7 @@ export interface LinkCreatePlugin {
48
48
  /**
49
49
  * A unique key for the plugin entity
50
50
  */
51
- key: string;
51
+ key: Key;
52
52
  /**
53
53
  * A renderer function to render the form
54
54
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-create",
3
- "version": "1.13.3",
3
+ "version": "1.14.1",
4
4
  "description": "The driver component of meta creation flow",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -18,7 +18,7 @@
18
18
  "name": "LinkCreate"
19
19
  }
20
20
  },
21
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend",
21
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
22
22
  "main": "dist/cjs/index.js",
23
23
  "module": "dist/esm/index.js",
24
24
  "module:es2019": "dist/es2019/index.js",
@@ -46,15 +46,15 @@
46
46
  "@atlaskit/linking-common": "^5.3.0",
47
47
  "@atlaskit/modal-dialog": "^12.10.0",
48
48
  "@atlaskit/platform-feature-flags": "^0.2.1",
49
- "@atlaskit/primitives": "^1.16.0",
49
+ "@atlaskit/primitives": "^1.18.0",
50
50
  "@atlaskit/select": "^17.0.3",
51
51
  "@atlaskit/spinner": "^16.0.0",
52
52
  "@atlaskit/textfield": "^6.0.0",
53
- "@atlaskit/tokens": "^1.33.0",
53
+ "@atlaskit/tokens": "^1.34.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@emotion/react": "^11.7.1",
56
56
  "debounce-promise": "^3.1.2",
57
- "final-form": "^4.20.1",
57
+ "final-form": "^4.20.3",
58
58
  "react-final-form": "^6.5.3"
59
59
  },
60
60
  "peerDependencies": {