@atlaskit/emoji 65.2.0 → 66.0.0
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/admin/package.json +8 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/types.d.ts +6 -0
- package/dist/types-ts4.0/admin.d.ts +1 -0
- package/dist/types-ts4.0/api/EmojiLoader.d.ts +13 -0
- package/dist/types-ts4.0/api/EmojiRepository.d.ts +72 -0
- package/dist/types-ts4.0/api/EmojiRepositoryRegex.d.ts +1 -0
- package/dist/types-ts4.0/api/EmojiResource.d.ts +123 -0
- package/dist/types-ts4.0/api/EmojiUtils.d.ts +24 -0
- package/dist/types-ts4.0/api/internal/Comparators.d.ts +109 -0
- package/dist/types-ts4.0/api/internal/UsageFrequencyTracker.d.ts +46 -0
- package/dist/types-ts4.0/api/media/MediaEmojiCache.d.ts +53 -0
- package/dist/types-ts4.0/api/media/MediaImageLoader.d.ts +21 -0
- package/dist/types-ts4.0/api/media/SiteEmojiResource.d.ts +46 -0
- package/dist/types-ts4.0/api/media/TokenManager.d.ts +13 -0
- package/dist/types-ts4.0/components/common/CachingEmoji.d.ts +20 -0
- package/dist/types-ts4.0/components/common/DeleteButton.d.ts +4 -0
- package/dist/types-ts4.0/components/common/Emoji.d.ts +56 -0
- package/dist/types-ts4.0/components/common/EmojiActions.d.ts +31 -0
- package/dist/types-ts4.0/components/common/EmojiButton.d.ts +12 -0
- package/dist/types-ts4.0/components/common/EmojiDeletePreview.d.ts +20 -0
- package/dist/types-ts4.0/components/common/EmojiErrorMessage.d.ts +10 -0
- package/dist/types-ts4.0/components/common/EmojiImage.d.ts +13 -0
- package/dist/types-ts4.0/components/common/EmojiPlaceholder.d.ts +11 -0
- package/dist/types-ts4.0/components/common/EmojiPreviewComponent.d.ts +7 -0
- package/dist/types-ts4.0/components/common/EmojiUploadPicker.d.ts +17 -0
- package/dist/types-ts4.0/components/common/EmojiUploadPreview.d.ts +16 -0
- package/dist/types-ts4.0/components/common/FileChooser.d.ts +11 -0
- package/dist/types-ts4.0/components/common/LoadingEmojiComponent.d.ts +32 -0
- package/dist/types-ts4.0/components/common/Popup.d.ts +12 -0
- package/dist/types-ts4.0/components/common/RecordSelectionDefault.d.ts +12 -0
- package/dist/types-ts4.0/components/common/ResourcedEmoji.d.ts +18 -0
- package/dist/types-ts4.0/components/common/ResourcedEmojiComponent.d.ts +48 -0
- package/dist/types-ts4.0/components/common/RetryableButton.d.ts +10 -0
- package/dist/types-ts4.0/components/common/Scrollable.d.ts +19 -0
- package/dist/types-ts4.0/components/common/ToneSelector.d.ts +12 -0
- package/dist/types-ts4.0/components/common/UfoErrorBoundary.d.ts +8 -0
- package/dist/types-ts4.0/components/common/UploadEmoji.d.ts +5 -0
- package/dist/types-ts4.0/components/common/internal-types.d.ts +11 -0
- package/dist/types-ts4.0/components/common/setSkinToneAriaLabelText.d.ts +1 -0
- package/dist/types-ts4.0/components/common/styles.d.ts +49 -0
- package/dist/types-ts4.0/components/hooks.d.ts +1 -0
- package/dist/types-ts4.0/components/i18n.d.ts +172 -0
- package/dist/types-ts4.0/components/picker/CategorySelector.d.ts +21 -0
- package/dist/types-ts4.0/components/picker/CategoryTracker.d.ts +17 -0
- package/dist/types-ts4.0/components/picker/EmojiPicker.d.ts +32 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerCategoryHeading.d.ts +8 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerComponent.d.ts +28 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerEmojiRow.d.ts +12 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerFooter.d.ts +7 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerList.d.ts +72 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerListSearch.d.ts +12 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerSizes.d.ts +11 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerVirtualItems.d.ts +41 -0
- package/dist/types-ts4.0/components/picker/categories.d.ts +7 -0
- package/dist/types-ts4.0/components/picker/styles.d.ts +18 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAhead.d.ts +27 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadComponent.d.ts +72 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadItem.d.ts +14 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadList.d.ts +35 -0
- package/dist/types-ts4.0/components/typeahead/styles.d.ts +10 -0
- package/dist/types-ts4.0/components/uploader/EmojiUploadComponent.d.ts +13 -0
- package/dist/types-ts4.0/components/uploader/EmojiUploader.d.ts +20 -0
- package/dist/types-ts4.0/components/uploader/styles.d.ts +2 -0
- package/dist/types-ts4.0/context/EmojiContext.d.ts +4 -0
- package/dist/types-ts4.0/context/EmojiContextProvider.d.ts +7 -0
- package/dist/types-ts4.0/context/LegacyEmojiContextProvider.d.ts +22 -0
- package/dist/types-ts4.0/element.d.ts +3 -0
- package/dist/types-ts4.0/hooks/useEmojiContext.d.ts +1 -0
- package/dist/types-ts4.0/hooks/usePrevious.d.ts +1 -0
- package/dist/types-ts4.0/i18n/cs.d.ts +43 -0
- package/dist/types-ts4.0/i18n/da.d.ts +43 -0
- package/dist/types-ts4.0/i18n/de.d.ts +43 -0
- package/dist/types-ts4.0/i18n/en.d.ts +33 -0
- package/dist/types-ts4.0/i18n/en_GB.d.ts +33 -0
- package/dist/types-ts4.0/i18n/en_ZZ.d.ts +43 -0
- package/dist/types-ts4.0/i18n/es.d.ts +43 -0
- package/dist/types-ts4.0/i18n/et.d.ts +39 -0
- package/dist/types-ts4.0/i18n/fi.d.ts +43 -0
- package/dist/types-ts4.0/i18n/fr.d.ts +43 -0
- package/dist/types-ts4.0/i18n/hu.d.ts +43 -0
- package/dist/types-ts4.0/i18n/index.d.ts +35 -0
- package/dist/types-ts4.0/i18n/is.d.ts +33 -0
- package/dist/types-ts4.0/i18n/it.d.ts +43 -0
- package/dist/types-ts4.0/i18n/ja.d.ts +43 -0
- package/dist/types-ts4.0/i18n/ko.d.ts +43 -0
- package/dist/types-ts4.0/i18n/languages.d.ts +27 -0
- package/dist/types-ts4.0/i18n/nb.d.ts +43 -0
- package/dist/types-ts4.0/i18n/nl.d.ts +43 -0
- package/dist/types-ts4.0/i18n/pl.d.ts +43 -0
- package/dist/types-ts4.0/i18n/pt_BR.d.ts +43 -0
- package/dist/types-ts4.0/i18n/pt_PT.d.ts +39 -0
- package/dist/types-ts4.0/i18n/ro.d.ts +33 -0
- package/dist/types-ts4.0/i18n/ru.d.ts +43 -0
- package/dist/types-ts4.0/i18n/sk.d.ts +39 -0
- package/dist/types-ts4.0/i18n/sv.d.ts +43 -0
- package/dist/types-ts4.0/i18n/th.d.ts +43 -0
- package/dist/types-ts4.0/i18n/tr.d.ts +43 -0
- package/dist/types-ts4.0/i18n/uk.d.ts +43 -0
- package/dist/types-ts4.0/i18n/vi.d.ts +43 -0
- package/dist/types-ts4.0/i18n/zh.d.ts +43 -0
- package/dist/types-ts4.0/i18n/zh_TW.d.ts +43 -0
- package/dist/types-ts4.0/index.d.ts +25 -0
- package/dist/types-ts4.0/picker.d.ts +1 -0
- package/dist/types-ts4.0/resource.d.ts +5 -0
- package/dist/types-ts4.0/typeahead.d.ts +2 -0
- package/dist/types-ts4.0/types.d.ts +357 -0
- package/dist/types-ts4.0/util/DuplicateLimitedQueue.d.ts +91 -0
- package/dist/types-ts4.0/util/StoredDuplicateLimitedQueue.d.ts +46 -0
- package/dist/types-ts4.0/util/analytics/analytics.d.ts +61 -0
- package/dist/types-ts4.0/util/analytics/index.d.ts +6 -0
- package/dist/types-ts4.0/util/analytics/samplingUfo.d.ts +31 -0
- package/dist/types-ts4.0/util/analytics/ufoExperiences.d.ts +14 -0
- package/dist/types-ts4.0/util/analytics/useSampledUFOComponentExperience.d.ts +8 -0
- package/dist/types-ts4.0/util/browser-support.d.ts +1 -0
- package/dist/types-ts4.0/util/constants.d.ts +25 -0
- package/dist/types-ts4.0/util/filters.d.ts +8 -0
- package/dist/types-ts4.0/util/image.d.ts +10 -0
- package/dist/types-ts4.0/util/logger.d.ts +4 -0
- package/dist/types-ts4.0/util/mouse.d.ts +8 -0
- package/dist/types-ts4.0/util/shared-styles.d.ts +11 -0
- package/dist/types-ts4.0/util/storage-available.d.ts +3 -0
- package/dist/types-ts4.0/util/type-helpers.d.ts +23 -0
- package/dist/types-ts4.0/util/useInView.d.ts +7 -0
- package/dist/types-ts4.0/utils.d.ts +3 -0
- package/element/package.json +8 -1
- package/package.json +15 -8
- package/picker/package.json +8 -1
- package/resource/package.json +8 -1
- package/typeahead/package.json +8 -1
- package/types/package.json +8 -1
- package/utils/package.json +8 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.title': string;
|
|
19
|
+
'fabric.emoji.delete.description': string;
|
|
20
|
+
'fabric.emoji.delete.label': string;
|
|
21
|
+
'fabric.emoji.delete.title': string;
|
|
22
|
+
'fabric.emoji.error.delete.failed': string;
|
|
23
|
+
'fabric.emoji.error.image.too.big': string;
|
|
24
|
+
'fabric.emoji.error.invalid.image': string;
|
|
25
|
+
'fabric.emoji.error.upload.failed': string;
|
|
26
|
+
'fabric.emoji.image.requirements': string;
|
|
27
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
28
|
+
'fabric.emoji.placeholder': string;
|
|
29
|
+
'fabric.emoji.preview': string;
|
|
30
|
+
'fabric.emoji.preview.title': string;
|
|
31
|
+
'fabric.emoji.retry.label': string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* NOTE:
|
|
35
|
+
*
|
|
36
|
+
* This file is automatically generated by Traduki 2.0.
|
|
37
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
38
|
+
*/
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.delete.title': string;
|
|
3
|
+
'fabric.emoji.delete.description': string;
|
|
4
|
+
'fabric.emoji.delete.label': string;
|
|
5
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
6
|
+
'fabric.emoji.placeholder': string;
|
|
7
|
+
'fabric.emoji.choose.file.title': string;
|
|
8
|
+
'fabric.emoji.image.requirements': string;
|
|
9
|
+
'fabric.emoji.preview.title': string;
|
|
10
|
+
'fabric.emoji.preview': string;
|
|
11
|
+
'fabric.emoji.add.label': string;
|
|
12
|
+
'fabric.emoji.retry.label': string;
|
|
13
|
+
'fabric.emoji.cancel.label': string;
|
|
14
|
+
'fabric.emoji.search.label': string;
|
|
15
|
+
'fabric.emoji.categories.search.results': string;
|
|
16
|
+
'fabric.emoji.category.frequent': string;
|
|
17
|
+
'fabric.emoji.category.people': string;
|
|
18
|
+
'fabric.emoji.category.nature': string;
|
|
19
|
+
'fabric.emoji.category.foods': string;
|
|
20
|
+
'fabric.emoji.category.activity': string;
|
|
21
|
+
'fabric.emoji.category.places': string;
|
|
22
|
+
'fabric.emoji.category.objects': string;
|
|
23
|
+
'fabric.emoji.category.symbols': string;
|
|
24
|
+
'fabric.emoji.category.flags': string;
|
|
25
|
+
'fabric.emoji.category.productivity': string;
|
|
26
|
+
'fabric.emoji.category.user.uploads': string;
|
|
27
|
+
'fabric.emoji.category.all.uploads': string;
|
|
28
|
+
'fabric.emoji.error.delete.failed': string;
|
|
29
|
+
'fabric.emoji.error.invalid.image': string;
|
|
30
|
+
'fabric.emoji.error.upload.failed': string;
|
|
31
|
+
'fabric.emoji.error.image.too.big': string;
|
|
32
|
+
};
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.title': string;
|
|
19
|
+
'fabric.emoji.delete.description': string;
|
|
20
|
+
'fabric.emoji.delete.label': string;
|
|
21
|
+
'fabric.emoji.delete.title': string;
|
|
22
|
+
'fabric.emoji.error.delete.failed': string;
|
|
23
|
+
'fabric.emoji.error.image.too.big': string;
|
|
24
|
+
'fabric.emoji.error.invalid.image': string;
|
|
25
|
+
'fabric.emoji.error.upload.failed': string;
|
|
26
|
+
'fabric.emoji.image.requirements': string;
|
|
27
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
28
|
+
'fabric.emoji.placeholder': string;
|
|
29
|
+
'fabric.emoji.preview': string;
|
|
30
|
+
'fabric.emoji.preview.title': string;
|
|
31
|
+
'fabric.emoji.retry.label': string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* NOTE:
|
|
35
|
+
*
|
|
36
|
+
* This file is automatically generated by Traduki 2.0.
|
|
37
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
38
|
+
*/
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AbstractResource } from '@atlaskit/util-service-support';
|
|
2
|
+
import Emoji from './components/common/Emoji';
|
|
3
|
+
import EmojiPlaceholder from './components/common/EmojiPlaceholder';
|
|
4
|
+
import ResourcedEmoji from './components/common/ResourcedEmoji';
|
|
5
|
+
import EmojiPicker from './components/picker/EmojiPicker';
|
|
6
|
+
import EmojiUploader from './components/uploader/EmojiUploader';
|
|
7
|
+
import EmojiTypeAhead from './components/typeahead/EmojiTypeAhead';
|
|
8
|
+
import EmojiTypeAheadItem from './components/typeahead/EmojiTypeAheadItem';
|
|
9
|
+
import { EmojiImage } from './components/common/EmojiImage';
|
|
10
|
+
export { commonSelectedStyles as selected, selectOnHoverStyles as selectOnHover, emojiSprite, emojiNodeStyles as emojiNode, emojiImage, placeholder as emojiPlaceholder, } from './components/common/styles';
|
|
11
|
+
import EmojiResource, { EmojiProvider, UploadingEmojiProvider, EmojiResourceConfig } from './api/EmojiResource';
|
|
12
|
+
import EmojiRepository from './api/EmojiRepository';
|
|
13
|
+
import EmojiLoader from './api/EmojiLoader';
|
|
14
|
+
import { denormaliseEmojiServiceResponse } from './api/EmojiUtils';
|
|
15
|
+
import { toEmojiId, toOptionalEmojiId } from './util/type-helpers';
|
|
16
|
+
import { recordSelectionFailedSli, recordSelectionSucceededSli, ufoExperiences, withSampling, WithSamplingUFOExperience } from './util/analytics';
|
|
17
|
+
import { customCategory, defaultEmojiHeight, emojiPickerWidth, emojiPickerHeight } from './util/constants';
|
|
18
|
+
import { UsageFrequencyTracker } from './api/internal/UsageFrequencyTracker';
|
|
19
|
+
import { useEmojiContext } from './hooks/useEmojiContext';
|
|
20
|
+
import { EmojiContextProvider } from './context/EmojiContextProvider';
|
|
21
|
+
export { AbstractResource, Emoji, EmojiPlaceholder, EmojiLoader, EmojiPicker, EmojiUploader, EmojiResource, EmojiRepository, EmojiTypeAhead, EmojiImage, ResourcedEmoji, EmojiContextProvider, useEmojiContext, denormaliseEmojiServiceResponse, toEmojiId, toOptionalEmojiId, recordSelectionFailedSli, recordSelectionSucceededSli, ufoExperiences, withSampling, emojiPickerWidth, emojiPickerHeight, defaultEmojiHeight, customCategory, UsageFrequencyTracker, EmojiTypeAheadItem, };
|
|
22
|
+
export type { EmojiProvider, UploadingEmojiProvider, EmojiResourceConfig, WithSamplingUFOExperience, };
|
|
23
|
+
export { SearchSort, UfoExperienceName, UfoComponentName, } from './types';
|
|
24
|
+
export type { CategoryId, EmojiRepresentation, EmojiServiceRepresentation, Message, OptionalEmojiDescription, OptionalEmojiDescriptionWithVariations, OptionalUser, RelativePosition, ToneSelection, AltRepresentations, CategoryDescription, EmojiDescription, EmojiDescriptionWithVariations, EmojiId, EmojiImageRepresentation, EmojiMeta, EmojiResponse, EmojiSearchResult, EmojiServiceDescription, EmojiServiceDescriptionWithVariations, EmojiServiceResponse, EmojiUpload, EmojiVariationDescription, ImageRepresentation, MediaApiRepresentation, MediaApiToken, OnCategory, OnEmojiEvent, OnToneSelected, OnToneSelectorCancelled, SearchOptions, SpriteImageRepresentation, SpriteRepresentation, SpriteServiceRepresentation, SpriteSheet, SpriteSheets, Styles, User, } from './types';
|
|
25
|
+
export default EmojiPicker;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as EmojiPicker } from './components/picker/EmojiPicker';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { AbstractResource } from '@atlaskit/util-service-support';
|
|
2
|
+
export { default as EmojiResource } from './api/EmojiResource';
|
|
3
|
+
export type { EmojiProvider, UploadingEmojiProvider, EmojiResourceConfig, OnEmojiProviderChange, } from './api/EmojiResource';
|
|
4
|
+
export { default as EmojiRepository } from './api/EmojiRepository';
|
|
5
|
+
export { default as EmojiLoader } from './api/EmojiLoader';
|