@atlaskit/media-test-helpers 34.8.1 → 34.8.3
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 +12 -0
- package/dist/types/I18nWrapper.d.ts +1 -1
- package/dist/types/featureFlagsWrapper/dropdown.d.ts +2 -2
- package/dist/types/featureFlagsWrapper/index.d.ts +1 -1
- package/dist/types/story-list.d.ts +2 -1
- package/dist/types/story-styles.d.ts +1 -1
- package/dist/types-ts4.5/I18nWrapper.d.ts +1 -1
- package/dist/types-ts4.5/featureFlagsWrapper/dropdown.d.ts +2 -2
- package/dist/types-ts4.5/featureFlagsWrapper/index.d.ts +1 -1
- package/dist/types-ts4.5/story-list.d.ts +2 -1
- package/dist/types-ts4.5/story-styles.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,4 +6,4 @@ export interface I18NWrapperState {
|
|
|
6
6
|
export interface I18NWrapperProps {
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
export declare const I18NWrapper: ({ children }: I18NWrapperProps) => JSX.Element;
|
|
9
|
+
export declare const I18NWrapper: ({ children }: I18NWrapperProps) => React.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export type MediaFeatureFlagsDropdownProps = {
|
|
3
3
|
onFlagChanged: () => void;
|
|
4
4
|
};
|
|
5
|
-
declare const MediaFeatureFlagsDropdown: ({ onFlagChanged }: MediaFeatureFlagsDropdownProps) => JSX.Element;
|
|
5
|
+
declare const MediaFeatureFlagsDropdown: ({ onFlagChanged }: MediaFeatureFlagsDropdownProps) => React.JSX.Element;
|
|
6
6
|
export default MediaFeatureFlagsDropdown;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { Component, type ReactNode } from 'react';
|
|
2
3
|
export type StoryListItem = {
|
|
3
4
|
readonly title: string;
|
|
@@ -8,5 +9,5 @@ export interface StoryListProps {
|
|
|
8
9
|
readonly children?: StoryListItem[];
|
|
9
10
|
}
|
|
10
11
|
export declare class StoryList extends Component<StoryListProps, {}> {
|
|
11
|
-
render(): JSX.Element;
|
|
12
|
+
render(): React.JSX.Element;
|
|
12
13
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const Matrix: import("@emotion/styled").StyledComponent<{
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
4
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5
5
|
}, import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;
|
|
@@ -6,4 +6,4 @@ export interface I18NWrapperState {
|
|
|
6
6
|
export interface I18NWrapperProps {
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
export declare const I18NWrapper: ({ children }: I18NWrapperProps) => JSX.Element;
|
|
9
|
+
export declare const I18NWrapper: ({ children }: I18NWrapperProps) => React.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export type MediaFeatureFlagsDropdownProps = {
|
|
3
3
|
onFlagChanged: () => void;
|
|
4
4
|
};
|
|
5
|
-
declare const MediaFeatureFlagsDropdown: ({ onFlagChanged }: MediaFeatureFlagsDropdownProps) => JSX.Element;
|
|
5
|
+
declare const MediaFeatureFlagsDropdown: ({ onFlagChanged }: MediaFeatureFlagsDropdownProps) => React.JSX.Element;
|
|
6
6
|
export default MediaFeatureFlagsDropdown;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { Component, type ReactNode } from 'react';
|
|
2
3
|
export type StoryListItem = {
|
|
3
4
|
readonly title: string;
|
|
@@ -8,5 +9,5 @@ export interface StoryListProps {
|
|
|
8
9
|
readonly children?: StoryListItem[];
|
|
9
10
|
}
|
|
10
11
|
export declare class StoryList extends Component<StoryListProps, {}> {
|
|
11
|
-
render(): JSX.Element;
|
|
12
|
+
render(): React.JSX.Element;
|
|
12
13
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const Matrix: import("@emotion/styled").StyledComponent<{
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
4
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5
5
|
}, import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-test-helpers",
|
|
3
|
-
"version": "34.8.
|
|
3
|
+
"version": "34.8.3",
|
|
4
4
|
"description": "Collection of test helpers used in media component stories and specs",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
},
|
|
23
23
|
"atlaskit:src": "src/index.tsx",
|
|
24
24
|
"atlassian": {
|
|
25
|
-
"team": "Media
|
|
25
|
+
"team": "Media Exif",
|
|
26
26
|
"runReact18": true
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@atlaskit/button": "^20.
|
|
29
|
+
"@atlaskit/button": "^20.5.0",
|
|
30
30
|
"@atlaskit/checkbox": "^15.3.0",
|
|
31
|
-
"@atlaskit/icon": "^23.
|
|
31
|
+
"@atlaskit/icon": "^23.9.0",
|
|
32
32
|
"@atlaskit/locale": "^2.8.0",
|
|
33
33
|
"@atlaskit/media-client": "^31.1.0",
|
|
34
34
|
"@atlaskit/media-common": "^11.8.0",
|
|
35
35
|
"@atlaskit/media-ui": "^27.4.0",
|
|
36
36
|
"@atlaskit/popup": "^1.31.0",
|
|
37
|
-
"@atlaskit/primitives": "13.
|
|
37
|
+
"@atlaskit/primitives": "13.5.1",
|
|
38
38
|
"@atlaskit/tabs": "^17.2.0",
|
|
39
|
-
"@atlaskit/textfield": "^
|
|
39
|
+
"@atlaskit/textfield": "^7.0.0",
|
|
40
40
|
"@atlaskit/tokens": "^3.3.0",
|
|
41
41
|
"@atlaskit/tooltip": "^19.1.0",
|
|
42
42
|
"@atlaskit/ufo": "^0.3.0",
|