@atlaskit/link-datasource 4.30.4 → 4.30.5
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 +6 -0
- package/dist/types/ui/common/modal/cancel-button/index.d.ts +1 -1
- package/dist/types/ui/common/modal/content-container/index.d.ts +1 -1
- package/dist/types/ui/common/modal/display-view-dropdown/display-view-drop-down.d.ts +1 -1
- package/dist/types/ui/common/modal/popup-select/footer.d.ts +1 -1
- package/dist/types/ui/common/modal/popup-select/menu-list/errorMessage.d.ts +1 -1
- package/dist/types/ui/common/modal/popup-select/menu-list/loadingMessage.d.ts +1 -1
- package/dist/types/ui/common/modal/popup-select/menu-list/selectMessage.d.ts +1 -1
- package/dist/types/ui/common/modal/popup-select/menu-list/showMoreButton.d.ts +1 -1
- package/dist/types/ui/issue-like-table/render-type/boolean/index.d.ts +1 -1
- package/dist/types/ui/issue-like-table/render-type/icon/index.d.ts +1 -1
- package/dist/types/ui/issue-like-table/render-type/link/index.d.ts +1 -1
- package/dist/types/ui/issue-like-table/render-type/number/index.d.ts +1 -1
- package/dist/types/ui/issue-like-table/render-type/status/index.d.ts +1 -1
- package/dist/types/ui/table-footer/provider-link/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/cancel-button/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/content-container/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/display-view-dropdown/display-view-drop-down.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/popup-select/footer.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/popup-select/menu-list/errorMessage.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/popup-select/menu-list/loadingMessage.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/popup-select/menu-list/selectMessage.d.ts +1 -1
- package/dist/types-ts4.5/ui/common/modal/popup-select/menu-list/showMoreButton.d.ts +1 -1
- package/dist/types-ts4.5/ui/issue-like-table/render-type/boolean/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/issue-like-table/render-type/icon/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/issue-like-table/render-type/link/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/issue-like-table/render-type/number/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/issue-like-table/render-type/status/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/table-footer/provider-link/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -5,4 +5,4 @@ export interface CancelButtonProps {
|
|
|
5
5
|
onCancel: () => void;
|
|
6
6
|
testId?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare const CancelButton: ({ getAnalyticsPayload, onCancel, testId }: CancelButtonProps) => React.JSX.Element;
|
|
8
|
+
export declare const CancelButton: ({ getAnalyticsPayload, onCancel, testId, }: CancelButtonProps) => React.JSX.Element;
|
|
@@ -3,4 +3,4 @@ export interface ContentContainerProps {
|
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
withTableBorder?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare const ContentContainer: ({ children, withTableBorder }: ContentContainerProps) => React.JSX.Element;
|
|
6
|
+
export declare const ContentContainer: ({ children, withTableBorder, }: ContentContainerProps) => React.JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type DisplayViewDropDownProps = {
|
|
|
4
4
|
onViewModeChange: (value: DisplayViewModes) => void;
|
|
5
5
|
viewMode: DisplayViewModes;
|
|
6
6
|
};
|
|
7
|
-
export declare const DisplayViewDropDown: ({ onViewModeChange, viewMode }: DisplayViewDropDownProps) => React.JSX.Element;
|
|
7
|
+
export declare const DisplayViewDropDown: ({ onViewModeChange, viewMode, }: DisplayViewDropDownProps) => React.JSX.Element;
|
|
@@ -4,5 +4,5 @@ export interface PopupFooterProps {
|
|
|
4
4
|
filterName: string;
|
|
5
5
|
totalCount: number;
|
|
6
6
|
}
|
|
7
|
-
declare const PopupFooter: ({ currentDisplayCount, totalCount, filterName }: PopupFooterProps) => React.JSX.Element;
|
|
7
|
+
declare const PopupFooter: ({ currentDisplayCount, totalCount, filterName, }: PopupFooterProps) => React.JSX.Element;
|
|
8
8
|
export default PopupFooter;
|
|
@@ -6,5 +6,5 @@ interface CustomSelectMessageProps {
|
|
|
6
6
|
message: MessageDescriptor;
|
|
7
7
|
testId: string;
|
|
8
8
|
}
|
|
9
|
-
declare const CustomSelectMessage: ({ icon, message, description, testId }: CustomSelectMessageProps) => React.JSX.Element;
|
|
9
|
+
declare const CustomSelectMessage: ({ icon, message, description, testId, }: CustomSelectMessageProps) => React.JSX.Element;
|
|
10
10
|
export default CustomSelectMessage;
|
|
@@ -4,5 +4,5 @@ type ShowMoreButtonProps = {
|
|
|
4
4
|
filterName: string;
|
|
5
5
|
onShowMore: () => void;
|
|
6
6
|
};
|
|
7
|
-
declare const ShowMoreButton: ({ onShowMore, filterName, filterLabel }: ShowMoreButtonProps) => React.JSX.Element;
|
|
7
|
+
declare const ShowMoreButton: ({ onShowMore, filterName, filterLabel, }: ShowMoreButtonProps) => React.JSX.Element;
|
|
8
8
|
export default ShowMoreButton;
|
|
@@ -5,5 +5,5 @@ interface BooleanProps {
|
|
|
5
5
|
value: BooleanType['value'];
|
|
6
6
|
}
|
|
7
7
|
export declare const BOOLEAN_TYPE_TEST_ID = "link-datasource-render-type--boolean";
|
|
8
|
-
declare const BooleanRenderType: ({ value, testId }: BooleanProps) => React.JSX.Element;
|
|
8
|
+
declare const BooleanRenderType: ({ value, testId, }: BooleanProps) => React.JSX.Element;
|
|
9
9
|
export default BooleanRenderType;
|
|
@@ -5,5 +5,5 @@ interface IconProps extends Icon {
|
|
|
5
5
|
}
|
|
6
6
|
export declare const ICON_TYPE_TEST_ID = "link-datasource-render-type--icon";
|
|
7
7
|
export declare const ICON_TYPE_TEXT_TEST_ID = "link-datasource-render-type--icon-text";
|
|
8
|
-
declare const IconRenderType: ({ label, text, source, testId }: IconProps) => React.JSX.Element;
|
|
8
|
+
declare const IconRenderType: ({ label, text, source, testId, }: IconProps) => React.JSX.Element;
|
|
9
9
|
export default IconRenderType;
|
|
@@ -4,5 +4,5 @@ interface LinkProps extends Link {
|
|
|
4
4
|
testId?: string;
|
|
5
5
|
}
|
|
6
6
|
export declare const LINK_TYPE_TEST_ID = "link-datasource-render-type--link";
|
|
7
|
-
declare const _default: React.MemoExoticComponent<({ style, url, text, testId }: LinkProps) => React.JSX.Element | null>;
|
|
7
|
+
declare const _default: React.MemoExoticComponent<({ style, url, text, testId, }: LinkProps) => React.JSX.Element | null>;
|
|
8
8
|
export default _default;
|
|
@@ -5,5 +5,5 @@ interface NumberProps {
|
|
|
5
5
|
testId?: string;
|
|
6
6
|
}
|
|
7
7
|
export declare const NUMBER_TYPE_TEST_ID = "link-datasource-render-type--number";
|
|
8
|
-
declare const NumberRenderType: ({ number, testId }: NumberProps) => React.JSX.Element;
|
|
8
|
+
declare const NumberRenderType: ({ number, testId, }: NumberProps) => React.JSX.Element;
|
|
9
9
|
export default NumberRenderType;
|
|
@@ -4,5 +4,5 @@ interface StatusProps extends Status {
|
|
|
4
4
|
testId?: string;
|
|
5
5
|
}
|
|
6
6
|
export declare const STATUS_TYPE_TEST_ID = "link-datasource-render-type--status";
|
|
7
|
-
declare const StatusRenderType: ({ text, style, testId }: StatusProps) => React.JSX.Element;
|
|
7
|
+
declare const StatusRenderType: ({ text, style, testId, }: StatusProps) => React.JSX.Element;
|
|
8
8
|
export default StatusRenderType;
|
|
@@ -5,4 +5,4 @@ export interface CancelButtonProps {
|
|
|
5
5
|
onCancel: () => void;
|
|
6
6
|
testId?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare const CancelButton: ({ getAnalyticsPayload, onCancel, testId }: CancelButtonProps) => React.JSX.Element;
|
|
8
|
+
export declare const CancelButton: ({ getAnalyticsPayload, onCancel, testId, }: CancelButtonProps) => React.JSX.Element;
|
|
@@ -3,4 +3,4 @@ export interface ContentContainerProps {
|
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
withTableBorder?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare const ContentContainer: ({ children, withTableBorder }: ContentContainerProps) => React.JSX.Element;
|
|
6
|
+
export declare const ContentContainer: ({ children, withTableBorder, }: ContentContainerProps) => React.JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type DisplayViewDropDownProps = {
|
|
|
4
4
|
onViewModeChange: (value: DisplayViewModes) => void;
|
|
5
5
|
viewMode: DisplayViewModes;
|
|
6
6
|
};
|
|
7
|
-
export declare const DisplayViewDropDown: ({ onViewModeChange, viewMode }: DisplayViewDropDownProps) => React.JSX.Element;
|
|
7
|
+
export declare const DisplayViewDropDown: ({ onViewModeChange, viewMode, }: DisplayViewDropDownProps) => React.JSX.Element;
|
|
@@ -4,5 +4,5 @@ export interface PopupFooterProps {
|
|
|
4
4
|
filterName: string;
|
|
5
5
|
totalCount: number;
|
|
6
6
|
}
|
|
7
|
-
declare const PopupFooter: ({ currentDisplayCount, totalCount, filterName }: PopupFooterProps) => React.JSX.Element;
|
|
7
|
+
declare const PopupFooter: ({ currentDisplayCount, totalCount, filterName, }: PopupFooterProps) => React.JSX.Element;
|
|
8
8
|
export default PopupFooter;
|
|
@@ -6,5 +6,5 @@ interface CustomSelectMessageProps {
|
|
|
6
6
|
message: MessageDescriptor;
|
|
7
7
|
testId: string;
|
|
8
8
|
}
|
|
9
|
-
declare const CustomSelectMessage: ({ icon, message, description, testId }: CustomSelectMessageProps) => React.JSX.Element;
|
|
9
|
+
declare const CustomSelectMessage: ({ icon, message, description, testId, }: CustomSelectMessageProps) => React.JSX.Element;
|
|
10
10
|
export default CustomSelectMessage;
|
|
@@ -4,5 +4,5 @@ type ShowMoreButtonProps = {
|
|
|
4
4
|
filterName: string;
|
|
5
5
|
onShowMore: () => void;
|
|
6
6
|
};
|
|
7
|
-
declare const ShowMoreButton: ({ onShowMore, filterName, filterLabel }: ShowMoreButtonProps) => React.JSX.Element;
|
|
7
|
+
declare const ShowMoreButton: ({ onShowMore, filterName, filterLabel, }: ShowMoreButtonProps) => React.JSX.Element;
|
|
8
8
|
export default ShowMoreButton;
|
|
@@ -5,5 +5,5 @@ interface BooleanProps {
|
|
|
5
5
|
value: BooleanType['value'];
|
|
6
6
|
}
|
|
7
7
|
export declare const BOOLEAN_TYPE_TEST_ID = "link-datasource-render-type--boolean";
|
|
8
|
-
declare const BooleanRenderType: ({ value, testId }: BooleanProps) => React.JSX.Element;
|
|
8
|
+
declare const BooleanRenderType: ({ value, testId, }: BooleanProps) => React.JSX.Element;
|
|
9
9
|
export default BooleanRenderType;
|
|
@@ -5,5 +5,5 @@ interface IconProps extends Icon {
|
|
|
5
5
|
}
|
|
6
6
|
export declare const ICON_TYPE_TEST_ID = "link-datasource-render-type--icon";
|
|
7
7
|
export declare const ICON_TYPE_TEXT_TEST_ID = "link-datasource-render-type--icon-text";
|
|
8
|
-
declare const IconRenderType: ({ label, text, source, testId }: IconProps) => React.JSX.Element;
|
|
8
|
+
declare const IconRenderType: ({ label, text, source, testId, }: IconProps) => React.JSX.Element;
|
|
9
9
|
export default IconRenderType;
|
|
@@ -4,5 +4,5 @@ interface LinkProps extends Link {
|
|
|
4
4
|
testId?: string;
|
|
5
5
|
}
|
|
6
6
|
export declare const LINK_TYPE_TEST_ID = "link-datasource-render-type--link";
|
|
7
|
-
declare const _default: React.MemoExoticComponent<({ style, url, text, testId }: LinkProps) => React.JSX.Element | null>;
|
|
7
|
+
declare const _default: React.MemoExoticComponent<({ style, url, text, testId, }: LinkProps) => React.JSX.Element | null>;
|
|
8
8
|
export default _default;
|
|
@@ -5,5 +5,5 @@ interface NumberProps {
|
|
|
5
5
|
testId?: string;
|
|
6
6
|
}
|
|
7
7
|
export declare const NUMBER_TYPE_TEST_ID = "link-datasource-render-type--number";
|
|
8
|
-
declare const NumberRenderType: ({ number, testId }: NumberProps) => React.JSX.Element;
|
|
8
|
+
declare const NumberRenderType: ({ number, testId, }: NumberProps) => React.JSX.Element;
|
|
9
9
|
export default NumberRenderType;
|
|
@@ -4,5 +4,5 @@ interface StatusProps extends Status {
|
|
|
4
4
|
testId?: string;
|
|
5
5
|
}
|
|
6
6
|
export declare const STATUS_TYPE_TEST_ID = "link-datasource-render-type--status";
|
|
7
|
-
declare const StatusRenderType: ({ text, style, testId }: StatusProps) => React.JSX.Element;
|
|
7
|
+
declare const StatusRenderType: ({ text, style, testId, }: StatusProps) => React.JSX.Element;
|
|
8
8
|
export default StatusRenderType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "4.30.
|
|
3
|
+
"version": "4.30.5",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"@atlaskit/avatar-group": "^12.4.0",
|
|
45
45
|
"@atlaskit/badge": "^18.2.0",
|
|
46
46
|
"@atlaskit/button": "^23.6.0",
|
|
47
|
-
"@atlaskit/css": "^0.
|
|
47
|
+
"@atlaskit/css": "^0.17.0",
|
|
48
48
|
"@atlaskit/datetime-picker": "^17.1.0",
|
|
49
49
|
"@atlaskit/dropdown-menu": "^16.3.0",
|
|
50
50
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
51
51
|
"@atlaskit/empty-state": "^10.1.0",
|
|
52
52
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
53
53
|
"@atlaskit/flag": "^17.5.0",
|
|
54
|
-
"@atlaskit/form": "^14.
|
|
54
|
+
"@atlaskit/form": "^14.3.0",
|
|
55
55
|
"@atlaskit/heading": "^5.2.0",
|
|
56
56
|
"@atlaskit/icon": "^29.0.0",
|
|
57
57
|
"@atlaskit/icon-object": "^7.3.0",
|
|
@@ -76,16 +76,16 @@
|
|
|
76
76
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|
|
77
77
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^2.0.0",
|
|
78
78
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
|
|
79
|
-
"@atlaskit/primitives": "^16.
|
|
79
|
+
"@atlaskit/primitives": "^16.3.0",
|
|
80
80
|
"@atlaskit/react-select": "^3.9.0",
|
|
81
81
|
"@atlaskit/select": "^21.4.0",
|
|
82
|
-
"@atlaskit/smart-card": "^43.
|
|
82
|
+
"@atlaskit/smart-card": "^43.10.0",
|
|
83
83
|
"@atlaskit/smart-user-picker": "^8.4.0",
|
|
84
84
|
"@atlaskit/spinner": "^19.0.0",
|
|
85
85
|
"@atlaskit/tag": "^14.1.0",
|
|
86
86
|
"@atlaskit/textfield": "^8.1.0",
|
|
87
87
|
"@atlaskit/theme": "^21.0.0",
|
|
88
|
-
"@atlaskit/tokens": "^8.
|
|
88
|
+
"@atlaskit/tokens": "^8.3.0",
|
|
89
89
|
"@atlaskit/tooltip": "^20.10.0",
|
|
90
90
|
"@atlaskit/ufo": "^0.4.0",
|
|
91
91
|
"@atlaskit/width-detector": "^5.0.0",
|