@atlaskit/link-datasource 1.24.10 → 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 CHANGED
@@ -1,5 +1,19 @@
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
+
10
+ ## 1.24.11
11
+
12
+ ### Patch Changes
13
+
14
+ - [#86784](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86784) [`c3e5e5eb1a2c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c3e5e5eb1a2c) - Fixes display padding of datasources for no results modal
15
+ - Updated dependencies
16
+
3
17
  ## 1.24.10
4
18
 
5
19
  ### Patch Changes
@@ -15,6 +15,7 @@ var _messages = require("./messages");
15
15
  /** @jsx jsx */
16
16
 
17
17
  var noResultsContainerStyles = (0, _react2.css)({
18
+ margin: "var(--ds-space-500, 40px)".concat(" auto"),
18
19
  display: 'grid',
19
20
  gap: "var(--ds-space-300, 24px)",
20
21
  placeItems: 'center',
@@ -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['data-testid'],
15
- "aria-label": props['aria-label'],
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() {
@@ -7,6 +7,7 @@ import { fontFallback } from '@atlaskit/theme/typography';
7
7
  import { useDatasourceAnalyticsEvents } from '../../../analytics';
8
8
  import { loadingErrorMessages } from './messages';
9
9
  const noResultsContainerStyles = css({
10
+ margin: `${"var(--ds-space-500, 40px)"} auto`,
10
11
  display: 'grid',
11
12
  gap: "var(--ds-space-300, 24px)",
12
13
  placeItems: 'center',
@@ -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['data-testid'],
7
- "aria-label": props['aria-label'],
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",
@@ -7,6 +7,7 @@ import { fontFallback } from '@atlaskit/theme/typography';
7
7
  import { useDatasourceAnalyticsEvents } from '../../../analytics';
8
8
  import { loadingErrorMessages } from './messages';
9
9
  var noResultsContainerStyles = css({
10
+ margin: "var(--ds-space-500, 40px)".concat(" auto"),
10
11
  display: 'grid',
11
12
  gap: "var(--ds-space-300, 24px)",
12
13
  placeItems: 'center',
@@ -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['data-testid'],
8
- "aria-label": props['aria-label'],
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 { CustomGlyphProps } from '@atlaskit/icon';
3
- export declare const GlyphPlaceholder: (props: CustomGlyphProps) => JSX.Element;
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 { CustomGlyphProps } from '@atlaskit/icon';
3
- export declare const GlyphPlaceholder: (props: CustomGlyphProps) => JSX.Element;
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.10",
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.2.0",
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.2.0",
64
- "@atlaskit/select": "^17.3.0",
65
- "@atlaskit/smart-card": "^26.50.0",
63
+ "@atlaskit/primitives": "^5.5.0",
64
+ "@atlaskit/select": "^17.4.0",
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.42.0",
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",