@atlaskit/link-datasource 4.34.11 → 4.34.12

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-datasource
2
2
 
3
+ ## 4.34.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 4.34.11
4
10
 
5
11
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  import { type ForwardRefExoticComponent, type RefAttributes } from 'react';
2
- declare const DatasourceRenderFailedAnalyticsWrapper: ForwardRefExoticComponent<Omit<any, "ref"> & RefAttributes<any>>;
2
+ declare const DatasourceRenderFailedAnalyticsWrapper: ForwardRefExoticComponent<Omit<any, 'ref'> & RefAttributes<any>>;
3
3
  export default DatasourceRenderFailedAnalyticsWrapper;
@@ -9,7 +9,7 @@ interface GetFieldValuesProps {
9
9
  }
10
10
  export declare const useBasicFilterAGG: () => {
11
11
  getHydratedJQL: (cloudId: string, jql: string) => Promise<HydrateResponse>;
12
- getFieldValues: ({ cloudId, jql, jqlTerm, searchString, pageCursor }: GetFieldValuesProps) => Promise<FieldValuesResponse>;
12
+ getFieldValues: ({ cloudId, jql, jqlTerm, searchString, pageCursor, }: GetFieldValuesProps) => Promise<FieldValuesResponse>;
13
13
  getCurrentUserInfo: () => Promise<UserInfoAGGResponse>;
14
14
  getUsersFromAccountIDs: (accountIds: string[]) => Promise<UserHydrationAGGResponse>;
15
15
  };
