@atlaskit/link-datasource 1.19.6 → 1.19.8

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.
@@ -29,7 +29,7 @@ import { AccessRequired } from '../../common/error-state/access-required';
29
29
  import { ModalLoadingError } from '../../common/error-state/modal-loading-error';
30
30
  import { NoInstancesView } from '../../common/error-state/no-instances';
31
31
  import { NoResults } from '../../common/error-state/no-results';
32
- import { EmptyState, IssueLikeDataTableView } from '../../issue-like-table';
32
+ import { EmptyState, IssueLikeDataTableView, scrollableContainerShadowsCssComponents } from '../../issue-like-table';
33
33
  import LinkRenderType from '../../issue-like-table/render-type/link';
34
34
  import { availableBasicFilterTypes } from '../basic-filters/ui';
35
35
  import { InitialStateView } from '../initial-state-view';
@@ -53,7 +53,11 @@ var contentContainerStyles = css({
53
53
  display: 'grid',
54
54
  maxHeight: '420px',
55
55
  overflow: 'auto',
56
- borderBottom: "2px solid ".concat("var(--ds-background-accent-gray-subtler, ".concat(N40, ")"))
56
+ borderBottom: "2px solid ".concat("var(--ds-background-accent-gray-subtler, ".concat(N40, ")")),
57
+ background: scrollableContainerShadowsCssComponents.background,
58
+ backgroundRepeat: scrollableContainerShadowsCssComponents.backgroundRepeat,
59
+ backgroundSize: scrollableContainerShadowsCssComponents.backgroundSize,
60
+ backgroundAttachment: scrollableContainerShadowsCssComponents.backgroundAttachment
57
61
  });
