@atlaskit/util-data-test 17.8.0 → 17.8.1
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/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/emoji/get-emoji-provider.d.ts +2 -2
- package/dist/types/emoji/get-emoji-resource-standard-atlassian.d.ts +1 -1
- package/dist/types/emoji/get-emoji-resource.d.ts +1 -1
- package/dist/types/emoji/mock-emoji-resource-factory.d.ts +1 -1
- package/dist/types/emoji/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
- package/dist/types/emoji-test/get-non-uploading-emoji-resource.d.ts +1 -1
- package/dist/types/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
- package/dist/types/emoji-test/get-test-emoji-resource-non-uploading.d.ts +1 -1
- package/dist/types/emoji-test/get-test-emoji-resource.d.ts +1 -1
- package/dist/types/task-decision/task-decision-story-data.d.ts +1 -1
- package/emoji-constants/package.json +2 -2
- package/emoji-samples/package.json +2 -2
- package/emoji-types/package.json +2 -2
- package/filter-to-searchable/package.json +2 -2
- package/get-atlassian-emojis/package.json +2 -2
- package/get-emoji-provider/package.json +2 -2
- package/get-emoji-repository/package.json +2 -2
- package/get-emoji-resource/package.json +2 -2
- package/get-emoji-resource-standard-atlassian/package.json +2 -2
- package/get-emoji-resource-usage-clear/package.json +2 -2
- package/get-emojis/package.json +2 -2
- package/get-mock-profilecard-client/package.json +2 -2
- package/get-standard-emojis/package.json +2 -2
- package/get-test-atlassian-emojis/package.json +2 -2
- package/get-test-atlassian-service-emojis/package.json +2 -2
- package/get-test-emoji-repository/package.json +2 -2
- package/get-test-emoji-resource/package.json +2 -2
- package/get-test-emoji-resource-from-repository/package.json +2 -2
- package/get-test-emoji-resource-non-uploading/package.json +2 -2
- package/get-test-emojis/package.json +2 -2
- package/get-test-image-emoji/package.json +2 -2
- package/get-test-searchable-emojis/package.json +2 -2
- package/get-test-site-emoji-foo/package.json +2 -2
- package/get-test-site-emoji-repository/package.json +2 -2
- package/get-test-site-emoji-wtf/package.json +2 -2
- package/get-test-site-emojis/package.json +2 -2
- package/get-test-site-service-emojis/package.json +2 -2
- package/get-test-sprite-emoji/package.json +2 -2
- package/get-test-standard-emojis/package.json +2 -2
- package/get-test-standard-service-emojis/package.json +2 -2
- package/logged-user/package.json +2 -2
- package/logger/package.json +2 -2
- package/media-emoji/package.json +2 -2
- package/media-service-emoji/package.json +2 -2
- package/mention-story-data/package.json +2 -2
- package/mention-test-data/package.json +2 -2
- package/mock-emoji-resource/package.json +2 -2
- package/mock-mention-resource/package.json +2 -2
- package/mock-non-uploading-emoji-resource-factory/package.json +2 -2
- package/mock-presence-resource/package.json +2 -2
- package/package.json +3 -3
- package/presence-data/package.json +2 -2
- package/profilecard-data/package.json +2 -2
- package/slack-data/package.json +2 -2
- package/task-decision-story-data/package.json +2 -2
- package/user-picker/package.json +2 -2
- package/user-picker-data/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { EmojiProvider, EmojiServiceResponse } from '@atlaskit/emoji/types';
|
|
2
2
|
import { MockEmojiResourceConfig } from './types';
|
|
3
|
-
|
|
3
|
+
type DataFetch = () => Promise<EmojiServiceResponse>;
|
|
4
4
|
export declare const currentUser: {
|
|
5
5
|
id: string;
|
|
6
6
|
};
|
|
7
7
|
export declare const defaultFetch: () => Promise<any>;
|
|
8
|
-
export declare const getEmojiProvider: (config?: MockEmojiResourceConfig
|
|
8
|
+
export declare const getEmojiProvider: (config?: MockEmojiResourceConfig, fn?: DataFetch) => Promise<EmojiProvider>;
|
|
9
9
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { MockEmojiResourceConfig } from './types';
|
|
2
|
-
export declare const getEmojiResourceWithStandardAndAtlassianEmojis: (config?: MockEmojiResourceConfig
|
|
2
|
+
export declare const getEmojiResourceWithStandardAndAtlassianEmojis: (config?: MockEmojiResourceConfig) => Promise<any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { MockEmojiResourceConfig } from './types';
|
|
2
|
-
export declare const getEmojiResource: (config?: MockEmojiResourceConfig
|
|
2
|
+
export declare const getEmojiResource: (config?: MockEmojiResourceConfig) => Promise<any>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { EmojiRepository } from '@atlaskit/emoji/resource';
|
|
2
2
|
import { MockEmojiResourceConfig, PromiseBuilder } from './types';
|
|
3
|
-
export declare const mockEmojiResourceFactory: (emojiRepository: EmojiRepository, config?: MockEmojiResourceConfig
|
|
3
|
+
export declare const mockEmojiResourceFactory: (emojiRepository: EmojiRepository, config?: MockEmojiResourceConfig, promiseBuilder?: PromiseBuilder<any>) => Promise<any>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { EmojiRepository } from '@atlaskit/emoji/resource';
|
|
2
2
|
import { MockEmojiResourceConfig, PromiseBuilder } from './types';
|
|
3
|
-
export declare const mockNonUploadingEmojiResourceFactory: (emojiRepository: EmojiRepository, config?: MockEmojiResourceConfig
|
|
3
|
+
export declare const mockNonUploadingEmojiResourceFactory: (emojiRepository: EmojiRepository, config?: MockEmojiResourceConfig, promiseBuilder?: PromiseBuilder<any>) => Promise<any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { MockEmojiResourceConfig } from '../emoji/types';
|
|
2
|
-
export declare const getNonUploadingEmojiResource: (config?: MockEmojiResourceConfig
|
|
2
|
+
export declare const getNonUploadingEmojiResource: (config?: MockEmojiResourceConfig) => Promise<any>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { EmojiRepository } from '@atlaskit/emoji/resource';
|
|
2
2
|
import { MockEmojiResourceConfig } from '../emoji/types';
|
|
3
|
-
export declare const getTestEmojiResourceFromRepository: (repo: EmojiRepository, config?: MockEmojiResourceConfig
|
|
3
|
+
export declare const getTestEmojiResourceFromRepository: (repo: EmojiRepository, config?: MockEmojiResourceConfig) => Promise<any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { MockEmojiResourceConfig } from '../emoji/types';
|
|
2
|
-
export declare const getTestEmojiResourceNonUploading: (config?: MockEmojiResourceConfig
|
|
2
|
+
export declare const getTestEmojiResourceNonUploading: (config?: MockEmojiResourceConfig) => Promise<any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { MockEmojiResourceConfig } from '../emoji/types';
|
|
2
|
-
export declare const getTestEmojiResource: (config?: MockEmojiResourceConfig
|
|
2
|
+
export declare const getTestEmojiResource: (config?: MockEmojiResourceConfig) => Promise<any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MockTaskDecisionResource, MockTaskDecisionResourceConfig } from './mock-task-decision-resource';
|
|
2
2
|
export declare const getServiceTasksResponse: () => any;
|
|
3
|
-
export declare const getMockTaskDecisionResource: (config?: MockTaskDecisionResourceConfig
|
|
3
|
+
export declare const getMockTaskDecisionResource: (config?: MockTaskDecisionResourceConfig) => MockTaskDecisionResource;
|
|
4
4
|
export declare const document: {
|
|
5
5
|
version: number;
|
|
6
6
|
type: string;
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-constants/index.js",
|
|
6
6
|
"types": "../dist/types/emoji-constants/index.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-constants/index.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/emoji-samples.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/emoji-samples.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/emoji-samples.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/emoji-types/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/types.js",
|
|
6
6
|
"types": "../dist/types/emoji/types.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/types.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/filter-to-searchable.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/filter-to-searchable.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/filter-to-searchable.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-atlassian-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-atlassian-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-atlassian-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-emoji-provider.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-emoji-provider.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-emoji-provider.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-emoji-repository.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-emoji-repository.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-emoji-repository.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-emoji-resource.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-emoji-resource.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-emoji-resource.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-emoji-resource-standard-atlassian.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-emoji-resource-standard-atlassian.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-emoji-resource-standard-atlassian.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-emoji-resource-usage-clear.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-emoji-resource-usage-clear.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-emoji-resource-usage-clear.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/get-emojis/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/profilecard/get-mock-profilecard-client.js",
|
|
6
6
|
"types": "../dist/types/profilecard/get-mock-profilecard-client.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/profilecard/get-mock-profilecard-client.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/get-standard-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji/get-standard-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/get-standard-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-atlassian-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-atlassian-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-atlassian-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-atlassian-service-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-atlassian-service-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-atlassian-service-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-emoji-repository.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-emoji-repository.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-emoji-repository.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-emoji-resource.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-emoji-resource.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-emoji-resource.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-emoji-resource-from-repository.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-emoji-resource-from-repository.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-emoji-resource-from-repository.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-emoji-resource-non-uploading.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-emoji-resource-non-uploading.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-emoji-resource-non-uploading.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-image-emoji.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-image-emoji.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-image-emoji.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-searchable-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-searchable-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-searchable-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-site-emoji-foo.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-site-emoji-foo.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-site-emoji-foo.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-site-emoji-repository.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-site-emoji-repository.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-site-emoji-repository.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-site-emoji-wtf.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-site-emoji-wtf.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-site-emoji-wtf.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-site-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-site-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-site-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-site-service-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-site-service-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-site-service-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-sprite-emoji.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-sprite-emoji.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-sprite-emoji.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-standard-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-standard-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-standard-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/get-test-standard-service-emojis.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/get-test-standard-service-emojis.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/get-test-standard-service-emojis.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/logged-user/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/logged-user.js",
|
|
6
6
|
"types": "../dist/types/emoji/logged-user.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/logged-user.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/logger/package.json
CHANGED
package/media-emoji/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/media-emoji.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/media-emoji.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/media-emoji.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji-test/media-service-emoji.js",
|
|
6
6
|
"types": "../dist/types/emoji-test/media-service-emoji.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji-test/media-service-emoji.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/mention/mention-story-data.js",
|
|
6
6
|
"types": "../dist/types/mention/mention-story-data.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/mention/mention-story-data.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/mention/mention-test-data.js",
|
|
6
6
|
"types": "../dist/types/mention/mention-test-data.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/mention/mention-test-data.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/mock-emoji-resource.js",
|
|
6
6
|
"types": "../dist/types/emoji/mock-emoji-resource.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/mock-emoji-resource.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/mention/mock-mention-resource.js",
|
|
6
6
|
"types": "../dist/types/mention/mock-mention-resource.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/mention/mock-mention-resource.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/emoji/mock-non-uploading-emoji-resource-factory.js",
|
|
6
6
|
"types": "../dist/types/emoji/mock-non-uploading-emoji-resource-factory.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/emoji/mock-non-uploading-emoji-resource-factory.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/mention/mock-presence-resource.js",
|
|
6
6
|
"types": "../dist/types/mention/mock-presence-resource.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/mention/mock-presence-resource.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/util-data-test",
|
|
3
|
-
"version": "17.8.
|
|
3
|
+
"version": "17.8.1",
|
|
4
4
|
"description": "Shared test and story data",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@atlaskit/profilecard": "^19.3.0",
|
|
75
75
|
"@atlaskit/task-decision": "^17.6.0",
|
|
76
76
|
"@atlaskit/theme": "^12.5.0",
|
|
77
|
-
"@atlaskit/tokens": "^1.
|
|
77
|
+
"@atlaskit/tokens": "^1.4.0",
|
|
78
78
|
"@atlaskit/user-picker": "^10.2.0",
|
|
79
79
|
"@atlaskit/util-service-support": "^6.2.0",
|
|
80
80
|
"@babel/runtime": "^7.0.0",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@atlaskit/docs": "^9.1.0",
|
|
93
93
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|
|
94
|
-
"typescript": "4.
|
|
94
|
+
"typescript": "~4.9.5"
|
|
95
95
|
},
|
|
96
96
|
"keywords": [
|
|
97
97
|
"fabric",
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/mention/presence-data.js",
|
|
6
6
|
"types": "../dist/types/mention/presence-data.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/mention/presence-data.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/profilecard/profilecard-data.js",
|
|
6
6
|
"types": "../dist/types/profilecard/profilecard-data.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/profilecard/profilecard-data.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/slack-data/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/slack-data/index.js",
|
|
6
6
|
"types": "../dist/types/slack-data/index.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/slack-data/index.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/task-decision/task-decision-story-data.js",
|
|
6
6
|
"types": "../dist/types/task-decision/task-decision-story-data.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/task-decision/task-decision-story-data.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
package/user-picker/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/user-picker/index.js",
|
|
6
6
|
"types": "../dist/types/user-picker/index.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/user-picker/index.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/user-picker/user-picker-data.js",
|
|
6
6
|
"types": "../dist/types/user-picker/user-picker-data.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.
|
|
8
|
+
">=4.5 <4.9": {
|
|
9
9
|
"*": [
|
|
10
|
-
"../dist/types-ts4.
|
|
10
|
+
"../dist/types-ts4.5/user-picker/user-picker-data.d.ts"
|
|
11
11
|
]
|
|
12
12
|
}
|
|
13
13
|
}
|