@atlaskit/link-create 1.6.0 → 1.7.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/link-create
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#42674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42674) [`2fd5dd27ec2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fd5dd27ec2) - EDM-8373: export editViewProps type
8
+
3
9
  ## 1.6.0
4
10
 
5
11
  ### Minor Changes
@@ -35,7 +35,7 @@ var LinkCreateWithAnalyticsContext = (0, _analytics.withLinkCreateAnalyticsConte
35
35
  }));
36
36
  var PACKAGE_DATA = exports.PACKAGE_DATA = {
37
37
  packageName: "@atlaskit/link-create" || '',
38
- packageVersion: "1.6.0" || '',
38
+ packageVersion: "1.7.0" || '',
39
39
  componentName: _constants.COMPONENT_NAME,
40
40
  source: _constants.COMPONENT_NAME
41
41
  };
@@ -26,7 +26,7 @@ const LinkCreateWithAnalyticsContext = withLinkCreateAnalyticsContext( /*#__PURE
26
26
  }));
27
27
  export const PACKAGE_DATA = {
28
28
  packageName: "@atlaskit/link-create" || '',
29
- packageVersion: "1.6.0" || '',
29
+ packageVersion: "1.7.0" || '',
30
30
  componentName: COMPONENT_NAME,
31
31
  source: COMPONENT_NAME
32
32
  };
@@ -27,7 +27,7 @@ var LinkCreateWithAnalyticsContext = withLinkCreateAnalyticsContext( /*#__PURE__
27
27
  }));
28
28
  export var PACKAGE_DATA = {
29
29
  packageName: "@atlaskit/link-create" || '',
30
- packageVersion: "1.6.0" || '',
30
+ packageVersion: "1.7.0" || '',
31
31
  componentName: COMPONENT_NAME,
32
32
  source: COMPONENT_NAME
33
33
  };
@@ -1,5 +1,5 @@
1
1
  export type { CreateFormProps } from './ui/index';
2
- export type { LinkCreateProps, LinkCreatePlugin, LinkCreateWithModalProps, CreatePayload, } from './common/types';
2
+ export type { LinkCreateProps, LinkCreatePlugin, LinkCreateWithModalProps, CreatePayload, EditViewProps, } from './common/types';
3
3
  export { default, TextField, CreateForm, Select, AsyncSelect, CreateFormLoader, FormSpy, } from './ui/index';
4
4
  export { useLinkCreateCallback, LinkCreateCallbackProvider, } from './controllers/callback-context';
5
5
  export type { Validator, ValidatorMap } from './common/types';
@@ -1,5 +1,5 @@
1
1
  export type { CreateFormProps } from './ui/index';
2
- export type { LinkCreateProps, LinkCreatePlugin, LinkCreateWithModalProps, CreatePayload, } from './common/types';
2
+ export type { LinkCreateProps, LinkCreatePlugin, LinkCreateWithModalProps, CreatePayload, EditViewProps, } from './common/types';
3
3
  export { default, TextField, CreateForm, Select, AsyncSelect, CreateFormLoader, FormSpy, } from './ui/index';
4
4
  export { useLinkCreateCallback, LinkCreateCallbackProvider, } from './controllers/callback-context';
5
5
  export type { Validator, ValidatorMap } from './common/types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-create",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "The driver component of meta creation flow",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
package/report.api.md CHANGED
@@ -110,7 +110,7 @@ type DisallowReservedFields<T> = T & {
110
110
  };
111
111
 
112
112
  // @public (undocumented)
113
- type EditViewProps = {
113
+ export type EditViewProps = {
114
114
  payload: CreatePayload;
115
115
  onClose: () => void;
116
116
  };
@@ -73,7 +73,7 @@ type DisallowReservedFields<T> = T & {
73
73
  };
74
74
 
75
75
  // @public (undocumented)
76
- type EditViewProps = {
76
+ export type EditViewProps = {
77
77
  payload: CreatePayload;
78
78
  onClose: () => void;
79
79
  };