@atlaskit/link-create 4.5.8 → 4.5.9
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 +6 -0
- package/dist/cjs/common/constants.js +1 -1
- package/dist/es2019/common/constants.js +1 -1
- package/dist/esm/common/constants.js +1 -1
- package/dist/types/common/ui/confirm-dismiss-dialog/main.d.ts +1 -1
- package/dist/types/common/ui/error-boundary/index.d.ts +1 -1
- package/dist/types/common/ui/link-create-content/index.d.ts +1 -1
- package/dist/types/controllers/exit-warning-modal-context/index.d.ts +1 -1
- package/dist/types/ui/create-form/form-spy/index.d.ts +1 -1
- package/dist/types/ui/inline-create/inline-analytics/index.d.ts +1 -1
- package/dist/types-ts4.5/common/ui/confirm-dismiss-dialog/main.d.ts +1 -1
- package/dist/types-ts4.5/common/ui/error-boundary/index.d.ts +1 -1
- package/dist/types-ts4.5/common/ui/link-create-content/index.d.ts +1 -1
- package/dist/types-ts4.5/controllers/exit-warning-modal-context/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/create-form/form-spy/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/inline-create/inline-analytics/index.d.ts +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -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: "
|
|
19
|
+
packageVersion: "4.5.8" || '',
|
|
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: "
|
|
13
|
+
packageVersion: "4.5.8" || '',
|
|
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: "
|
|
13
|
+
packageVersion: "4.5.8" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -4,4 +4,4 @@ export type ConfirmDismissDialogProps = {
|
|
|
4
4
|
onClose: () => void;
|
|
5
5
|
onCancel?: () => void;
|
|
6
6
|
};
|
|
7
|
-
export declare const ConfirmDismissDialog: ({ active, onClose, onCancel }: ConfirmDismissDialogProps) => React.JSX.Element;
|
|
7
|
+
export declare const ConfirmDismissDialog: ({ active, onClose, onCancel, }: ConfirmDismissDialogProps) => React.JSX.Element;
|
|
@@ -2,5 +2,5 @@ import React, { type PropsWithChildren } from 'react';
|
|
|
2
2
|
type ErrorBoundaryProps = PropsWithChildren<{
|
|
3
3
|
errorComponent?: JSX.Element;
|
|
4
4
|
}>;
|
|
5
|
-
export declare const ErrorBoundary: ({ children, errorComponent }: ErrorBoundaryProps) => React.JSX.Element;
|
|
5
|
+
export declare const ErrorBoundary: ({ children, errorComponent, }: ErrorBoundaryProps) => React.JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -4,5 +4,5 @@ type LinkCreateContentProps = {
|
|
|
4
4
|
plugins: LinkCreatePlugin[];
|
|
5
5
|
entityKey: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const LinkCreateContent: ({ plugins, entityKey }: LinkCreateContentProps) => React.JSX.Element;
|
|
7
|
+
export declare const LinkCreateContent: ({ plugins, entityKey, }: LinkCreateContentProps) => React.JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -6,7 +6,7 @@ type ExitWarningModalContextValue = {
|
|
|
6
6
|
setShowExitWarning: React.Dispatch<React.SetStateAction<boolean>>;
|
|
7
7
|
withExitWarning: (callback?: () => void) => () => boolean;
|
|
8
8
|
};
|
|
9
|
-
export declare const ExitWarningModalProvider: ({ children }: {
|
|
9
|
+
export declare const ExitWarningModalProvider: ({ children, }: {
|
|
10
10
|
children: React.ReactNode;
|
|
11
11
|
}) => React.JSX.Element;
|
|
12
12
|
export declare const useExitWarningModal: () => ExitWarningModalContextValue;
|
|
@@ -9,4 +9,4 @@ export type FormSpyProps<T> = {
|
|
|
9
9
|
* FormSpy component so that we can control selectively
|
|
10
10
|
* how much of the API we are commited to.
|
|
11
11
|
*/
|
|
12
|
-
export declare const FormSpy: <T extends Record<string, unknown>>({ children }: FormSpyProps<T>) => React.JSX.Element;
|
|
12
|
+
export declare const FormSpy: <T extends Record<string, unknown>>({ children, }: FormSpyProps<T>) => React.JSX.Element;
|
|
@@ -5,5 +5,5 @@ type InlineAnalyticsProps = {
|
|
|
5
5
|
[Key in keyof AnalyticsEventAttributes as Key extends `screen.${infer ScreenName}.viewed` ? ScreenName : never]: any;
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
|
-
export declare const InlineAnalytics: ({ screen, children }: PropsWithChildren<InlineAnalyticsProps>) => React.JSX.Element;
|
|
8
|
+
export declare const InlineAnalytics: ({ screen, children, }: PropsWithChildren<InlineAnalyticsProps>) => React.JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -4,4 +4,4 @@ export type ConfirmDismissDialogProps = {
|
|
|
4
4
|
onClose: () => void;
|
|
5
5
|
onCancel?: () => void;
|
|
6
6
|
};
|
|
7
|
-
export declare const ConfirmDismissDialog: ({ active, onClose, onCancel }: ConfirmDismissDialogProps) => React.JSX.Element;
|
|
7
|
+
export declare const ConfirmDismissDialog: ({ active, onClose, onCancel, }: ConfirmDismissDialogProps) => React.JSX.Element;
|
|
@@ -2,5 +2,5 @@ import React, { type PropsWithChildren } from 'react';
|
|
|
2
2
|
type ErrorBoundaryProps = PropsWithChildren<{
|
|
3
3
|
errorComponent?: JSX.Element;
|
|
4
4
|
}>;
|
|
5
|
-
export declare const ErrorBoundary: ({ children, errorComponent }: ErrorBoundaryProps) => React.JSX.Element;
|
|
5
|
+
export declare const ErrorBoundary: ({ children, errorComponent, }: ErrorBoundaryProps) => React.JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -4,5 +4,5 @@ type LinkCreateContentProps = {
|
|
|
4
4
|
plugins: LinkCreatePlugin[];
|
|
5
5
|
entityKey: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const LinkCreateContent: ({ plugins, entityKey }: LinkCreateContentProps) => React.JSX.Element;
|
|
7
|
+
export declare const LinkCreateContent: ({ plugins, entityKey, }: LinkCreateContentProps) => React.JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -6,7 +6,7 @@ type ExitWarningModalContextValue = {
|
|
|
6
6
|
setShowExitWarning: React.Dispatch<React.SetStateAction<boolean>>;
|
|
7
7
|
withExitWarning: (callback?: () => void) => () => boolean;
|
|
8
8
|
};
|
|
9
|
-
export declare const ExitWarningModalProvider: ({ children }: {
|
|
9
|
+
export declare const ExitWarningModalProvider: ({ children, }: {
|
|
10
10
|
children: React.ReactNode;
|
|
11
11
|
}) => React.JSX.Element;
|
|
12
12
|
export declare const useExitWarningModal: () => ExitWarningModalContextValue;
|
|
@@ -9,4 +9,4 @@ export type FormSpyProps<T> = {
|
|
|
9
9
|
* FormSpy component so that we can control selectively
|
|
10
10
|
* how much of the API we are commited to.
|
|
11
11
|
*/
|
|
12
|
-
export declare const FormSpy: <T extends Record<string, unknown>>({ children }: FormSpyProps<T>) => React.JSX.Element;
|
|
12
|
+
export declare const FormSpy: <T extends Record<string, unknown>>({ children, }: FormSpyProps<T>) => React.JSX.Element;
|
|
@@ -5,5 +5,5 @@ type InlineAnalyticsProps = {
|
|
|
5
5
|
[Key in keyof AnalyticsEventAttributes as Key extends `screen.${infer ScreenName}.viewed` ? ScreenName : never]: any;
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
|
-
export declare const InlineAnalytics: ({ screen, children }: PropsWithChildren<InlineAnalyticsProps>) => React.JSX.Element;
|
|
8
|
+
export declare const InlineAnalytics: ({ screen, children, }: PropsWithChildren<InlineAnalyticsProps>) => React.JSX.Element;
|
|
9
9
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.9",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
37
37
|
"@atlaskit/atlassian-context": "^0.6.0",
|
|
38
38
|
"@atlaskit/button": "^23.6.0",
|
|
39
|
-
"@atlaskit/css": "^0.
|
|
39
|
+
"@atlaskit/css": "^0.17.0",
|
|
40
40
|
"@atlaskit/empty-state": "^10.1.0",
|
|
41
|
-
"@atlaskit/form": "^14.
|
|
41
|
+
"@atlaskit/form": "^14.3.0",
|
|
42
42
|
"@atlaskit/icon": "^29.0.0",
|
|
43
43
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
44
44
|
"@atlaskit/icon-object": "^7.3.0",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"@atlaskit/linking-common": "^9.8.0",
|
|
49
49
|
"@atlaskit/modal-dialog": "^14.7.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
|
-
"@atlaskit/primitives": "^16.
|
|
51
|
+
"@atlaskit/primitives": "^16.3.0",
|
|
52
52
|
"@atlaskit/select": "^21.4.0",
|
|
53
53
|
"@atlaskit/smart-user-picker": "^8.4.0",
|
|
54
54
|
"@atlaskit/spinner": "^19.0.0",
|
|
55
55
|
"@atlaskit/textfield": "^8.1.0",
|
|
56
56
|
"@atlaskit/theme": "^21.0.0",
|
|
57
|
-
"@atlaskit/tokens": "^8.
|
|
57
|
+
"@atlaskit/tokens": "^8.3.0",
|
|
58
58
|
"@babel/runtime": "^7.0.0",
|
|
59
59
|
"@compiled/react": "^0.18.6",
|
|
60
60
|
"debounce-promise": "^3.1.2",
|