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