@atlaskit/link-datasource 1.24.2 → 1.24.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,12 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 1.24.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#81777](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81777) [`c6d7a5378751`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d7a5378751) - Bump adf-schema to 35.7.0
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 1.24.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* a helper Tail type which removes the first element of the tuple
|
|
5
5
|
*/
|
|
6
6
|
export declare const logToSentry: (error: unknown, packageName: string, tags?: {
|
|
7
|
-
[key: string]:
|
|
7
|
+
[key: string]: string | number | bigint | boolean | symbol | null | undefined;
|
|
8
8
|
} | undefined) => void;
|
|
9
9
|
interface UseErrorLoggerProps {
|
|
10
10
|
datasourceId: string;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* a helper Tail type which removes the first element of the tuple
|
|
5
5
|
*/
|
|
6
6
|
export declare const logToSentry: (error: unknown, packageName: string, tags?: {
|
|
7
|
-
[key: string]:
|
|
7
|
+
[key: string]: string | number | bigint | boolean | symbol | null | undefined;
|
|
8
8
|
} | undefined) => void;
|
|
9
9
|
interface UseErrorLoggerProps {
|
|
10
10
|
datasourceId: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useCallback, useState } from 'react';
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { defaultInitialVisibleJiraColumnKeys } from '@atlaskit/link-test-helpers/datasource';
|
|
4
4
|
|
|
5
5
|
import { DatasourceTableViewProps } from '../src/ui/datasource-table-view/types';
|
|
6
6
|
import { ColumnSizesMap } from '../src/ui/issue-like-table/types';
|
|
@@ -19,7 +19,7 @@ export const useCommonTableProps = (
|
|
|
19
19
|
> &
|
|
20
20
|
Pick<DatasourceTableViewProps, 'columnCustomSizes'> => {
|
|
21
21
|
const [visibleColumnKeys, onVisibleColumnKeysChange] = useState<string[]>(
|
|
22
|
-
|
|
22
|
+
defaultInitialVisibleJiraColumnKeys,
|
|
23
23
|
);
|
|
24
24
|
|
|
25
25
|
const [columnCustomSizes, setColumnCustomSizes] = useState<
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.3",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"analytics:codegen": "yarn workspace @atlassian/analytics-tooling run analytics:codegen link-datasource --output ./src/analytics/generated"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/adf-schema": "^35.
|
|
34
|
+
"@atlaskit/adf-schema": "^35.7.0",
|
|
35
35
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
36
36
|
"@atlaskit/avatar": "^21.5.0",
|
|
37
37
|
"@atlaskit/avatar-group": "^9.5.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@atlaskit/icon-object": "^6.3.0",
|
|
47
47
|
"@atlaskit/image": "^1.1.0",
|
|
48
48
|
"@atlaskit/intl-messages-provider": "^1.0.0",
|
|
49
|
-
"@atlaskit/jql-ast": "^3.
|
|
49
|
+
"@atlaskit/jql-ast": "^3.2.0",
|
|
50
50
|
"@atlaskit/jql-editor": "^4.0.0",
|
|
51
51
|
"@atlaskit/jql-editor-autocomplete-rest": "^2.0.0",
|
|
52
52
|
"@atlaskit/link-client-extension": "^1.8.0",
|
|
53
|
-
"@atlaskit/linking-common": "^5.
|
|
53
|
+
"@atlaskit/linking-common": "^5.6.0",
|
|
54
54
|
"@atlaskit/linking-types": "^8.7.0",
|
|
55
55
|
"@atlaskit/lozenge": "^11.6.0",
|
|
56
56
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@atlaskit/smart-card": "^26.50.0",
|
|
66
66
|
"@atlaskit/spinner": "^16.0.0",
|
|
67
67
|
"@atlaskit/tag": "^12.0.0",
|
|
68
|
-
"@atlaskit/textfield": "6.1.
|
|
68
|
+
"@atlaskit/textfield": "6.1.3",
|
|
69
69
|
"@atlaskit/theme": "^12.6.0",
|
|
70
70
|
"@atlaskit/tokens": "^1.42.0",
|
|
71
71
|
"@atlaskit/tooltip": "^18.1.0",
|
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@af/integration-testing": "*",
|
|
90
90
|
"@af/visual-regression": "*",
|
|
91
|
-
"@atlaskit/link-provider": "^1.
|
|
92
|
-
"@atlaskit/link-test-helpers": "^
|
|
91
|
+
"@atlaskit/link-provider": "^1.9.0",
|
|
92
|
+
"@atlaskit/link-test-helpers": "^7.0.0",
|
|
93
93
|
"@atlaskit/ssr": "*",
|
|
94
94
|
"@atlaskit/visual-regression": "*",
|
|
95
95
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|