@atlaskit/link-picker 1.48.1 → 1.48.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 +6 -0
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/ui/main.js +1 -1
- package/dist/types/common/ui/empty-state/index.d.ts +1 -1
- package/dist/types/controllers/session-provider/index.d.ts +1 -1
- package/dist/types/ui/error-boundary/error-boundary-base/index.d.ts +1 -1
- package/dist/types/ui/error-boundary/index.d.ts +2 -2
- package/dist/types/ui/link-picker/search-results/link-search-list/link-search-no-results/index.d.ts +2 -2
- package/dist/types/ui/link-picker/text-input/conditional-spotlight-target-wrapper/index.d.ts +1 -1
- package/dist/types/ui/messages-provider/index.d.ts +1 -1
- package/dist/types/ui/messages-provider/lazy-messages-provider/index.d.ts +1 -1
- package/dist/types-ts4.5/common/ui/empty-state/index.d.ts +1 -1
- package/dist/types-ts4.5/controllers/session-provider/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/error-boundary/error-boundary-base/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/error-boundary/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/link-picker/search-results/link-search-list/link-search-no-results/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/link-picker/text-input/conditional-spotlight-target-wrapper/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/messages-provider/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/messages-provider/lazy-messages-provider/index.d.ts +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/dist/cjs/ui/main.js
CHANGED
|
@@ -31,7 +31,7 @@ var testIds = exports.testIds = {
|
|
|
31
31
|
};
|
|
32
32
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
33
33
|
packageName: "@atlaskit/link-picker" || '',
|
|
34
|
-
packageVersion: "1.48.
|
|
34
|
+
packageVersion: "1.48.2" || '',
|
|
35
35
|
componentName: _constants.COMPONENT_NAME,
|
|
36
36
|
source: _constants.COMPONENT_NAME
|
|
37
37
|
};
|
package/dist/es2019/ui/main.js
CHANGED
package/dist/esm/ui/main.js
CHANGED
|
@@ -5,5 +5,5 @@ type EmptyStateProps = {
|
|
|
5
5
|
description?: React.ReactNode;
|
|
6
6
|
renderImage?: () => React.ReactNode;
|
|
7
7
|
};
|
|
8
|
-
export declare const EmptyState: ({ testId, header, description, renderImage }: EmptyStateProps) => JSX.Element;
|
|
8
|
+
export declare const EmptyState: ({ testId, header, description, renderImage }: EmptyStateProps) => React.JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -5,6 +5,6 @@ export declare const SessionContext: React.Context<string>;
|
|
|
5
5
|
interface SessionProviderProps {
|
|
6
6
|
children: ReactNode;
|
|
7
7
|
}
|
|
8
|
-
export declare const LinkPickerSessionProvider: ({ children }: SessionProviderProps) => JSX.Element;
|
|
8
|
+
export declare const LinkPickerSessionProvider: ({ children }: SessionProviderProps) => React.JSX.Element;
|
|
9
9
|
export declare const useLinkPickerSessionId: () => string;
|
|
10
10
|
export {};
|
|
@@ -13,6 +13,6 @@ interface BaseErrorBoundaryProps {
|
|
|
13
13
|
export declare class BaseErrorBoundary extends Component<BaseErrorBoundaryProps, BaseErrorBoundaryState> {
|
|
14
14
|
constructor(props: BaseErrorBoundaryProps);
|
|
15
15
|
componentDidCatch(error: Error, info?: ErrorInfo): void;
|
|
16
|
-
render(): string | number | boolean | React.
|
|
16
|
+
render(): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
|
|
17
17
|
}
|
|
18
18
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { type ReactNode } from 'react';
|
|
1
|
+
import React, { type ReactNode } from 'react';
|
|
2
2
|
interface ErrorBoundaryProps {
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
}
|
|
5
|
-
export declare function ErrorBoundary({ children }: ErrorBoundaryProps): JSX.Element;
|
|
5
|
+
export declare function ErrorBoundary({ children }: ErrorBoundaryProps): React.JSX.Element;
|
|
6
6
|
export {};
|
package/dist/types/ui/link-picker/search-results/link-search-list/link-search-no-results/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export declare const messages: {
|
|
3
3
|
noResults: {
|
|
4
4
|
id: string;
|
|
@@ -14,4 +14,4 @@ export declare const messages: {
|
|
|
14
14
|
export declare const testIds: {
|
|
15
15
|
emptyResultPage: string;
|
|
16
16
|
};
|
|
17
|
-
export declare const NoResults: () => JSX.Element;
|
|
17
|
+
export declare const NoResults: () => React.JSX.Element;
|
package/dist/types/ui/link-picker/text-input/conditional-spotlight-target-wrapper/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export interface ConditionalSpotlightTargetWrapperProps {
|
|
|
3
3
|
spotlightTargetName?: string;
|
|
4
4
|
children: React.ReactElement;
|
|
5
5
|
}
|
|
6
|
-
export declare const ConditionalSpotlightTargetWrapper: ({ spotlightTargetName, children, }: ConditionalSpotlightTargetWrapperProps) => JSX.Element;
|
|
6
|
+
export declare const ConditionalSpotlightTargetWrapper: ({ spotlightTargetName, children, }: ConditionalSpotlightTargetWrapperProps) => React.JSX.Element;
|
|
@@ -2,4 +2,4 @@ import React from 'react';
|
|
|
2
2
|
export type MessagesIntlProviderProps = {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
};
|
|
5
|
-
export declare const MessagesProvider: ({ children }: MessagesIntlProviderProps) => JSX.Element;
|
|
5
|
+
export declare const MessagesProvider: ({ children }: MessagesIntlProviderProps) => React.JSX.Element;
|
|
@@ -2,5 +2,5 @@ import React from 'react';
|
|
|
2
2
|
type LazyMessagesProviderProps = {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
};
|
|
5
|
-
export declare const LazyMessagesProvider: ({ children }: LazyMessagesProviderProps) => JSX.Element;
|
|
5
|
+
export declare const LazyMessagesProvider: ({ children }: LazyMessagesProviderProps) => React.JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -5,5 +5,5 @@ type EmptyStateProps = {
|
|
|
5
5
|
description?: React.ReactNode;
|
|
6
6
|
renderImage?: () => React.ReactNode;
|
|
7
7
|
};
|
|
8
|
-
export declare const EmptyState: ({ testId, header, description, renderImage }: EmptyStateProps) => JSX.Element;
|
|
8
|
+
export declare const EmptyState: ({ testId, header, description, renderImage }: EmptyStateProps) => React.JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -5,6 +5,6 @@ export declare const SessionContext: React.Context<string>;
|
|
|
5
5
|
interface SessionProviderProps {
|
|
6
6
|
children: ReactNode;
|
|
7
7
|
}
|
|
8
|
-
export declare const LinkPickerSessionProvider: ({ children }: SessionProviderProps) => JSX.Element;
|
|
8
|
+
export declare const LinkPickerSessionProvider: ({ children }: SessionProviderProps) => React.JSX.Element;
|
|
9
9
|
export declare const useLinkPickerSessionId: () => string;
|
|
10
10
|
export {};
|
|
@@ -13,6 +13,6 @@ interface BaseErrorBoundaryProps {
|
|
|
13
13
|
export declare class BaseErrorBoundary extends Component<BaseErrorBoundaryProps, BaseErrorBoundaryState> {
|
|
14
14
|
constructor(props: BaseErrorBoundaryProps);
|
|
15
15
|
componentDidCatch(error: Error, info?: ErrorInfo): void;
|
|
16
|
-
render(): string | number | boolean | React.
|
|
16
|
+
render(): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
|
|
17
17
|
}
|
|
18
18
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { type ReactNode } from 'react';
|
|
1
|
+
import React, { type ReactNode } from 'react';
|
|
2
2
|
interface ErrorBoundaryProps {
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
}
|
|
5
|
-
export declare function ErrorBoundary({ children }: ErrorBoundaryProps): JSX.Element;
|
|
5
|
+
export declare function ErrorBoundary({ children }: ErrorBoundaryProps): React.JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export declare const messages: {
|
|
3
3
|
noResults: {
|
|
4
4
|
id: string;
|
|
@@ -14,4 +14,4 @@ export declare const messages: {
|
|
|
14
14
|
export declare const testIds: {
|
|
15
15
|
emptyResultPage: string;
|
|
16
16
|
};
|
|
17
|
-
export declare const NoResults: () => JSX.Element;
|
|
17
|
+
export declare const NoResults: () => React.JSX.Element;
|
package/dist/types-ts4.5/ui/link-picker/text-input/conditional-spotlight-target-wrapper/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export interface ConditionalSpotlightTargetWrapperProps {
|
|
|
3
3
|
spotlightTargetName?: string;
|
|
4
4
|
children: React.ReactElement;
|
|
5
5
|
}
|
|
6
|
-
export declare const ConditionalSpotlightTargetWrapper: ({ spotlightTargetName, children, }: ConditionalSpotlightTargetWrapperProps) => JSX.Element;
|
|
6
|
+
export declare const ConditionalSpotlightTargetWrapper: ({ spotlightTargetName, children, }: ConditionalSpotlightTargetWrapperProps) => React.JSX.Element;
|
|
@@ -2,4 +2,4 @@ import React from 'react';
|
|
|
2
2
|
export type MessagesIntlProviderProps = {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
};
|
|
5
|
-
export declare const MessagesProvider: ({ children }: MessagesIntlProviderProps) => JSX.Element;
|
|
5
|
+
export declare const MessagesProvider: ({ children }: MessagesIntlProviderProps) => React.JSX.Element;
|
|
@@ -2,5 +2,5 @@ import React from 'react';
|
|
|
2
2
|
type LazyMessagesProviderProps = {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
};
|
|
5
|
-
export declare const LazyMessagesProvider: ({ children }: LazyMessagesProviderProps) => JSX.Element;
|
|
5
|
+
export declare const LazyMessagesProvider: ({ children }: LazyMessagesProviderProps) => React.JSX.Element;
|
|
6
6
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.2",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@atlaskit/analytics-next": "^10.3.0",
|
|
47
47
|
"@atlaskit/atlassian-context": "^0.1.0",
|
|
48
|
-
"@atlaskit/button": "^20.
|
|
48
|
+
"@atlaskit/button": "^20.5.0",
|
|
49
49
|
"@atlaskit/form": "^11.1.0",
|
|
50
50
|
"@atlaskit/frontend-utilities": "^2.9.0",
|
|
51
51
|
"@atlaskit/heading": "^4.1.0",
|
|
52
|
-
"@atlaskit/icon": "^23.
|
|
52
|
+
"@atlaskit/icon": "^23.7.0",
|
|
53
53
|
"@atlaskit/intl-messages-provider": "^1.1.0",
|
|
54
|
-
"@atlaskit/linking-common": "^6.
|
|
54
|
+
"@atlaskit/linking-common": "^6.3.0",
|
|
55
55
|
"@atlaskit/onboarding": "^12.3.0",
|
|
56
56
|
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
57
57
|
"@atlaskit/primitives": "^13.4.0",
|
|
58
58
|
"@atlaskit/spinner": "^17.1.0",
|
|
59
59
|
"@atlaskit/tabs": "^17.2.0",
|
|
60
60
|
"@atlaskit/textfield": "^6.8.0",
|
|
61
|
-
"@atlaskit/theme": "^
|
|
61
|
+
"@atlaskit/theme": "^15.0.0",
|
|
62
62
|
"@atlaskit/tokens": "^3.3.0",
|
|
63
63
|
"@atlaskit/tooltip": "^19.1.0",
|
|
64
64
|
"@atlaskit/ufo": "^0.3.0",
|