@atlaskit/link-create 4.5.26 → 4.5.28

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
+ ## 4.5.28
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 4.5.27
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 4.5.26
4
16
 
5
17
  ### Patch Changes
@@ -16,7 +16,7 @@ var CREATE_FORM_MIN_HEIGHT_IN_PX = exports.CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
16
16
  var LINK_CREATE_FORM_POST_CREATE_FIELD = exports.LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
17
17
  var PACKAGE_DATA = exports.PACKAGE_DATA = {
18
18
  packageName: "@atlaskit/link-create" || '',
19
- packageVersion: "4.5.25" || '',
19
+ packageVersion: "4.5.28" || '',
20
20
  component: COMPONENT_NAME,
21
21
  componentName: COMPONENT_NAME
22
22
  };
@@ -10,7 +10,7 @@ export const CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
10
10
  export const LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
11
11
  export const PACKAGE_DATA = {
12
12
  packageName: "@atlaskit/link-create" || '',
13
- packageVersion: "4.5.25" || '',
13
+ packageVersion: "4.5.28" || '',
14
14
  component: COMPONENT_NAME,
15
15
  componentName: COMPONENT_NAME
16
16
  };
@@ -10,7 +10,7 @@ export var CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
10
10
  export var LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
11
11
  export var PACKAGE_DATA = {
12
12
  packageName: "@atlaskit/link-create" || '',
13
- packageVersion: "4.5.25" || '',
13
+ packageVersion: "4.5.28" || '',
14
14
  component: COMPONENT_NAME,
15
15
  componentName: COMPONENT_NAME
16
16
  };
@@ -6,5 +6,5 @@ type ButtonProps = React.ComponentProps<typeof AkButton> & {
6
6
  [Key in keyof AnalyticsEventAttributes as Key extends `ui.button.clicked.${infer ActionSubjectId}` ? ActionSubjectId : never]: any;
7
7
  };
8
8
  };
9
- export declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
9
+ export declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, 'ref'> & React.RefAttributes<HTMLButtonElement>>;
10
10
  export {};
@@ -10,5 +10,5 @@ type MessageProps = {
10
10
  testId?: string;
11
11
  children: ReactNode;
12
12
  };
13
- export declare const Message: ({ children, appearance, id, testId }: MessageProps) => JSX.Element;
13
+ export declare const Message: ({ children, appearance, id, testId, }: MessageProps) => JSX.Element;
14
14
  export {};
@@ -10,5 +10,5 @@ export declare const ExitWarningModalProvider: ({ children, }: {
10
10
  children: React.ReactNode;
11
11
  }) => React.JSX.Element;
12
12
  export declare const useExitWarningModal: () => ExitWarningModalContextValue;
13
- export declare const useWithExitWarning: () => (callback?: () => void) => () => boolean;
13
+ export declare const useWithExitWarning: () => ((callback?: () => void) => () => boolean);
14
14
  export {};
@@ -6,7 +6,7 @@ import { type ReactNode } from 'react';
6
6
  type ReservedFields = {
7
7
  [Field in (typeof RESERVED_FIELDS)[number]]?: unknown;
8
8
  };
9
- declare const RESERVED_FIELDS: readonly ["__post_create__"];
9
+ declare const RESERVED_FIELDS: readonly ['__post_create__'];
10
10
  type DisallowReservedFields<T> = T & {
11
11
  [Field in (typeof RESERVED_FIELDS)[number]]?: never;
12
12
  };
@@ -6,5 +6,5 @@ type ButtonProps = React.ComponentProps<typeof AkButton> & {
6
6
  [Key in keyof AnalyticsEventAttributes as Key extends `ui.button.clicked.${infer ActionSubjectId}` ? ActionSubjectId : never]: any;
7
7
  };
8
8
  };
9
- export declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
9
+ export declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, 'ref'> & React.RefAttributes<HTMLButtonElement>>;
10
10
  export {};
@@ -10,5 +10,5 @@ type MessageProps = {
10
10
  testId?: string;
11
11
  children: ReactNode;
12
12
  };
13
- export declare const Message: ({ children, appearance, id, testId }: MessageProps) => JSX.Element;
13
+ export declare const Message: ({ children, appearance, id, testId, }: MessageProps) => JSX.Element;
14
14
  export {};
@@ -10,5 +10,5 @@ export declare const ExitWarningModalProvider: ({ children, }: {
10
10
  children: React.ReactNode;
11
11
  }) => React.JSX.Element;
12
12
  export declare const useExitWarningModal: () => ExitWarningModalContextValue;
13
- export declare const useWithExitWarning: () => (callback?: () => void) => () => boolean;
13
+ export declare const useWithExitWarning: () => ((callback?: () => void) => () => boolean);
14
14
  export {};
@@ -7,7 +7,7 @@ type ReservedFields = {
7
7
  [Field in (typeof RESERVED_FIELDS)[number]]?: unknown;
8
8
  };
9
9
  declare const RESERVED_FIELDS: readonly [
10
- "__post_create__"
10
+ '__post_create__'
11
11
  ];
12
12
  type DisallowReservedFields<T> = T & {
13
13
  [Field in (typeof RESERVED_FIELDS)[number]]?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-create",
3
- "version": "4.5.26",
3
+ "version": "4.5.28",
4
4
  "description": "The driver component of meta creation flow",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -52,15 +52,15 @@
52
52
  "@atlaskit/intl-messages-provider": "^2.0.0",
53
53
  "@atlaskit/link": "^3.4.0",
54
54
  "@atlaskit/linking-common": "^9.11.0",
55
- "@atlaskit/modal-dialog": "^14.14.0",
55
+ "@atlaskit/modal-dialog": "^14.15.0",
56
56
  "@atlaskit/platform-feature-flags": "^1.1.0",
57
- "@atlaskit/primitives": "^18.1.0",
57
+ "@atlaskit/primitives": "^19.0.0",
58
58
  "@atlaskit/select": "^21.10.0",
59
59
  "@atlaskit/smart-user-picker": "^9.2.0",
60
60
  "@atlaskit/spinner": "^19.1.0",
61
61
  "@atlaskit/textfield": "^8.3.0",
62
62
  "@atlaskit/theme": "^23.0.0",
63
- "@atlaskit/tokens": "^11.4.0",
63
+ "@atlaskit/tokens": "^13.0.0",
64
64
  "@babel/runtime": "^7.0.0",
65
65
  "@compiled/react": "^0.20.0",
66
66
  "debounce-promise": "^3.1.2",