@atlaskit/link-picker 1.48.1 → 1.48.3

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,19 @@
1
1
  # @atlaskit/link-picker
2
2
 
3
+ ## 1.48.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#112342](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112342)
8
+ [`64c10d25d8014`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64c10d25d8014) -
9
+ Migrate all instances of slack channel #help-linking-platform to #help-bandicoots
10
+
11
+ ## 1.48.2
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 1.48.1
4
18
 
5
19
  ### Patch Changes
@@ -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.1" || '',
34
+ packageVersion: "1.48.3" || '',
35
35
  componentName: _constants.COMPONENT_NAME,
36
36
  source: _constants.COMPONENT_NAME
37
37
  };
@@ -19,7 +19,7 @@ export const testIds = {
19
19
  };
20
20
  export const PACKAGE_DATA = {
21
21
  packageName: "@atlaskit/link-picker" || '',
22
- packageVersion: "1.48.1" || '',
22
+ packageVersion: "1.48.3" || '',
23
23
  componentName: COMPONENT_NAME,
24
24
  source: COMPONENT_NAME
25
25
  };
@@ -20,7 +20,7 @@ export var testIds = {
20
20
  };
21
21
  export var PACKAGE_DATA = {
22
22
  packageName: "@atlaskit/link-picker" || '',
23
- packageVersion: "1.48.1" || '',
23
+ packageVersion: "1.48.3" || '',
24
24
  componentName: COMPONENT_NAME,
25
25
  source: COMPONENT_NAME
26
26
  };
@@ -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.ReactFragment | JSX.Element | null | undefined;
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
- /// <reference types="react" />
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;
@@ -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.ReactFragment | JSX.Element | null | undefined;
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
- /// <reference types="react" />
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;
@@ -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.1",
3
+ "version": "1.48.3",
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.4.0",
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.6.0",
52
+ "@atlaskit/icon": "^23.7.0",
53
53
  "@atlaskit/intl-messages-provider": "^1.1.0",
54
- "@atlaskit/linking-common": "^6.2.0",
54
+ "@atlaskit/linking-common": "^6.3.0",
55
55
  "@atlaskit/onboarding": "^12.3.0",
56
56
  "@atlaskit/platform-feature-flags": "^1.0.0",
57
- "@atlaskit/primitives": "^13.4.0",
57
+ "@atlaskit/primitives": "^13.5.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": "^14.1.0",
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",