@@ -75,7 +75,7 @@ export declare const actions: {
75
75
  export declare const ActionsStore: Store<ActionsStoreState, {
76
76
  discoverActions: (captureError: AnalyticsCaptureError, fireEvent: AnalyticsFireEvent, api: Client, request: ActionsDiscoveryRequest) => Action<ActionsStoreState>;
77
77
  }>;
78
- export declare const useDiscoverActions: ({ captureError, fireEvent }: UseDiscoverActionsProps) => {
78
+ export declare const useDiscoverActions: ({ captureError, fireEvent, }: UseDiscoverActionsProps) => {
79
79
  discoverActions: (request: ActionsDiscoveryRequest) => void | Promise<void>;
80
80
  };
81
81
  /**
@@ -85,10 +85,10 @@ export declare const useAtomicUpdateActionSchema: HookFunction<{
85
85
  schema?: undefined;
86
86
  fetchSchema?: undefined;
87
87
  } | {
88
- schema: Pick<AtomicActionInterface, "type" | "description" | "actionKey"> & {
89
- fetchAction?: Pick<AtomicActionInterface, "actionKey" | "type" | "inputs">;
88
+ schema: Pick<AtomicActionInterface, 'type' | 'description' | 'actionKey'> & {
89
+ fetchAction?: Pick<AtomicActionInterface, 'actionKey' | 'type' | 'inputs'>;
90
90
  };
91
- fetchSchema: Pick<AtomicActionInterface, "type" | "inputs" | "actionKey"> | undefined;
91
+ fetchSchema: Pick<AtomicActionInterface, 'type' | 'inputs' | 'actionKey'> | undefined;
92
92
  }, BoundActions<ActionsStoreState, {
93
93
  discoverActions: (captureError: AnalyticsCaptureError, fireEvent: AnalyticsFireEvent, api: Client, request: ActionsDiscoveryRequest) => Action<ActionsStoreState>;
94
94
  }>, {
@@ -1,5 +1,5 @@
1
1
  type AssetsSearchConatinerLoadingProps = {
2
2
  modalTitle?: JSX.Element;
3
3
  };
4
- export declare const AssetsSearchContainerLoading: ({ modalTitle }: AssetsSearchConatinerLoadingProps) => JSX.Element;
4
+ export declare const AssetsSearchContainerLoading: ({ modalTitle, }: AssetsSearchConatinerLoadingProps) => JSX.Element;
5
5
  export {};
@@ -4,5 +4,5 @@ interface NoInstanceViewProps {
4
4
  testId: string;
5
5
  title: MessageDescriptor;
6
6
  }
7
- export declare const NoInstancesView: ({ title, description, testId }: NoInstanceViewProps) => JSX.Element;
7
+ export declare const NoInstancesView: ({ title, description, testId, }: NoInstanceViewProps) => JSX.Element;
8
8
  export {};
@@ -10,9 +10,9 @@ export declare const DatasourceTableView: ForwardRefExoticComponent<{
10
10
  datasourceId: string;
11
11
  parameters: DatasourceParameters;
12
12
  url?: string;
13
- } & Partial<Pick<IssueLikeDataTableViewProps, "visibleColumnKeys" | "onVisibleColumnKeysChange" | "wrappedColumnKeys" | "onWrappedColumnChange" | "onColumnResize" | "columnCustomSizes" | "scrollableContainerHeight">> & WithContextProps & RefAttributes<any>>;
13
+ } & Partial<Pick<IssueLikeDataTableViewProps, 'visibleColumnKeys' | 'onVisibleColumnKeysChange' | 'wrappedColumnKeys' | 'onWrappedColumnChange' | 'onColumnResize' | 'columnCustomSizes' | 'scrollableContainerHeight'>> & WithContextProps & RefAttributes<any>>;
14
14
  export declare const DataSourceTableViewNoSuspense: ForwardRefExoticComponent<{
15
15
  datasourceId: string;
16
16
  parameters: DatasourceParameters;
17
17
  url?: string;
18
- } & Partial<Pick<IssueLikeDataTableViewProps, "visibleColumnKeys" | "onVisibleColumnKeysChange" | "wrappedColumnKeys" | "onWrappedColumnChange" | "onColumnResize" | "columnCustomSizes" | "scrollableContainerHeight">> & WithContextProps & RefAttributes<any>>;
18
+ } & Partial<Pick<IssueLikeDataTableViewProps, 'visibleColumnKeys' | 'onVisibleColumnKeysChange' | 'wrappedColumnKeys' | 'onWrappedColumnChange' | 'onColumnResize' | 'columnCustomSizes' | 'scrollableContainerHeight'>> & WithContextProps & RefAttributes<any>>;
@@ -7,5 +7,5 @@ export interface DateRangeProps {
7
7
  }
8
8
  export declare const DATERANGE_TYPE_TEST_ID = "link-datasource-render-type--daterange";
9
9
  export declare function getFormattedDateRange(startValue: string, endValue: string, formatDate: IntlShape['formatDate'], formatMessage: IntlShape['formatMessage']): string;
10
- declare const DateRangeRenderType: ({ value, testId }: DateRangeProps) => React.JSX.Element;
10
+ declare const DateRangeRenderType: ({ value, testId, }: DateRangeProps) => React.JSX.Element;
11
11
  export default DateRangeRenderType;
@@ -4,6 +4,6 @@ interface IconProps extends Icon {
4
4
  testId?: string;
5
5
  }
6
6
  export declare const ICON_TYPE_TEST_ID = "link-datasource-render-type--icon";
7
- export declare const ICON_TYPE_TEXT_TEST_ID: "link-datasource-render-type--icon-text";
7
+ export declare const ICON_TYPE_TEXT_TEST_ID: 'link-datasource-render-type--icon-text';
8
8
  declare const IconRenderType: ({ label, text, source, testId, }: IconProps) => React.JSX.Element;
9
9
  export default IconRenderType;
@@ -4,5 +4,5 @@ interface LinkProps extends Link {
4
4
  testId?: string;
5
5
  }
6
6
  export declare const LINK_TYPE_TEST_ID = "link-datasource-render-type--link";
7
- declare const _default_1: React.MemoExoticComponent<({ style, url, text, testId, }: LinkProps) => React.JSX.Element | null>;
7
+ declare const _default_1: React.MemoExoticComponent<({ style, url, text, testId }: LinkProps) => React.JSX.Element | null>;
8
8
  export default _default_1;
@@ -1,3 +1,3 @@
1
1
  import { type ForwardRefExoticComponent, type RefAttributes } from 'react';
2
- declare const DatasourceRenderFailedAnalyticsWrapper: ForwardRefExoticComponent<Omit<any, "ref"> & RefAttributes<any>>;
2
+ declare const DatasourceRenderFailedAnalyticsWrapper: ForwardRefExoticComponent<Omit<any, 'ref'> & RefAttributes<any>>;
3
3
  export default DatasourceRenderFailedAnalyticsWrapper;
@@ -9,7 +9,7 @@ interface GetFieldValuesProps {
9
9
  }
10
10
  export declare const useBasicFilterAGG: () => {
11
11
  getHydratedJQL: (cloudId: string, jql: string) => Promise<HydrateResponse>;
12
- getFieldValues: ({ cloudId, jql, jqlTerm, searchString, pageCursor }: GetFieldValuesProps) => Promise<FieldValuesResponse>;
12
+ getFieldValues: ({ cloudId, jql, jqlTerm, searchString, pageCursor, }: GetFieldValuesProps) => Promise<FieldValuesResponse>;
13
13
  getCurrentUserInfo: () => Promise<UserInfoAGGResponse>;
14
14
  getUsersFromAccountIDs: (accountIds: string[]) => Promise<UserHydrationAGGResponse>;
15
15
  };
@@ -75,7 +75,7 @@ export declare const actions: {
75
75
  export declare const ActionsStore: Store<ActionsStoreState, {
76
76
  discoverActions: (captureError: AnalyticsCaptureError, fireEvent: AnalyticsFireEvent, api: Client, request: ActionsDiscoveryRequest) => Action<ActionsStoreState>;
77
77
  }>;
78
- export declare const useDiscoverActions: ({ captureError, fireEvent }: UseDiscoverActionsProps) => {
78
+ export declare const useDiscoverActions: ({ captureError, fireEvent, }: UseDiscoverActionsProps) => {
79
79
  discoverActions: (request: ActionsDiscoveryRequest) => void | Promise<void>;
80
80
  };
81
81
  /**
@@ -85,10 +85,10 @@ export declare const useAtomicUpdateActionSchema: HookFunction<{
85
85
  schema?: undefined;
86
86
  fetchSchema?: undefined;
87
87
  } | {
88
- schema: Pick<AtomicActionInterface, "type" | "description" | "actionKey"> & {
89
- fetchAction?: Pick<AtomicActionInterface, "actionKey" | "type" | "inputs">;
88
+ schema: Pick<AtomicActionInterface, 'type' | 'description' | 'actionKey'> & {
89
+ fetchAction?: Pick<AtomicActionInterface, 'actionKey' | 'type' | 'inputs'>;
90
90
  };
91
- fetchSchema: Pick<AtomicActionInterface, "type" | "inputs" | "actionKey"> | undefined;
91
+ fetchSchema: Pick<AtomicActionInterface, 'type' | 'inputs' | 'actionKey'> | undefined;
92
92
  }, BoundActions<ActionsStoreState, {
93
93
  discoverActions: (captureError: AnalyticsCaptureError, fireEvent: AnalyticsFireEvent, api: Client, request: ActionsDiscoveryRequest) => Action<ActionsStoreState>;
94
94
  }>, {
@@ -1,5 +1,5 @@
1
1
  type AssetsSearchConatinerLoadingProps = {
2
2
  modalTitle?: JSX.Element;
3
3
  };
4
- export declare const AssetsSearchContainerLoading: ({ modalTitle }: AssetsSearchConatinerLoadingProps) => JSX.Element;
4
+ export declare const AssetsSearchContainerLoading: ({ modalTitle, }: AssetsSearchConatinerLoadingProps) => JSX.Element;
5
5
  export {};
@@ -4,5 +4,5 @@ interface NoInstanceViewProps {
4
4
  testId: string;
5
5
  title: MessageDescriptor;
6
6
  }
7
- export declare const NoInstancesView: ({ title, description, testId }: NoInstanceViewProps) => JSX.Element;
7
+ export declare const NoInstancesView: ({ title, description, testId, }: NoInstanceViewProps) => JSX.Element;
8
8
  export {};
@@ -10,9 +10,9 @@ export declare const DatasourceTableView: ForwardRefExoticComponent<{
10
10
  datasourceId: string;
11
11
  parameters: DatasourceParameters;
12
12
  url?: string;
13
- } & Partial<Pick<IssueLikeDataTableViewProps, "visibleColumnKeys" | "onVisibleColumnKeysChange" | "wrappedColumnKeys" | "onWrappedColumnChange" | "onColumnResize" | "columnCustomSizes" | "scrollableContainerHeight">> & WithContextProps & RefAttributes<any>>;
13
+ } & Partial<Pick<IssueLikeDataTableViewProps, 'visibleColumnKeys' | 'onVisibleColumnKeysChange' | 'wrappedColumnKeys' | 'onWrappedColumnChange' | 'onColumnResize' | 'columnCustomSizes' | 'scrollableContainerHeight'>> & WithContextProps & RefAttributes<any>>;
14
14
  export declare const DataSourceTableViewNoSuspense: ForwardRefExoticComponent<{
15
15
  datasourceId: string;
16
16
  parameters: DatasourceParameters;
17
17
  url?: string;
18
- } & Partial<Pick<IssueLikeDataTableViewProps, "visibleColumnKeys" | "onVisibleColumnKeysChange" | "wrappedColumnKeys" | "onWrappedColumnChange" | "onColumnResize" | "columnCustomSizes" | "scrollableContainerHeight">> & WithContextProps & RefAttributes<any>>;
18
+ } & Partial<Pick<IssueLikeDataTableViewProps, 'visibleColumnKeys' | 'onVisibleColumnKeysChange' | 'wrappedColumnKeys' | 'onWrappedColumnChange' | 'onColumnResize' | 'columnCustomSizes' | 'scrollableContainerHeight'>> & WithContextProps & RefAttributes<any>>;
@@ -7,5 +7,5 @@ export interface DateRangeProps {
7
7
  }
8
8
  export declare const DATERANGE_TYPE_TEST_ID = "link-datasource-render-type--daterange";
9
9
  export declare function getFormattedDateRange(startValue: string, endValue: string, formatDate: IntlShape['formatDate'], formatMessage: IntlShape['formatMessage']): string;
10
- declare const DateRangeRenderType: ({ value, testId }: DateRangeProps) => React.JSX.Element;
10
+ declare const DateRangeRenderType: ({ value, testId, }: DateRangeProps) => React.JSX.Element;
11
11
  export default DateRangeRenderType;
@@ -4,6 +4,6 @@ interface IconProps extends Icon {
4
4
  testId?: string;
5
5
  }
6
6
  export declare const ICON_TYPE_TEST_ID = "link-datasource-render-type--icon";
7
- export declare const ICON_TYPE_TEXT_TEST_ID: "link-datasource-render-type--icon-text";
7
+ export declare const ICON_TYPE_TEXT_TEST_ID: 'link-datasource-render-type--icon-text';
8
8
  declare const IconRenderType: ({ label, text, source, testId, }: IconProps) => React.JSX.Element;
9
9
  export default IconRenderType;
@@ -4,5 +4,5 @@ interface LinkProps extends Link {
4
4
  testId?: string;
5
5
  }
6
6
  export declare const LINK_TYPE_TEST_ID = "link-datasource-render-type--link";
7
- declare const _default_1: React.MemoExoticComponent<({ style, url, text, testId, }: LinkProps) => React.JSX.Element | null>;
7
+ declare const _default_1: React.MemoExoticComponent<({ style, url, text, testId }: LinkProps) => React.JSX.Element | null>;
8
8
  export default _default_1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-datasource",
3
- "version": "4.34.11",
3
+ "version": "4.34.12",
4
4
  "description": "UI Components to support linking platform dataset feature",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -75,7 +75,7 @@
75
75
  "@atlaskit/linking-common": "^9.11.0",
76
76
  "@atlaskit/linking-types": "^14.2.0",
77
77
  "@atlaskit/logo": "^20.0.0",
78
- "@atlaskit/lozenge": "^13.5.0",
78
+ "@atlaskit/lozenge": "^13.6.0",
79
79
  "@atlaskit/modal-dialog": "^14.15.0",
80
80
  "@atlaskit/outbound-auth-flow-client": "^3.4.0",
81
81
  "@atlaskit/platform-feature-flags": "^1.1.0",
@@ -84,16 +84,16 @@
84
84
  "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
85
85
  "@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^2.0.0",
86
86
  "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
87
- "@atlaskit/primitives": "^18.1.0",
87
+ "@atlaskit/primitives": "^19.0.0",
88
88
  "@atlaskit/react-select": "^3.15.0",
89
89
  "@atlaskit/select": "^21.10.0",
90
- "@atlaskit/smart-card": "^43.31.0",
90
+ "@atlaskit/smart-card": "^43.32.0",
91
91
  "@atlaskit/smart-user-picker": "^9.2.0",
92
92
  "@atlaskit/spinner": "^19.1.0",
93
- "@atlaskit/tag": "^14.7.0",
93
+ "@atlaskit/tag": "^14.8.0",
94
94
  "@atlaskit/textfield": "^8.3.0",
95
95
  "@atlaskit/theme": "^23.0.0",
96
- "@atlaskit/tokens": "^12.0.0",
96
+ "@atlaskit/tokens": "^13.0.0",
97
97
  "@atlaskit/tooltip": "^21.1.0",
98
98
  "@atlaskit/ufo": "^0.4.0",
99
99
  "@atlaskit/width-detector": "^5.0.0",