@atlaskit/link-datasource 1.24.11 → 1.24.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 +7 -0
- package/dist/cjs/ui/issue-like-table/custom-icons.js +2 -3
- package/dist/es2019/ui/issue-like-table/custom-icons.js +2 -3
- package/dist/esm/ui/issue-like-table/custom-icons.js +2 -3
- package/dist/types/ui/issue-like-table/custom-icons.d.ts +2 -2
- package/dist/types-ts4.5/ui/issue-like-table/custom-icons.d.ts +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 1.24.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#87145](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87145) [`dde291a6a448`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dde291a6a448) - Improve compatibility with React 18
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 1.24.11
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -11,9 +11,8 @@ var GlyphPlaceholder = exports.GlyphPlaceholder = function GlyphPlaceholder(prop
|
|
|
11
11
|
width: "24",
|
|
12
12
|
height: "24",
|
|
13
13
|
viewBox: "0 0 24 24",
|
|
14
|
-
"data-testid": props
|
|
15
|
-
"aria-label": props
|
|
16
|
-
className: props.className
|
|
14
|
+
"data-testid": props.testId,
|
|
15
|
+
"aria-label": props.label
|
|
17
16
|
});
|
|
18
17
|
};
|
|
19
18
|
var WrapTextIcon = exports.WrapTextIcon = function WrapTextIcon() {
|
|
@@ -3,9 +3,8 @@ export const GlyphPlaceholder = props => /*#__PURE__*/React.createElement("svg",
|
|
|
3
3
|
width: "24",
|
|
4
4
|
height: "24",
|
|
5
5
|
viewBox: "0 0 24 24",
|
|
6
|
-
"data-testid": props
|
|
7
|
-
"aria-label": props
|
|
8
|
-
className: props.className
|
|
6
|
+
"data-testid": props.testId,
|
|
7
|
+
"aria-label": props.label
|
|
9
8
|
});
|
|
10
9
|
export const WrapTextIcon = () => /*#__PURE__*/React.createElement("svg", {
|
|
11
10
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4,9 +4,8 @@ export var GlyphPlaceholder = function GlyphPlaceholder(props) {
|
|
|
4
4
|
width: "24",
|
|
5
5
|
height: "24",
|
|
6
6
|
viewBox: "0 0 24 24",
|
|
7
|
-
"data-testid": props
|
|
8
|
-
"aria-label": props
|
|
9
|
-
className: props.className
|
|
7
|
+
"data-testid": props.testId,
|
|
8
|
+
"aria-label": props.label
|
|
10
9
|
});
|
|
11
10
|
};
|
|
12
11
|
export var WrapTextIcon = function WrapTextIcon() {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
export declare const GlyphPlaceholder: (props:
|
|
2
|
+
import { IconProps } from '@atlaskit/icon';
|
|
3
|
+
export declare const GlyphPlaceholder: (props: IconProps) => JSX.Element;
|
|
4
4
|
export declare const WrapTextIcon: () => JSX.Element;
|
|
5
5
|
export declare const UnwrapTextIcon: () => JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
export declare const GlyphPlaceholder: (props:
|
|
2
|
+
import { IconProps } from '@atlaskit/icon';
|
|
3
|
+
export declare const GlyphPlaceholder: (props: IconProps) => JSX.Element;
|
|
4
4
|
export declare const WrapTextIcon: () => JSX.Element;
|
|
5
5
|
export declare const UnwrapTextIcon: () => JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.12",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
36
36
|
"@atlaskit/avatar": "^21.5.0",
|
|
37
37
|
"@atlaskit/avatar-group": "^9.5.0",
|
|
38
|
-
"@atlaskit/badge": "^15.
|
|
38
|
+
"@atlaskit/badge": "^15.3.0",
|
|
39
39
|
"@atlaskit/button": "^17.8.0",
|
|
40
40
|
"@atlaskit/dropdown-menu": "^12.8.0",
|
|
41
41
|
"@atlaskit/editor-prosemirror": "3.0.0",
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
|
|
61
61
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^1.0.0",
|
|
62
62
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.0.0",
|
|
63
|
-
"@atlaskit/primitives": "^5.
|
|
64
|
-
"@atlaskit/select": "^17.
|
|
63
|
+
"@atlaskit/primitives": "^5.5.0",
|
|
64
|
+
"@atlaskit/select": "^17.4.0",
|
|
65
65
|
"@atlaskit/smart-card": "^26.51.0",
|
|
66
66
|
"@atlaskit/spinner": "^16.0.0",
|
|
67
67
|
"@atlaskit/tag": "^12.0.0",
|
|
68
68
|
"@atlaskit/textfield": "6.1.3",
|
|
69
69
|
"@atlaskit/theme": "^12.7.0",
|
|
70
|
-
"@atlaskit/tokens": "^1.
|
|
70
|
+
"@atlaskit/tokens": "^1.43.0",
|
|
71
71
|
"@atlaskit/tooltip": "^18.1.0",
|
|
72
72
|
"@atlaskit/ufo": "^0.2.4",
|
|
73
73
|
"@atlaskit/width-detector": "^4.1.7",
|