@atlaskit/link-datasource 3.16.1 → 3.17.0
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 +18 -0
- package/dist/cjs/ui/table-footer/powered-by-jsm-assets/index.js +1 -0
- package/dist/es2019/ui/table-footer/powered-by-jsm-assets/index.js +1 -0
- package/dist/esm/ui/table-footer/powered-by-jsm-assets/index.js +1 -0
- package/dist/types/analytics/wrappers/render-failed/datasourceRenderFailedAnalyticsWrapper.d.ts +1 -1
- package/dist/types/ui/confluence-search-modal/basic-filters/filters/date-range-picker/PopupComponent.d.ts +1 -1
- package/dist/types/ui/issue-like-table/truncate-text-tag/index.d.ts +3 -1
- package/dist/types-ts4.5/analytics/wrappers/render-failed/datasourceRenderFailedAnalyticsWrapper.d.ts +1 -1
- package/dist/types-ts4.5/ui/confluence-search-modal/basic-filters/filters/date-range-picker/PopupComponent.d.ts +1 -1
- package/dist/types-ts4.5/ui/issue-like-table/truncate-text-tag/index.d.ts +3 -1
- package/package.json +47 -47
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 3.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
|
|
8
|
+
[`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
|
|
9
|
+
Update `React` from v16 to v18
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 3.16.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 3.16.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -10,6 +10,7 @@ var _logo = require("@atlaskit/logo");
|
|
|
10
10
|
var _primitives = require("@atlaskit/primitives");
|
|
11
11
|
var _analytics = require("../../../analytics");
|
|
12
12
|
var jsmTextStyles = (0, _primitives.xcss)({
|
|
13
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
13
14
|
fontSize: 'small',
|
|
14
15
|
color: 'color.text.subtle',
|
|
15
16
|
marginLeft: 'space.075',
|
|
@@ -3,6 +3,7 @@ import { JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
|
3
3
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
4
4
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
5
5
|
const jsmTextStyles = xcss({
|
|
6
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
6
7
|
fontSize: 'small',
|
|
7
8
|
color: 'color.text.subtle',
|
|
8
9
|
marginLeft: 'space.075',
|
|
@@ -3,6 +3,7 @@ import { JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
|
3
3
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
4
4
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
5
5
|
var jsmTextStyles = xcss({
|
|
6
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
6
7
|
fontSize: 'small',
|
|
7
8
|
color: 'color.text.subtle',
|
|
8
9
|
marginLeft: 'space.075',
|
package/dist/types/analytics/wrappers/render-failed/datasourceRenderFailedAnalyticsWrapper.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const DatasourceRenderFailedAnalyticsWrapper: import("react").ForwardRefExoticComponent<
|
|
2
|
+
declare const DatasourceRenderFailedAnalyticsWrapper: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<any>>;
|
|
3
3
|
export default DatasourceRenderFailedAnalyticsWrapper;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { PopupComponentProps } from '@atlaskit/popup';
|
|
3
|
-
export declare const PopupComponent: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const PopupComponent: React.ForwardRefExoticComponent<Omit<PopupComponentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -3,4 +3,6 @@
|
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
5
|
import React from 'react';
|
|
6
|
-
export declare const TruncateTextTag: React.ForwardRefExoticComponent<
|
|
6
|
+
export declare const TruncateTextTag: React.ForwardRefExoticComponent<{
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & React.RefAttributes<HTMLElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const DatasourceRenderFailedAnalyticsWrapper: import("react").ForwardRefExoticComponent<
|
|
2
|
+
declare const DatasourceRenderFailedAnalyticsWrapper: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<any>>;
|
|
3
3
|
export default DatasourceRenderFailedAnalyticsWrapper;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { PopupComponentProps } from '@atlaskit/popup';
|
|
3
|
-
export declare const PopupComponent: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const PopupComponent: React.ForwardRefExoticComponent<Omit<PopupComponentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -3,4 +3,6 @@
|
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
5
|
import React from 'react';
|
|
6
|
-
export declare const TruncateTextTag: React.ForwardRefExoticComponent<
|
|
6
|
+
export declare const TruncateTextTag: React.ForwardRefExoticComponent<{
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
} & React.RefAttributes<HTMLElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,61 +28,61 @@
|
|
|
28
28
|
"website": {
|
|
29
29
|
"name": "Link Datasource"
|
|
30
30
|
},
|
|
31
|
-
"runReact18":
|
|
31
|
+
"runReact18": false
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"analytics:codegen": "yarn workspace @atlassian/analytics-tooling run analytics:codegen link-datasource --output ./src/analytics/generated"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
38
|
-
"@atlaskit/analytics-next": "^10.
|
|
39
|
-
"@atlaskit/atlassian-context": "^0.0
|
|
40
|
-
"@atlaskit/avatar": "^21.
|
|
41
|
-
"@atlaskit/avatar-group": "^11.
|
|
42
|
-
"@atlaskit/badge": "^17.
|
|
43
|
-
"@atlaskit/button": "^20.
|
|
44
|
-
"@atlaskit/datetime-picker": "^15.
|
|
45
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
38
|
+
"@atlaskit/analytics-next": "^10.3.0",
|
|
39
|
+
"@atlaskit/atlassian-context": "^0.1.0",
|
|
40
|
+
"@atlaskit/avatar": "^21.18.0",
|
|
41
|
+
"@atlaskit/avatar-group": "^11.1.0",
|
|
42
|
+
"@atlaskit/badge": "^17.1.0",
|
|
43
|
+
"@atlaskit/button": "^20.4.0",
|
|
44
|
+
"@atlaskit/datetime-picker": "^15.12.0",
|
|
45
|
+
"@atlaskit/dropdown-menu": "^12.26.0",
|
|
46
46
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
47
|
-
"@atlaskit/empty-state": "^8.
|
|
48
|
-
"@atlaskit/flag": "^15.
|
|
49
|
-
"@atlaskit/form": "^11.
|
|
50
|
-
"@atlaskit/heading": "^4.
|
|
51
|
-
"@atlaskit/icon": "^23.
|
|
52
|
-
"@atlaskit/icon-object": "^6.
|
|
53
|
-
"@atlaskit/image": "^1.
|
|
54
|
-
"@atlaskit/inline-edit": "^14.
|
|
55
|
-
"@atlaskit/intl-messages-provider": "^1.
|
|
47
|
+
"@atlaskit/empty-state": "^8.2.0",
|
|
48
|
+
"@atlaskit/flag": "^15.9.0",
|
|
49
|
+
"@atlaskit/form": "^11.1.0",
|
|
50
|
+
"@atlaskit/heading": "^4.1.0",
|
|
51
|
+
"@atlaskit/icon": "^23.5.0",
|
|
52
|
+
"@atlaskit/icon-object": "^6.10.0",
|
|
53
|
+
"@atlaskit/image": "^1.4.0",
|
|
54
|
+
"@atlaskit/inline-edit": "^14.2.0",
|
|
55
|
+
"@atlaskit/intl-messages-provider": "^1.1.0",
|
|
56
56
|
"@atlaskit/jql-ast": "^3.3.0",
|
|
57
|
-
"@atlaskit/jql-editor": "^4.
|
|
58
|
-
"@atlaskit/jql-editor-autocomplete-rest": "^2.
|
|
59
|
-
"@atlaskit/layering": "^1.
|
|
60
|
-
"@atlaskit/link-client-extension": "^3.
|
|
61
|
-
"@atlaskit/linking-common": "^6.
|
|
62
|
-
"@atlaskit/linking-types": "^9.
|
|
63
|
-
"@atlaskit/logo": "^15.
|
|
64
|
-
"@atlaskit/lozenge": "^11.
|
|
65
|
-
"@atlaskit/modal-dialog": "^12.
|
|
57
|
+
"@atlaskit/jql-editor": "^4.14.0",
|
|
58
|
+
"@atlaskit/jql-editor-autocomplete-rest": "^2.2.0",
|
|
59
|
+
"@atlaskit/layering": "^1.1.0",
|
|
60
|
+
"@atlaskit/link-client-extension": "^3.1.0",
|
|
61
|
+
"@atlaskit/linking-common": "^6.2.0",
|
|
62
|
+
"@atlaskit/linking-types": "^9.6.0",
|
|
63
|
+
"@atlaskit/logo": "^15.2.0",
|
|
64
|
+
"@atlaskit/lozenge": "^11.13.0",
|
|
65
|
+
"@atlaskit/modal-dialog": "^12.20.0",
|
|
66
66
|
"@atlaskit/outbound-auth-flow-client": "^3.4.5",
|
|
67
67
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
68
|
-
"@atlaskit/popup": "^1.
|
|
69
|
-
"@atlaskit/pragmatic-drag-and-drop": "^1.
|
|
68
|
+
"@atlaskit/popup": "^1.31.0",
|
|
69
|
+
"@atlaskit/pragmatic-drag-and-drop": "^1.5.0",
|
|
70
70
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
|
|
71
71
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^1.2.0",
|
|
72
|
-
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.
|
|
73
|
-
"@atlaskit/primitives": "^13.
|
|
74
|
-
"@atlaskit/react-select": "^1.
|
|
75
|
-
"@atlaskit/select": "^18.
|
|
76
|
-
"@atlaskit/smart-card": "^34.
|
|
77
|
-
"@atlaskit/smart-user-picker": "
|
|
78
|
-
"@atlaskit/spinner": "^
|
|
79
|
-
"@atlaskit/tag": "^12.
|
|
80
|
-
"@atlaskit/textfield": "6.
|
|
81
|
-
"@atlaskit/theme": "^14.
|
|
82
|
-
"@atlaskit/tokens": "^3.
|
|
83
|
-
"@atlaskit/tooltip": "^19.
|
|
72
|
+
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.2.0",
|
|
73
|
+
"@atlaskit/primitives": "^13.4.0",
|
|
74
|
+
"@atlaskit/react-select": "^1.7.0",
|
|
75
|
+
"@atlaskit/select": "^18.10.0",
|
|
76
|
+
"@atlaskit/smart-card": "^34.8.0",
|
|
77
|
+
"@atlaskit/smart-user-picker": "7.0.0",
|
|
78
|
+
"@atlaskit/spinner": "^17.1.0",
|
|
79
|
+
"@atlaskit/tag": "^12.7.0",
|
|
80
|
+
"@atlaskit/textfield": "6.8.0",
|
|
81
|
+
"@atlaskit/theme": "^14.1.0",
|
|
82
|
+
"@atlaskit/tokens": "^3.3.0",
|
|
83
|
+
"@atlaskit/tooltip": "^19.1.0",
|
|
84
84
|
"@atlaskit/ufo": "^0.3.0",
|
|
85
|
-
"@atlaskit/width-detector": "^4.
|
|
85
|
+
"@atlaskit/width-detector": "^4.4.0",
|
|
86
86
|
"@babel/runtime": "^7.0.0",
|
|
87
87
|
"@emotion/react": "^11.7.1",
|
|
88
88
|
"@emotion/styled": "^11.0.0",
|
|
@@ -101,14 +101,14 @@
|
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@af/integration-testing": "*",
|
|
103
103
|
"@af/visual-regression": "*",
|
|
104
|
-
"@atlaskit/link-provider": "^1.
|
|
105
|
-
"@atlaskit/link-test-helpers": "^7.
|
|
104
|
+
"@atlaskit/link-provider": "^1.19.0",
|
|
105
|
+
"@atlaskit/link-test-helpers": "^7.6.0",
|
|
106
106
|
"@atlaskit/ssr": "*",
|
|
107
107
|
"@atlaskit/visual-regression": "*",
|
|
108
|
-
"@atlassian/feature-flags-test-utils": "^0.
|
|
108
|
+
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
109
109
|
"@faker-js/faker": "^7.5.0",
|
|
110
110
|
"@testing-library/dom": "^10.1.0",
|
|
111
|
-
"@testing-library/react": "^
|
|
111
|
+
"@testing-library/react": "^13.4.0",
|
|
112
112
|
"@testing-library/react-hooks": "^8.0.1",
|
|
113
113
|
"@testing-library/user-event": "^14.4.3",
|
|
114
114
|
"@types/debounce-promise": "^3.1.2",
|