@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.
Files changed (135) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/admin/package.json +8 -1
  3. package/dist/cjs/version.json +1 -1
  4. package/dist/es2019/version.json +1 -1
  5. package/dist/esm/version.json +1 -1
  6. package/dist/types/types.d.ts +6 -0
  7. package/dist/types-ts4.0/admin.d.ts +1 -0
  8. package/dist/types-ts4.0/api/EmojiLoader.d.ts +13 -0
  9. package/dist/types-ts4.0/api/EmojiRepository.d.ts +72 -0
  10. package/dist/types-ts4.0/api/EmojiRepositoryRegex.d.ts +1 -0
  11. package/dist/types-ts4.0/api/EmojiResource.d.ts +123 -0
  12. package/dist/types-ts4.0/api/EmojiUtils.d.ts +24 -0
  13. package/dist/types-ts4.0/api/internal/Comparators.d.ts +109 -0
  14. package/dist/types-ts4.0/api/internal/UsageFrequencyTracker.d.ts +46 -0
  15. package/dist/types-ts4.0/api/media/MediaEmojiCache.d.ts +53 -0
  16. package/dist/types-ts4.0/api/media/MediaImageLoader.d.ts +21 -0
  17. package/dist/types-ts4.0/api/media/SiteEmojiResource.d.ts +46 -0
  18. package/dist/types-ts4.0/api/media/TokenManager.d.ts +13 -0
  19. package/dist/types-ts4.0/components/common/CachingEmoji.d.ts +20 -0
  20. package/dist/types-ts4.0/components/common/DeleteButton.d.ts +4 -0
  21. package/dist/types-ts4.0/components/common/Emoji.d.ts +56 -0
  22. package/dist/types-ts4.0/components/common/EmojiActions.d.ts +31 -0
  23. package/dist/types-ts4.0/components/common/EmojiButton.d.ts +12 -0
  24. package/dist/types-ts4.0/components/common/EmojiDeletePreview.d.ts +20 -0
  25. package/dist/types-ts4.0/components/common/EmojiErrorMessage.d.ts +10 -0
  26. package/dist/types-ts4.0/components/common/EmojiImage.d.ts +13 -0
  27. package/dist/types-ts4.0/components/common/EmojiPlaceholder.d.ts +11 -0
  28. package/dist/types-ts4.0/components/common/EmojiPreviewComponent.d.ts +7 -0
  29. package/dist/types-ts4.0/components/common/EmojiUploadPicker.d.ts +17 -0
  30. package/dist/types-ts4.0/components/common/EmojiUploadPreview.d.ts +16 -0
  31. package/dist/types-ts4.0/components/common/FileChooser.d.ts +11 -0
  32. package/dist/types-ts4.0/components/common/LoadingEmojiComponent.d.ts +32 -0
  33. package/dist/types-ts4.0/components/common/Popup.d.ts +12 -0
  34. package/dist/types-ts4.0/components/common/RecordSelectionDefault.d.ts +12 -0
  35. package/dist/types-ts4.0/components/common/ResourcedEmoji.d.ts +18 -0
  36. package/dist/types-ts4.0/components/common/ResourcedEmojiComponent.d.ts +48 -0
  37. package/dist/types-ts4.0/components/common/RetryableButton.d.ts +10 -0
  38. package/dist/types-ts4.0/components/common/Scrollable.d.ts +19 -0
  39. package/dist/types-ts4.0/components/common/ToneSelector.d.ts +12 -0
  40. package/dist/types-ts4.0/components/common/UfoErrorBoundary.d.ts +8 -0
  41. package/dist/types-ts4.0/components/common/UploadEmoji.d.ts +5 -0
  42. package/dist/types-ts4.0/components/common/internal-types.d.ts +11 -0
  43. package/dist/types-ts4.0/components/common/setSkinToneAriaLabelText.d.ts +1 -0
  44. package/dist/types-ts4.0/components/common/styles.d.ts +49 -0
  45. package/dist/types-ts4.0/components/hooks.d.ts +1 -0
  46. package/dist/types-ts4.0/components/i18n.d.ts +172 -0
  47. package/dist/types-ts4.0/components/picker/CategorySelector.d.ts +21 -0
  48. package/dist/types-ts4.0/components/picker/CategoryTracker.d.ts +17 -0
  49. package/dist/types-ts4.0/components/picker/EmojiPicker.d.ts +32 -0
  50. package/dist/types-ts4.0/components/picker/EmojiPickerCategoryHeading.d.ts +8 -0
  51. package/dist/types-ts4.0/components/picker/EmojiPickerComponent.d.ts +28 -0
  52. package/dist/types-ts4.0/components/picker/EmojiPickerEmojiRow.d.ts +12 -0
  53. package/dist/types-ts4.0/components/picker/EmojiPickerFooter.d.ts +7 -0
  54. package/dist/types-ts4.0/components/picker/EmojiPickerList.d.ts +72 -0
  55. package/dist/types-ts4.0/components/picker/EmojiPickerListSearch.d.ts +12 -0
  56. package/dist/types-ts4.0/components/picker/EmojiPickerSizes.d.ts +11 -0
  57. package/dist/types-ts4.0/components/picker/EmojiPickerVirtualItems.d.ts +41 -0
  58. package/dist/types-ts4.0/components/picker/categories.d.ts +7 -0
  59. package/dist/types-ts4.0/components/picker/styles.d.ts +18 -0
  60. package/dist/types-ts4.0/components/typeahead/EmojiTypeAhead.d.ts +27 -0
  61. package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadComponent.d.ts +72 -0
  62. package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadItem.d.ts +14 -0
  63. package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadList.d.ts +35 -0
  64. package/dist/types-ts4.0/components/typeahead/styles.d.ts +10 -0
  65. package/dist/types-ts4.0/components/uploader/EmojiUploadComponent.d.ts +13 -0
  66. package/dist/types-ts4.0/components/uploader/EmojiUploader.d.ts +20 -0
  67. package/dist/types-ts4.0/components/uploader/styles.d.ts +2 -0
  68. package/dist/types-ts4.0/context/EmojiContext.d.ts +4 -0
  69. package/dist/types-ts4.0/context/EmojiContextProvider.d.ts +7 -0
  70. package/dist/types-ts4.0/context/LegacyEmojiContextProvider.d.ts +22 -0
  71. package/dist/types-ts4.0/element.d.ts +3 -0
  72. package/dist/types-ts4.0/hooks/useEmojiContext.d.ts +1 -0
  73. package/dist/types-ts4.0/hooks/usePrevious.d.ts +1 -0
  74. package/dist/types-ts4.0/i18n/cs.d.ts +43 -0
  75. package/dist/types-ts4.0/i18n/da.d.ts +43 -0
  76. package/dist/types-ts4.0/i18n/de.d.ts +43 -0
  77. package/dist/types-ts4.0/i18n/en.d.ts +33 -0
  78. package/dist/types-ts4.0/i18n/en_GB.d.ts +33 -0
  79. package/dist/types-ts4.0/i18n/en_ZZ.d.ts +43 -0
  80. package/dist/types-ts4.0/i18n/es.d.ts +43 -0
  81. package/dist/types-ts4.0/i18n/et.d.ts +39 -0
  82. package/dist/types-ts4.0/i18n/fi.d.ts +43 -0
  83. package/dist/types-ts4.0/i18n/fr.d.ts +43 -0
  84. package/dist/types-ts4.0/i18n/hu.d.ts +43 -0
  85. package/dist/types-ts4.0/i18n/index.d.ts +35 -0
  86. package/dist/types-ts4.0/i18n/is.d.ts +33 -0
  87. package/dist/types-ts4.0/i18n/it.d.ts +43 -0
  88. package/dist/types-ts4.0/i18n/ja.d.ts +43 -0
  89. package/dist/types-ts4.0/i18n/ko.d.ts +43 -0
  90. package/dist/types-ts4.0/i18n/languages.d.ts +27 -0
  91. package/dist/types-ts4.0/i18n/nb.d.ts +43 -0
  92. package/dist/types-ts4.0/i18n/nl.d.ts +43 -0
  93. package/dist/types-ts4.0/i18n/pl.d.ts +43 -0
  94. package/dist/types-ts4.0/i18n/pt_BR.d.ts +43 -0
  95. package/dist/types-ts4.0/i18n/pt_PT.d.ts +39 -0
  96. package/dist/types-ts4.0/i18n/ro.d.ts +33 -0
  97. package/dist/types-ts4.0/i18n/ru.d.ts +43 -0
  98. package/dist/types-ts4.0/i18n/sk.d.ts +39 -0
  99. package/dist/types-ts4.0/i18n/sv.d.ts +43 -0
  100. package/dist/types-ts4.0/i18n/th.d.ts +43 -0
  101. package/dist/types-ts4.0/i18n/tr.d.ts +43 -0
  102. package/dist/types-ts4.0/i18n/uk.d.ts +43 -0
  103. package/dist/types-ts4.0/i18n/vi.d.ts +43 -0
  104. package/dist/types-ts4.0/i18n/zh.d.ts +43 -0
  105. package/dist/types-ts4.0/i18n/zh_TW.d.ts +43 -0
  106. package/dist/types-ts4.0/index.d.ts +25 -0
  107. package/dist/types-ts4.0/picker.d.ts +1 -0
  108. package/dist/types-ts4.0/resource.d.ts +5 -0
  109. package/dist/types-ts4.0/typeahead.d.ts +2 -0
  110. package/dist/types-ts4.0/types.d.ts +357 -0
  111. package/dist/types-ts4.0/util/DuplicateLimitedQueue.d.ts +91 -0
  112. package/dist/types-ts4.0/util/StoredDuplicateLimitedQueue.d.ts +46 -0
  113. package/dist/types-ts4.0/util/analytics/analytics.d.ts +61 -0
  114. package/dist/types-ts4.0/util/analytics/index.d.ts +6 -0
  115. package/dist/types-ts4.0/util/analytics/samplingUfo.d.ts +31 -0
  116. package/dist/types-ts4.0/util/analytics/ufoExperiences.d.ts +14 -0
  117. package/dist/types-ts4.0/util/analytics/useSampledUFOComponentExperience.d.ts +8 -0
  118. package/dist/types-ts4.0/util/browser-support.d.ts +1 -0
  119. package/dist/types-ts4.0/util/constants.d.ts +25 -0
  120. package/dist/types-ts4.0/util/filters.d.ts +8 -0
  121. package/dist/types-ts4.0/util/image.d.ts +10 -0
  122. package/dist/types-ts4.0/util/logger.d.ts +4 -0
  123. package/dist/types-ts4.0/util/mouse.d.ts +8 -0
  124. package/dist/types-ts4.0/util/shared-styles.d.ts +11 -0
  125. package/dist/types-ts4.0/util/storage-available.d.ts +3 -0
  126. package/dist/types-ts4.0/util/type-helpers.d.ts +23 -0
  127. package/dist/types-ts4.0/util/useInView.d.ts +7 -0
  128. package/dist/types-ts4.0/utils.d.ts +3 -0
  129. package/element/package.json +8 -1
  130. package/package.json +15 -8
  131. package/picker/package.json +8 -1
  132. package/resource/package.json +8 -1
  133. package/typeahead/package.json +8 -1
  134. package/types/package.json +8 -1
  135. 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';
@@ -0,0 +1,2 @@
1
+ export { default as EmojiTypeAhead } from './components/typeahead/EmojiTypeAhead';
2
+ export { default as EmojiTypeAheadList } from './components/typeahead/EmojiTypeAheadList';