58
62
  var placeholderSmartLinkStyles = css({
59
63
  backgroundColor: "var(--ds-surface-raised, ".concat(N0, ")"),
@@ -14,8 +14,8 @@ import LinkUrl from '@atlaskit/smart-card/link-url';
14
14
  import { N0, N40, N800, N90 } from '@atlaskit/theme/colors';
15
15
  import { footerMessages } from './messages';
16
16
  import { SyncInfo } from './sync-info';
17
- var FooterWrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n padding: 0 ", ";\n box-sizing: border-box;\n border-radius: inherit;\n background: ", ";\n"])), "var(--ds-space-200, 16px)", "var(--ds-background-input, ".concat(N0, ")"));
18
- var TopBorderWrapper = styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n box-sizing: border-box;\n justify-content: space-between;\n padding: ", " 0;\n border-top: 2px solid ", ";\n"])), "var(--ds-space-250, 20px)", "var(--ds-background-accent-gray-subtler, ".concat(N40, ")"));
17
+ var FooterWrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n padding: 0 ", ";\n box-sizing: border-box;\n border-radius: inherit;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n background: ", ";\n border-top: 2px solid ", ";\n"])), "var(--ds-space-200, 16px)", "var(--ds-background-input, ".concat(N0, ")"), "var(--ds-background-accent-gray-subtler, ".concat(N40, ")"));
18
+ var TopBorderWrapper = styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n box-sizing: border-box;\n justify-content: space-between;\n padding: ", " 0;\n"])), "var(--ds-space-250, 20px)");
19
19
  var ItemCounterWrapper = styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n align-self: center;\n"])));
20
20
  var SyncWrapper = styled.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n color: ", ";\n"])), "var(--ds-text-accent-gray, ".concat(N90, ")"));
21
21
  var SyncTextWrapper = styled.div(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n margin-right: 5px;\n font-size: 12px;\n"])));
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Generates Typescript types for analytics events from analytics.spec.yaml
5
5
  *
6
- * @codegen <<SignedSource::32dd97482f811937fcb07590b84179dd>>
6
+ * @codegen <<SignedSource::56c0904e824f5d240cc6a26a2cea70f6>>
7
7
  * @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen link-datasource
8
8
  */
9
9
  export type PackageMetaDataType = {
@@ -43,16 +43,16 @@ export type ButtonClickedInsertAttributesType = {
43
43
  extensionKey: string | null;
44
44
  actions: unknown[];
45
45
  isQueryComplex: boolean;
46
+ projectBasicFilterSelectionCount: number;
47
+ statusBasicFilterSelectionCount: number;
48
+ issuetypeBasicFilterSelectionCount: number;
49
+ assigneeBasicFilterSelectionCount: number;
46
50
  };
47
51
  export type ButtonClickedCancelAttributesType = {
48
52
  searchCount: number;
49
53
  destinationObjectTypes: unknown[];
50
54
  extensionKey: string | null;
51
55
  actions: unknown[];
52
- projectBasicFilterSelectionCount: number;
53
- statusBasicFilterSelectionCount: number;
54
- issuetypeBasicFilterSelectionCount: number;
55
- assigneeBasicFilterSelectionCount: number;
56
56
  };
57
57
  export type LinkClickedSingleItemAttributesType = {
58
58
  extensionKey: string | null;
@@ -3,6 +3,12 @@ import { Ref } from 'react';
3
3
  import { jsx } from '@emotion/react';
4
4
  import { DatasourceResponseSchemaProperty } from '@atlaskit/linking-types/datasource';
5
5
  import { IssueLikeDataTableViewProps } from './types';
6
+ export declare const scrollableContainerShadowsCssComponents: {
7
+ background: string;
8
+ backgroundRepeat: string;
9
+ backgroundSize: string;
10
+ backgroundAttachment: string;
11
+ };
6
12
  export interface RowType {
7
13
  cells: Array<RowCellType>;
8
14
  key?: string;
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Generates Typescript types for analytics events from analytics.spec.yaml
5
5
  *
6
- * @codegen <<SignedSource::32dd97482f811937fcb07590b84179dd>>
6
+ * @codegen <<SignedSource::56c0904e824f5d240cc6a26a2cea70f6>>
7
7
  * @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen link-datasource
8
8
  */
9
9
  export type PackageMetaDataType = {
@@ -43,16 +43,16 @@ export type ButtonClickedInsertAttributesType = {
43
43
  extensionKey: string | null;
44
44
  actions: unknown[];
45
45
  isQueryComplex: boolean;
46
+ projectBasicFilterSelectionCount: number;
47
+ statusBasicFilterSelectionCount: number;
48
+ issuetypeBasicFilterSelectionCount: number;
49
+ assigneeBasicFilterSelectionCount: number;
46
50
  };
47
51
  export type ButtonClickedCancelAttributesType = {
48
52
  searchCount: number;
49
53
  destinationObjectTypes: unknown[];
50
54
  extensionKey: string | null;
51
55
  actions: unknown[];
52
- projectBasicFilterSelectionCount: number;
53
- statusBasicFilterSelectionCount: number;
54
- issuetypeBasicFilterSelectionCount: number;
55
- assigneeBasicFilterSelectionCount: number;
56
56
  };
57
57
  export type LinkClickedSingleItemAttributesType = {
58
58
  extensionKey: string | null;
@@ -3,6 +3,12 @@ import { Ref } from 'react';
3
3
  import { jsx } from '@emotion/react';
4
4
  import { DatasourceResponseSchemaProperty } from '@atlaskit/linking-types/datasource';
5
5
  import { IssueLikeDataTableViewProps } from './types';
6
+ export declare const scrollableContainerShadowsCssComponents: {
7
+ background: string;
8
+ backgroundRepeat: string;
9
+ backgroundSize: string;
10
+ backgroundAttachment: string;
11
+ };
6
12
  export interface RowType {
7
13
  cells: Array<RowCellType>;
8
14
  key?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-datasource",
3
- "version": "1.19.6",
3
+ "version": "1.19.8",
4
4
  "description": "UI Components to support linking platform dataset feature",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,7 +30,7 @@
30
30
  "analytics:codegen": "yarn workspace @atlassian/analytics-tooling run analytics:codegen link-datasource --output ./src/analytics/generated"
31
31
  },
32
32
  "dependencies": {
33
- "@atlaskit/adf-schema": "^34.0.0",
33
+ "@atlaskit/adf-schema": "^34.0.1",
34
34
  "@atlaskit/analytics-next": "^9.1.3",
35
35
  "@atlaskit/avatar": "^21.4.0",
36
36
  "@atlaskit/badge": "^15.1.16",