@atlaskit/util-data-test 17.8.2 → 17.8.4

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 (627) hide show
  1. package/.eslintrc.js +6 -0
  2. package/CHANGELOG.md +12 -0
  3. package/dist/cjs/emoji/emoji-repository-usage-clear.js +1 -1
  4. package/dist/cjs/emoji/get-atlassian-emojis.js +1 -1
  5. package/dist/cjs/emoji/get-emoji-provider.js +2 -2
  6. package/dist/cjs/emoji/get-emoji-repository.js +1 -1
  7. package/dist/cjs/emoji/get-emoji-resource-standard-atlassian.js +1 -1
  8. package/dist/cjs/emoji/get-emojis.js +1 -1
  9. package/dist/cjs/emoji/get-site-emojis.js +1 -1
  10. package/dist/cjs/emoji/get-standard-emojis.js +1 -1
  11. package/dist/cjs/emoji-test/get-test-emojis.js +1 -1
  12. package/dist/cjs/emoji-test/test-emoji-repository.js +2 -2
  13. package/dist/cjs/mention/create-mock-mention-name-resolver.js +1 -1
  14. package/dist/cjs/mention/mock-mention-name-client.js +1 -1
  15. package/dist/cjs/mention/mock-mention-resource-with-info-hints.js +1 -1
  16. package/dist/cjs/mention/mock-mention-resource.js +1 -1
  17. package/dist/cjs/mention/mock-presence-resource.js +1 -1
  18. package/dist/cjs/version.json +1 -1
  19. package/dist/es2019/emoji/emoji-repository-usage-clear.js +1 -1
  20. package/dist/es2019/emoji/get-atlassian-emojis.js +1 -1
  21. package/dist/es2019/emoji/get-emoji-provider.js +2 -2
  22. package/dist/es2019/emoji/get-emoji-repository.js +1 -1
  23. package/dist/es2019/emoji/get-emoji-resource-standard-atlassian.js +1 -1
  24. package/dist/es2019/emoji/get-emojis.js +1 -1
  25. package/dist/es2019/emoji/get-site-emojis.js +1 -1
  26. package/dist/es2019/emoji/get-standard-emojis.js +1 -1
  27. package/dist/es2019/emoji-test/get-test-emojis.js +1 -1
  28. package/dist/es2019/emoji-test/test-emoji-repository.js +2 -2
  29. package/dist/es2019/mention/create-mock-mention-name-resolver.js +1 -1
  30. package/dist/es2019/mention/mock-mention-name-client.js +1 -1
  31. package/dist/es2019/mention/mock-mention-resource-with-info-hints.js +1 -1
  32. package/dist/es2019/mention/mock-mention-resource.js +1 -1
  33. package/dist/es2019/mention/mock-presence-resource.js +1 -1
  34. package/dist/es2019/version.json +1 -1
  35. package/dist/esm/emoji/emoji-repository-usage-clear.js +1 -1
  36. package/dist/esm/emoji/get-atlassian-emojis.js +1 -1
  37. package/dist/esm/emoji/get-emoji-provider.js +2 -2
  38. package/dist/esm/emoji/get-emoji-repository.js +1 -1
  39. package/dist/esm/emoji/get-emoji-resource-standard-atlassian.js +1 -1
  40. package/dist/esm/emoji/get-emojis.js +1 -1
  41. package/dist/esm/emoji/get-site-emojis.js +1 -1
  42. package/dist/esm/emoji/get-standard-emojis.js +1 -1
  43. package/dist/esm/emoji-test/get-test-emojis.js +1 -1
  44. package/dist/esm/emoji-test/test-emoji-repository.js +2 -2
  45. package/dist/esm/mention/create-mock-mention-name-resolver.js +1 -1
  46. package/dist/esm/mention/mock-mention-name-client.js +1 -1
  47. package/dist/esm/mention/mock-mention-resource-with-info-hints.js +1 -1
  48. package/dist/esm/mention/mock-mention-resource.js +1 -1
  49. package/dist/esm/mention/mock-presence-resource.js +1 -1
  50. package/dist/esm/version.json +1 -1
  51. package/dist/types/emoji/src/api/EmojiLoader.d.ts +13 -0
  52. package/dist/types/emoji/src/api/EmojiRepository.d.ts +72 -0
  53. package/dist/types/emoji/src/api/EmojiRepositoryRegex.d.ts +1 -0
  54. package/dist/types/emoji/src/api/EmojiResource.d.ts +139 -0
  55. package/dist/types/emoji/src/api/EmojiUtils.d.ts +24 -0
  56. package/dist/types/emoji/src/api/internal/Comparators.d.ts +109 -0
  57. package/dist/types/emoji/src/api/internal/UsageFrequencyTracker.d.ts +46 -0
  58. package/dist/types/emoji/src/api/media/MediaEmojiCache.d.ts +53 -0
  59. package/dist/types/emoji/src/api/media/MediaImageLoader.d.ts +21 -0
  60. package/dist/types/emoji/src/api/media/SiteEmojiResource.d.ts +46 -0
  61. package/dist/types/emoji/src/api/media/TokenManager.d.ts +13 -0
  62. package/dist/types/emoji/src/components/i18n.d.ts +227 -0
  63. package/dist/types/emoji/src/components/picker/categories.d.ts +7 -0
  64. package/dist/types/emoji/src/resource.d.ts +5 -0
  65. package/dist/types/emoji/src/types.d.ts +363 -0
  66. package/dist/types/emoji/src/util/DuplicateLimitedQueue.d.ts +91 -0
  67. package/dist/types/emoji/src/util/StoredDuplicateLimitedQueue.d.ts +46 -0
  68. package/dist/types/emoji/src/util/analytics/samplingUfo.d.ts +38 -0
  69. package/dist/types/emoji/src/util/analytics/ufoExperiences.d.ts +14 -0
  70. package/dist/types/emoji/src/util/constants.d.ts +60 -0
  71. package/dist/types/emoji/src/util/image.d.ts +10 -0
  72. package/dist/types/emoji/src/util/logger.d.ts +4 -0
  73. package/dist/types/emoji/src/util/storage-available.d.ts +3 -0
  74. package/dist/types/emoji/src/util/type-helpers.d.ts +23 -0
  75. package/dist/types/emoji/src/utils.d.ts +3 -0
  76. package/dist/types/mention/src/_constants.d.ts +1 -0
  77. package/dist/types/mention/src/api/ContextMentionResource.d.ts +23 -0
  78. package/dist/types/mention/src/api/MentionNameClient.d.ts +11 -0
  79. package/dist/types/mention/src/api/MentionNameResolver.d.ts +23 -0
  80. package/dist/types/mention/src/api/MentionResource.d.ts +93 -0
  81. package/dist/types/mention/src/api/PresenceResource.d.ts +119 -0
  82. package/dist/types/mention/src/api/TeamMentionResource.d.ts +33 -0
  83. package/dist/types/mention/src/components/LockCircleIcon/index.d.ts +3 -0
  84. package/dist/types/mention/src/components/Mention/PrimitiveMention.d.ts +7 -0
  85. package/dist/types/mention/src/components/Mention/ResourcedMention.d.ts +27 -0
  86. package/dist/types/mention/src/components/Mention/index.d.ts +31 -0
  87. package/dist/types/mention/src/components/Mention/ufoExperiences.d.ts +9 -0
  88. package/dist/types/mention/src/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +7 -0
  89. package/dist/types/mention/src/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +5 -0
  90. package/dist/types/mention/src/components/MentionDescriptionByline/index.d.ts +5 -0
  91. package/dist/types/mention/src/components/MentionDescriptionByline/styles.d.ts +5 -0
  92. package/dist/types/mention/src/components/MentionDescriptionByline/types.d.ts +4 -0
  93. package/dist/types/mention/src/components/MentionItem/MentionHighlightHelpers.d.ts +3 -0
  94. package/dist/types/mention/src/components/MentionItem/index.d.ts +16 -0
  95. package/dist/types/mention/src/components/MentionItem/styles.d.ts +46 -0
  96. package/dist/types/mention/src/components/MentionList/index.d.ts +41 -0
  97. package/dist/types/mention/src/components/MentionList/styles.d.ts +8 -0
  98. package/dist/types/mention/src/components/MentionListError/GenericErrorIllustration.d.ts +7 -0
  99. package/dist/types/mention/src/components/MentionListError/index.d.ts +13 -0
  100. package/dist/types/mention/src/components/MentionListError/styles.d.ts +17 -0
  101. package/dist/types/mention/src/components/MentionPicker/index.d.ts +77 -0
  102. package/dist/types/mention/src/components/MentionPicker/styles.d.ts +12 -0
  103. package/dist/types/mention/src/components/MessagesIntlProvider/index.d.ts +3 -0
  104. package/dist/types/mention/src/components/NoAccessTooltip/index.d.ts +6 -0
  105. package/dist/types/mention/src/components/NoAccessTooltip/main.d.ts +7 -0
  106. package/dist/types/mention/src/components/Popup/index.d.ts +26 -0
  107. package/dist/types/mention/src/components/ResourcedMentionList/index.d.ts +46 -0
  108. package/dist/types/mention/src/components/Scrollable/index.d.ts +11 -0
  109. package/dist/types/mention/src/components/Scrollable/styles.d.ts +5 -0
  110. package/dist/types/mention/src/components/i18n.d.ts +57 -0
  111. package/dist/types/mention/src/i18n/cs.d.ts +20 -0
  112. package/dist/types/mention/src/i18n/da.d.ts +20 -0
  113. package/dist/types/mention/src/i18n/de.d.ts +20 -0
  114. package/dist/types/mention/src/i18n/en.d.ts +20 -0
  115. package/dist/types/mention/src/i18n/en_GB.d.ts +20 -0
  116. package/dist/types/mention/src/i18n/es.d.ts +20 -0
  117. package/dist/types/mention/src/i18n/et.d.ts +20 -0
  118. package/dist/types/mention/src/i18n/fi.d.ts +20 -0
  119. package/dist/types/mention/src/i18n/fr.d.ts +20 -0
  120. package/dist/types/mention/src/i18n/hu.d.ts +20 -0
  121. package/dist/types/mention/src/i18n/is.d.ts +24 -0
  122. package/dist/types/mention/src/i18n/it.d.ts +20 -0
  123. package/dist/types/mention/src/i18n/ja.d.ts +20 -0
  124. package/dist/types/mention/src/i18n/ko.d.ts +20 -0
  125. package/dist/types/mention/src/i18n/nb.d.ts +20 -0
  126. package/dist/types/mention/src/i18n/nl.d.ts +20 -0
  127. package/dist/types/mention/src/i18n/pl.d.ts +20 -0
  128. package/dist/types/mention/src/i18n/pt_BR.d.ts +20 -0
  129. package/dist/types/mention/src/i18n/pt_PT.d.ts +20 -0
  130. package/dist/types/mention/src/i18n/ro.d.ts +24 -0
  131. package/dist/types/mention/src/i18n/ru.d.ts +20 -0
  132. package/dist/types/mention/src/i18n/sk.d.ts +20 -0
  133. package/dist/types/mention/src/i18n/sv.d.ts +20 -0
  134. package/dist/types/mention/src/i18n/th.d.ts +20 -0
  135. package/dist/types/mention/src/i18n/tr.d.ts +20 -0
  136. package/dist/types/mention/src/i18n/uk.d.ts +20 -0
  137. package/dist/types/mention/src/i18n/vi.d.ts +20 -0
  138. package/dist/types/mention/src/i18n/zh.d.ts +20 -0
  139. package/dist/types/mention/src/i18n/zh_TW.d.ts +20 -0
  140. package/dist/types/mention/src/index.d.ts +17 -0
  141. package/dist/types/mention/src/resource.d.ts +10 -0
  142. package/dist/types/mention/src/shared-styles.d.ts +5 -0
  143. package/dist/types/mention/src/types.d.ts +168 -0
  144. package/dist/types/mention/src/util/analytics.d.ts +30 -0
  145. package/dist/types/mention/src/util/i18n.d.ts +29 -0
  146. package/dist/types/mention/src/util/id.d.ts +2 -0
  147. package/dist/types/mention/src/util/index.d.ts +1 -0
  148. package/dist/types/mention/src/util/logger.d.ts +4 -0
  149. package/dist/types/mention/src/util/mouse.d.ts +8 -0
  150. package/dist/types/task-decision/src/analytics/index.d.ts +2 -0
  151. package/dist/types/task-decision/src/api/TaskDecisionResource.d.ts +67 -0
  152. package/dist/types/task-decision/src/api/TaskDecisionUtils.d.ts +4 -0
  153. package/dist/types/task-decision/src/components/DecisionItem.d.ts +15 -0
  154. package/dist/types/task-decision/src/components/DecisionList.d.ts +9 -0
  155. package/dist/types/task-decision/src/components/Item.d.ts +25 -0
  156. package/dist/types/task-decision/src/components/ResourcedTaskItem.d.ts +35 -0
  157. package/dist/types/task-decision/src/components/TaskItem.d.ts +21 -0
  158. package/dist/types/task-decision/src/components/TaskList.d.ts +9 -0
  159. package/dist/types/task-decision/src/components/styles.d.ts +13 -0
  160. package/dist/types/task-decision/src/components/theme.d.ts +61 -0
  161. package/dist/types/task-decision/src/index.d.ts +9 -0
  162. package/dist/types/task-decision/src/type-helpers.d.ts +6 -0
  163. package/dist/types/task-decision/src/types.d.ts +160 -0
  164. package/dist/types/user-picker/src/analytics.d.ts +24 -0
  165. package/dist/types/user-picker/src/clients/UserSourceProvider.d.ts +11 -0
  166. package/dist/types/user-picker/src/components/AddOptionAvatar.d.ts +6 -0
  167. package/dist/types/user-picker/src/components/AvatarItemOption.d.ts +13 -0
  168. package/dist/types/user-picker/src/components/BaseUserPicker.d.ts +65 -0
  169. package/dist/types/user-picker/src/components/ClearIndicator.d.ts +6 -0
  170. package/dist/types/user-picker/src/components/CustomOption/index.d.ts +3 -0
  171. package/dist/types/user-picker/src/components/CustomOption/main.d.ts +15 -0
  172. package/dist/types/user-picker/src/components/EmailOption/index.d.ts +3 -0
  173. package/dist/types/user-picker/src/components/EmailOption/main.d.ts +18 -0
  174. package/dist/types/user-picker/src/components/ExternalUserOption/ExternalAvatarItemOption.d.ts +11 -0
  175. package/dist/types/user-picker/src/components/ExternalUserOption/InfoIcon.d.ts +3 -0
  176. package/dist/types/user-picker/src/components/ExternalUserOption/SourcesTooltipContent.d.ts +6 -0
  177. package/dist/types/user-picker/src/components/ExternalUserOption/index.d.ts +3 -0
  178. package/dist/types/user-picker/src/components/ExternalUserOption/main.d.ts +12 -0
  179. package/dist/types/user-picker/src/components/ExternalUserSourcesContainer.d.ts +15 -0
  180. package/dist/types/user-picker/src/components/GroupOption/index.d.ts +3 -0
  181. package/dist/types/user-picker/src/components/GroupOption/main.d.ts +16 -0
  182. package/dist/types/user-picker/src/components/HighlightText.d.ts +9 -0
  183. package/dist/types/user-picker/src/components/Input.d.ts +22 -0
  184. package/dist/types/user-picker/src/components/Menu.d.ts +10 -0
  185. package/dist/types/user-picker/src/components/MessagesIntlProvider.d.ts +3 -0
  186. package/dist/types/user-picker/src/components/MultiValue.d.ts +26 -0
  187. package/dist/types/user-picker/src/components/MultiValueContainer.d.ts +30 -0
  188. package/dist/types/user-picker/src/components/Option.d.ts +14 -0
  189. package/dist/types/user-picker/src/components/PopupControl.d.ts +7 -0
  190. package/dist/types/user-picker/src/components/PopupInput.d.ts +8 -0
  191. package/dist/types/user-picker/src/components/PopupUserPicker.d.ts +39 -0
  192. package/dist/types/user-picker/src/components/SingleValue.d.ts +5 -0
  193. package/dist/types/user-picker/src/components/SingleValueContainer.d.ts +9 -0
  194. package/dist/types/user-picker/src/components/SizeableAvatar.d.ts +10 -0
  195. package/dist/types/user-picker/src/components/TeamOption/index.d.ts +3 -0
  196. package/dist/types/user-picker/src/components/TeamOption/main.d.ts +16 -0
  197. package/dist/types/user-picker/src/components/UserOption.d.ts +15 -0
  198. package/dist/types/user-picker/src/components/UserPicker.d.ts +16 -0
  199. package/dist/types/user-picker/src/components/assets/github.d.ts +2 -0
  200. package/dist/types/user-picker/src/components/assets/google.d.ts +2 -0
  201. package/dist/types/user-picker/src/components/assets/microsoft.d.ts +2 -0
  202. package/dist/types/user-picker/src/components/assets/slack.d.ts +2 -0
  203. package/dist/types/user-picker/src/components/batch.d.ts +1 -0
  204. package/dist/types/user-picker/src/components/components.d.ts +49 -0
  205. package/dist/types/user-picker/src/components/creatable.d.ts +12 -0
  206. package/dist/types/user-picker/src/components/creatableEmailSuggestion.d.ts +19 -0
  207. package/dist/types/user-picker/src/components/emailValidation.d.ts +3 -0
  208. package/dist/types/user-picker/src/components/i18n.d.ts +132 -0
  209. package/dist/types/user-picker/src/components/popup.d.ts +48 -0
  210. package/dist/types/user-picker/src/components/styles.d.ts +42 -0
  211. package/dist/types/user-picker/src/components/utils.d.ts +29 -0
  212. package/dist/types/user-picker/src/i18n/cs.d.ts +35 -0
  213. package/dist/types/user-picker/src/i18n/da.d.ts +35 -0
  214. package/dist/types/user-picker/src/i18n/de.d.ts +35 -0
  215. package/dist/types/user-picker/src/i18n/en.d.ts +35 -0
  216. package/dist/types/user-picker/src/i18n/en_GB.d.ts +35 -0
  217. package/dist/types/user-picker/src/i18n/es.d.ts +35 -0
  218. package/dist/types/user-picker/src/i18n/et.d.ts +15 -0
  219. package/dist/types/user-picker/src/i18n/fi.d.ts +35 -0
  220. package/dist/types/user-picker/src/i18n/fr.d.ts +35 -0
  221. package/dist/types/user-picker/src/i18n/hu.d.ts +35 -0
  222. package/dist/types/user-picker/src/i18n/is.d.ts +7 -0
  223. package/dist/types/user-picker/src/i18n/it.d.ts +35 -0
  224. package/dist/types/user-picker/src/i18n/ja.d.ts +35 -0
  225. package/dist/types/user-picker/src/i18n/ko.d.ts +35 -0
  226. package/dist/types/user-picker/src/i18n/nb.d.ts +35 -0
  227. package/dist/types/user-picker/src/i18n/nl.d.ts +35 -0
  228. package/dist/types/user-picker/src/i18n/pl.d.ts +35 -0
  229. package/dist/types/user-picker/src/i18n/pt_BR.d.ts +35 -0
  230. package/dist/types/user-picker/src/i18n/pt_PT.d.ts +15 -0
  231. package/dist/types/user-picker/src/i18n/ro.d.ts +7 -0
  232. package/dist/types/user-picker/src/i18n/ru.d.ts +35 -0
  233. package/dist/types/user-picker/src/i18n/sk.d.ts +15 -0
  234. package/dist/types/user-picker/src/i18n/sv.d.ts +35 -0
  235. package/dist/types/user-picker/src/i18n/th.d.ts +35 -0
  236. package/dist/types/user-picker/src/i18n/tr.d.ts +35 -0
  237. package/dist/types/user-picker/src/i18n/uk.d.ts +35 -0
  238. package/dist/types/user-picker/src/i18n/vi.d.ts +35 -0
  239. package/dist/types/user-picker/src/i18n/zh.d.ts +35 -0
  240. package/dist/types/user-picker/src/i18n/zh_TW.d.ts +35 -0
  241. package/dist/types/user-picker/src/index.d.ts +7 -0
  242. package/dist/types/user-picker/src/types.d.ts +318 -0
  243. package/dist/types/user-picker/src/util/i18n-util.d.ts +11 -0
  244. package/dist/types/user-picker/src/util/ufoExperiences.d.ts +10 -0
  245. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-from-upload.d.ts +1 -1
  246. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-repository-usage-clear.d.ts +2 -2
  247. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-resource-usage-clear.d.ts +1 -1
  248. package/dist/types/{emoji → util-data-test/src/emoji}/get-atlassian-emoji-data.d.ts +1 -1
  249. package/dist/types/util-data-test/src/emoji/get-atlassian-emojis.d.ts +1 -0
  250. package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-provider.d.ts +1 -1
  251. package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-repository.d.ts +1 -1
  252. package/dist/types/util-data-test/src/emoji/get-emojis.d.ts +1 -0
  253. package/dist/types/{emoji → util-data-test/src/emoji}/get-site-emoji-data.d.ts +1 -1
  254. package/dist/types/util-data-test/src/emoji/get-site-emojis.d.ts +1 -0
  255. package/dist/types/{emoji → util-data-test/src/emoji}/get-standard-emoji-data.d.ts +1 -1
  256. package/dist/types/util-data-test/src/emoji/get-standard-emojis.d.ts +1 -0
  257. package/dist/types/{emoji → util-data-test/src/emoji}/mock-emoji-resource-factory.d.ts +1 -1
  258. package/dist/types/{emoji → util-data-test/src/emoji}/mock-emoji-resource.d.ts +2 -2
  259. package/dist/types/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
  260. package/dist/types/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource.d.ts +2 -2
  261. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/types.d.ts +1 -1
  262. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji-test/filter-to-searchable.d.ts +1 -1
  263. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
  264. package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emojis.d.ts +1 -1
  265. package/dist/types/util-data-test/src/emoji-test/get-test-searchable-emojis.d.ts +1 -0
  266. package/dist/types/util-data-test/src/emoji-test/test-emoji-repository.d.ts +5 -0
  267. package/dist/types/util-data-test/src/logger.d.ts +4 -0
  268. package/dist/types/{mention → util-data-test/src/mention}/create-mock-mention-name-resolver.d.ts +1 -1
  269. package/dist/{types-ts4.5 → types/util-data-test/src}/mention/mock-mention-name-client.d.ts +1 -1
  270. package/dist/types/{mention → util-data-test/src/mention}/mock-mention-resource-with-info-hints.d.ts +1 -1
  271. package/dist/{types-ts4.5 → types/util-data-test/src}/mention/mock-mention-resource.d.ts +2 -2
  272. package/dist/types/{mention → util-data-test/src/mention}/mock-presence-resource.d.ts +1 -1
  273. package/dist/types/{task-decision → util-data-test/src/task-decision}/mock-task-decision-resource.d.ts +1 -1
  274. package/dist/types/{task-decision → util-data-test/src/task-decision}/utils.d.ts +2 -2
  275. package/dist/types/util-data-test/src/user-picker/ChevronRight.d.ts +3 -0
  276. package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-custom-data.d.ts +1 -1
  277. package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-team-data.d.ts +1 -1
  278. package/dist/types-ts4.5/emoji/src/api/EmojiLoader.d.ts +13 -0
  279. package/dist/types-ts4.5/emoji/src/api/EmojiRepository.d.ts +72 -0
  280. package/dist/types-ts4.5/emoji/src/api/EmojiRepositoryRegex.d.ts +1 -0
  281. package/dist/types-ts4.5/emoji/src/api/EmojiResource.d.ts +139 -0
  282. package/dist/types-ts4.5/emoji/src/api/EmojiUtils.d.ts +24 -0
  283. package/dist/types-ts4.5/emoji/src/api/internal/Comparators.d.ts +109 -0
  284. package/dist/types-ts4.5/emoji/src/api/internal/UsageFrequencyTracker.d.ts +46 -0
  285. package/dist/types-ts4.5/emoji/src/api/media/MediaEmojiCache.d.ts +53 -0
  286. package/dist/types-ts4.5/emoji/src/api/media/MediaImageLoader.d.ts +21 -0
  287. package/dist/types-ts4.5/emoji/src/api/media/SiteEmojiResource.d.ts +46 -0
  288. package/dist/types-ts4.5/emoji/src/api/media/TokenManager.d.ts +13 -0
  289. package/dist/types-ts4.5/emoji/src/components/i18n.d.ts +227 -0
  290. package/dist/types-ts4.5/emoji/src/components/picker/categories.d.ts +7 -0
  291. package/dist/types-ts4.5/emoji/src/resource.d.ts +5 -0
  292. package/dist/types-ts4.5/emoji/src/types.d.ts +363 -0
  293. package/dist/types-ts4.5/emoji/src/util/DuplicateLimitedQueue.d.ts +91 -0
  294. package/dist/types-ts4.5/emoji/src/util/StoredDuplicateLimitedQueue.d.ts +46 -0
  295. package/dist/types-ts4.5/emoji/src/util/analytics/samplingUfo.d.ts +38 -0
  296. package/dist/types-ts4.5/emoji/src/util/analytics/ufoExperiences.d.ts +14 -0
  297. package/dist/types-ts4.5/emoji/src/util/constants.d.ts +60 -0
  298. package/dist/types-ts4.5/emoji/src/util/image.d.ts +10 -0
  299. package/dist/types-ts4.5/emoji/src/util/storage-available.d.ts +3 -0
  300. package/dist/types-ts4.5/emoji/src/util/type-helpers.d.ts +23 -0
  301. package/dist/types-ts4.5/emoji/src/utils.d.ts +3 -0
  302. package/dist/types-ts4.5/mention/src/_constants.d.ts +1 -0
  303. package/dist/types-ts4.5/mention/src/api/ContextMentionResource.d.ts +23 -0
  304. package/dist/types-ts4.5/mention/src/api/MentionNameClient.d.ts +11 -0
  305. package/dist/types-ts4.5/mention/src/api/MentionNameResolver.d.ts +23 -0
  306. package/dist/types-ts4.5/mention/src/api/MentionResource.d.ts +93 -0
  307. package/dist/types-ts4.5/mention/src/api/PresenceResource.d.ts +119 -0
  308. package/dist/types-ts4.5/mention/src/api/TeamMentionResource.d.ts +33 -0
  309. package/dist/types-ts4.5/mention/src/components/LockCircleIcon/index.d.ts +3 -0
  310. package/dist/types-ts4.5/mention/src/components/Mention/PrimitiveMention.d.ts +7 -0
  311. package/dist/types-ts4.5/mention/src/components/Mention/ResourcedMention.d.ts +27 -0
  312. package/dist/types-ts4.5/mention/src/components/Mention/index.d.ts +31 -0
  313. package/dist/types-ts4.5/mention/src/components/Mention/ufoExperiences.d.ts +9 -0
  314. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +7 -0
  315. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +5 -0
  316. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/index.d.ts +5 -0
  317. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/styles.d.ts +5 -0
  318. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/types.d.ts +4 -0
  319. package/dist/types-ts4.5/mention/src/components/MentionItem/MentionHighlightHelpers.d.ts +3 -0
  320. package/dist/types-ts4.5/mention/src/components/MentionItem/index.d.ts +16 -0
  321. package/dist/types-ts4.5/mention/src/components/MentionItem/styles.d.ts +46 -0
  322. package/dist/types-ts4.5/mention/src/components/MentionList/index.d.ts +41 -0
  323. package/dist/types-ts4.5/mention/src/components/MentionList/styles.d.ts +8 -0
  324. package/dist/types-ts4.5/mention/src/components/MentionListError/GenericErrorIllustration.d.ts +7 -0
  325. package/dist/types-ts4.5/mention/src/components/MentionListError/index.d.ts +13 -0
  326. package/dist/types-ts4.5/mention/src/components/MentionListError/styles.d.ts +17 -0
  327. package/dist/types-ts4.5/mention/src/components/MentionPicker/index.d.ts +77 -0
  328. package/dist/types-ts4.5/mention/src/components/MentionPicker/styles.d.ts +12 -0
  329. package/dist/types-ts4.5/mention/src/components/MessagesIntlProvider/index.d.ts +3 -0
  330. package/dist/types-ts4.5/mention/src/components/NoAccessTooltip/index.d.ts +6 -0
  331. package/dist/types-ts4.5/mention/src/components/NoAccessTooltip/main.d.ts +7 -0
  332. package/dist/types-ts4.5/mention/src/components/Popup/index.d.ts +26 -0
  333. package/dist/types-ts4.5/mention/src/components/ResourcedMentionList/index.d.ts +46 -0
  334. package/dist/types-ts4.5/mention/src/components/Scrollable/index.d.ts +11 -0
  335. package/dist/types-ts4.5/mention/src/components/Scrollable/styles.d.ts +5 -0
  336. package/dist/types-ts4.5/mention/src/components/i18n.d.ts +57 -0
  337. package/dist/types-ts4.5/mention/src/i18n/cs.d.ts +20 -0
  338. package/dist/types-ts4.5/mention/src/i18n/da.d.ts +20 -0
  339. package/dist/types-ts4.5/mention/src/i18n/de.d.ts +20 -0
  340. package/dist/types-ts4.5/mention/src/i18n/en.d.ts +20 -0
  341. package/dist/types-ts4.5/mention/src/i18n/en_GB.d.ts +20 -0
  342. package/dist/types-ts4.5/mention/src/i18n/es.d.ts +20 -0
  343. package/dist/types-ts4.5/mention/src/i18n/et.d.ts +20 -0
  344. package/dist/types-ts4.5/mention/src/i18n/fi.d.ts +20 -0
  345. package/dist/types-ts4.5/mention/src/i18n/fr.d.ts +20 -0
  346. package/dist/types-ts4.5/mention/src/i18n/hu.d.ts +20 -0
  347. package/dist/types-ts4.5/mention/src/i18n/is.d.ts +24 -0
  348. package/dist/types-ts4.5/mention/src/i18n/it.d.ts +20 -0
  349. package/dist/types-ts4.5/mention/src/i18n/ja.d.ts +20 -0
  350. package/dist/types-ts4.5/mention/src/i18n/ko.d.ts +20 -0
  351. package/dist/types-ts4.5/mention/src/i18n/nb.d.ts +20 -0
  352. package/dist/types-ts4.5/mention/src/i18n/nl.d.ts +20 -0
  353. package/dist/types-ts4.5/mention/src/i18n/pl.d.ts +20 -0
  354. package/dist/types-ts4.5/mention/src/i18n/pt_BR.d.ts +20 -0
  355. package/dist/types-ts4.5/mention/src/i18n/pt_PT.d.ts +20 -0
  356. package/dist/types-ts4.5/mention/src/i18n/ro.d.ts +24 -0
  357. package/dist/types-ts4.5/mention/src/i18n/ru.d.ts +20 -0
  358. package/dist/types-ts4.5/mention/src/i18n/sk.d.ts +20 -0
  359. package/dist/types-ts4.5/mention/src/i18n/sv.d.ts +20 -0
  360. package/dist/types-ts4.5/mention/src/i18n/th.d.ts +20 -0
  361. package/dist/types-ts4.5/mention/src/i18n/tr.d.ts +20 -0
  362. package/dist/types-ts4.5/mention/src/i18n/uk.d.ts +20 -0
  363. package/dist/types-ts4.5/mention/src/i18n/vi.d.ts +20 -0
  364. package/dist/types-ts4.5/mention/src/i18n/zh.d.ts +20 -0
  365. package/dist/types-ts4.5/mention/src/i18n/zh_TW.d.ts +20 -0
  366. package/dist/types-ts4.5/mention/src/index.d.ts +17 -0
  367. package/dist/types-ts4.5/mention/src/resource.d.ts +10 -0
  368. package/dist/types-ts4.5/mention/src/shared-styles.d.ts +5 -0
  369. package/dist/types-ts4.5/mention/src/types.d.ts +168 -0
  370. package/dist/types-ts4.5/mention/src/util/analytics.d.ts +30 -0
  371. package/dist/types-ts4.5/mention/src/util/i18n.d.ts +29 -0
  372. package/dist/types-ts4.5/mention/src/util/id.d.ts +2 -0
  373. package/dist/types-ts4.5/mention/src/util/index.d.ts +1 -0
  374. package/dist/types-ts4.5/mention/src/util/mouse.d.ts +8 -0
  375. package/dist/types-ts4.5/task-decision/src/analytics/index.d.ts +2 -0
  376. package/dist/types-ts4.5/task-decision/src/api/TaskDecisionResource.d.ts +67 -0
  377. package/dist/types-ts4.5/task-decision/src/api/TaskDecisionUtils.d.ts +4 -0
  378. package/dist/types-ts4.5/task-decision/src/components/DecisionItem.d.ts +15 -0
  379. package/dist/types-ts4.5/task-decision/src/components/DecisionList.d.ts +9 -0
  380. package/dist/types-ts4.5/task-decision/src/components/Item.d.ts +25 -0
  381. package/dist/types-ts4.5/task-decision/src/components/ResourcedTaskItem.d.ts +35 -0
  382. package/dist/types-ts4.5/task-decision/src/components/TaskItem.d.ts +21 -0
  383. package/dist/types-ts4.5/task-decision/src/components/TaskList.d.ts +9 -0
  384. package/dist/types-ts4.5/task-decision/src/components/styles.d.ts +13 -0
  385. package/dist/types-ts4.5/task-decision/src/components/theme.d.ts +61 -0
  386. package/dist/types-ts4.5/task-decision/src/index.d.ts +9 -0
  387. package/dist/types-ts4.5/task-decision/src/type-helpers.d.ts +6 -0
  388. package/dist/types-ts4.5/task-decision/src/types.d.ts +160 -0
  389. package/dist/types-ts4.5/user-picker/src/analytics.d.ts +24 -0
  390. package/dist/types-ts4.5/user-picker/src/clients/UserSourceProvider.d.ts +11 -0
  391. package/dist/types-ts4.5/user-picker/src/components/AddOptionAvatar.d.ts +6 -0
  392. package/dist/types-ts4.5/user-picker/src/components/AvatarItemOption.d.ts +13 -0
  393. package/dist/types-ts4.5/user-picker/src/components/BaseUserPicker.d.ts +65 -0
  394. package/dist/types-ts4.5/user-picker/src/components/ClearIndicator.d.ts +6 -0
  395. package/dist/types-ts4.5/user-picker/src/components/CustomOption/index.d.ts +3 -0
  396. package/dist/types-ts4.5/user-picker/src/components/CustomOption/main.d.ts +15 -0
  397. package/dist/types-ts4.5/user-picker/src/components/EmailOption/index.d.ts +3 -0
  398. package/dist/types-ts4.5/user-picker/src/components/EmailOption/main.d.ts +18 -0
  399. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/ExternalAvatarItemOption.d.ts +11 -0
  400. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/SourcesTooltipContent.d.ts +6 -0
  401. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/index.d.ts +3 -0
  402. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/main.d.ts +12 -0
  403. package/dist/types-ts4.5/user-picker/src/components/ExternalUserSourcesContainer.d.ts +15 -0
  404. package/dist/types-ts4.5/user-picker/src/components/GroupOption/index.d.ts +3 -0
  405. package/dist/types-ts4.5/user-picker/src/components/GroupOption/main.d.ts +16 -0
  406. package/dist/types-ts4.5/user-picker/src/components/HighlightText.d.ts +9 -0
  407. package/dist/types-ts4.5/user-picker/src/components/Input.d.ts +22 -0
  408. package/dist/types-ts4.5/user-picker/src/components/Menu.d.ts +10 -0
  409. package/dist/types-ts4.5/user-picker/src/components/MessagesIntlProvider.d.ts +3 -0
  410. package/dist/types-ts4.5/user-picker/src/components/MultiValue.d.ts +26 -0
  411. package/dist/types-ts4.5/user-picker/src/components/MultiValueContainer.d.ts +30 -0
  412. package/dist/types-ts4.5/user-picker/src/components/Option.d.ts +14 -0
  413. package/dist/types-ts4.5/user-picker/src/components/PopupControl.d.ts +7 -0
  414. package/dist/types-ts4.5/user-picker/src/components/PopupInput.d.ts +8 -0
  415. package/dist/types-ts4.5/user-picker/src/components/PopupUserPicker.d.ts +39 -0
  416. package/dist/types-ts4.5/user-picker/src/components/SingleValue.d.ts +5 -0
  417. package/dist/types-ts4.5/user-picker/src/components/SingleValueContainer.d.ts +9 -0
  418. package/dist/types-ts4.5/user-picker/src/components/SizeableAvatar.d.ts +10 -0
  419. package/dist/types-ts4.5/user-picker/src/components/TeamOption/index.d.ts +3 -0
  420. package/dist/types-ts4.5/user-picker/src/components/TeamOption/main.d.ts +16 -0
  421. package/dist/types-ts4.5/user-picker/src/components/UserOption.d.ts +15 -0
  422. package/dist/types-ts4.5/user-picker/src/components/UserPicker.d.ts +16 -0
  423. package/dist/types-ts4.5/user-picker/src/components/assets/github.d.ts +2 -0
  424. package/dist/types-ts4.5/user-picker/src/components/assets/google.d.ts +2 -0
  425. package/dist/types-ts4.5/user-picker/src/components/assets/microsoft.d.ts +2 -0
  426. package/dist/types-ts4.5/user-picker/src/components/assets/slack.d.ts +2 -0
  427. package/dist/types-ts4.5/user-picker/src/components/batch.d.ts +1 -0
  428. package/dist/types-ts4.5/user-picker/src/components/components.d.ts +49 -0
  429. package/dist/types-ts4.5/user-picker/src/components/creatable.d.ts +12 -0
  430. package/dist/types-ts4.5/user-picker/src/components/creatableEmailSuggestion.d.ts +19 -0
  431. package/dist/types-ts4.5/user-picker/src/components/emailValidation.d.ts +3 -0
  432. package/dist/types-ts4.5/user-picker/src/components/i18n.d.ts +132 -0
  433. package/dist/types-ts4.5/user-picker/src/components/popup.d.ts +48 -0
  434. package/dist/types-ts4.5/user-picker/src/components/styles.d.ts +42 -0
  435. package/dist/types-ts4.5/user-picker/src/components/utils.d.ts +29 -0
  436. package/dist/types-ts4.5/user-picker/src/i18n/cs.d.ts +35 -0
  437. package/dist/types-ts4.5/user-picker/src/i18n/da.d.ts +35 -0
  438. package/dist/types-ts4.5/user-picker/src/i18n/de.d.ts +35 -0
  439. package/dist/types-ts4.5/user-picker/src/i18n/en.d.ts +35 -0
  440. package/dist/types-ts4.5/user-picker/src/i18n/en_GB.d.ts +35 -0
  441. package/dist/types-ts4.5/user-picker/src/i18n/es.d.ts +35 -0
  442. package/dist/types-ts4.5/user-picker/src/i18n/et.d.ts +15 -0
  443. package/dist/types-ts4.5/user-picker/src/i18n/fi.d.ts +35 -0
  444. package/dist/types-ts4.5/user-picker/src/i18n/fr.d.ts +35 -0
  445. package/dist/types-ts4.5/user-picker/src/i18n/hu.d.ts +35 -0
  446. package/dist/types-ts4.5/user-picker/src/i18n/is.d.ts +7 -0
  447. package/dist/types-ts4.5/user-picker/src/i18n/it.d.ts +35 -0
  448. package/dist/types-ts4.5/user-picker/src/i18n/ja.d.ts +35 -0
  449. package/dist/types-ts4.5/user-picker/src/i18n/ko.d.ts +35 -0
  450. package/dist/types-ts4.5/user-picker/src/i18n/nb.d.ts +35 -0
  451. package/dist/types-ts4.5/user-picker/src/i18n/nl.d.ts +35 -0
  452. package/dist/types-ts4.5/user-picker/src/i18n/pl.d.ts +35 -0
  453. package/dist/types-ts4.5/user-picker/src/i18n/pt_BR.d.ts +35 -0
  454. package/dist/types-ts4.5/user-picker/src/i18n/pt_PT.d.ts +15 -0
  455. package/dist/types-ts4.5/user-picker/src/i18n/ro.d.ts +7 -0
  456. package/dist/types-ts4.5/user-picker/src/i18n/ru.d.ts +35 -0
  457. package/dist/types-ts4.5/user-picker/src/i18n/sk.d.ts +15 -0
  458. package/dist/types-ts4.5/user-picker/src/i18n/sv.d.ts +35 -0
  459. package/dist/types-ts4.5/user-picker/src/i18n/th.d.ts +35 -0
  460. package/dist/types-ts4.5/user-picker/src/i18n/tr.d.ts +35 -0
  461. package/dist/types-ts4.5/user-picker/src/i18n/uk.d.ts +35 -0
  462. package/dist/types-ts4.5/user-picker/src/i18n/vi.d.ts +35 -0
  463. package/dist/types-ts4.5/user-picker/src/i18n/zh.d.ts +35 -0
  464. package/dist/types-ts4.5/user-picker/src/i18n/zh_TW.d.ts +35 -0
  465. package/dist/types-ts4.5/user-picker/src/index.d.ts +7 -0
  466. package/dist/types-ts4.5/user-picker/src/types.d.ts +321 -0
  467. package/dist/types-ts4.5/user-picker/src/util/i18n-util.d.ts +11 -0
  468. package/dist/types-ts4.5/user-picker/src/util/ufoExperiences.d.ts +10 -0
  469. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-from-upload.d.ts +1 -1
  470. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-repository-usage-clear.d.ts +2 -2
  471. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-resource-usage-clear.d.ts +1 -1
  472. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-atlassian-emoji-data.d.ts +1 -1
  473. package/dist/types-ts4.5/util-data-test/src/emoji/get-atlassian-emojis.d.ts +1 -0
  474. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-provider.d.ts +1 -1
  475. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-repository.d.ts +1 -1
  476. package/dist/types-ts4.5/util-data-test/src/emoji/get-emojis.d.ts +1 -0
  477. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-site-emoji-data.d.ts +1 -1
  478. package/dist/types-ts4.5/util-data-test/src/emoji/get-site-emojis.d.ts +1 -0
  479. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-standard-emoji-data.d.ts +1 -1
  480. package/dist/types-ts4.5/util-data-test/src/emoji/get-standard-emojis.d.ts +1 -0
  481. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-emoji-resource-factory.d.ts +1 -1
  482. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-emoji-resource.d.ts +2 -2
  483. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
  484. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource.d.ts +2 -2
  485. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/types.d.ts +1 -1
  486. package/dist/{types → types-ts4.5/util-data-test/src}/emoji-test/filter-to-searchable.d.ts +1 -1
  487. package/dist/{types → types-ts4.5/util-data-test/src}/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
  488. package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emojis.d.ts +1 -1
  489. package/dist/types-ts4.5/util-data-test/src/emoji-test/get-test-searchable-emojis.d.ts +1 -0
  490. package/dist/types-ts4.5/util-data-test/src/emoji-test/test-emoji-repository.d.ts +5 -0
  491. package/dist/types-ts4.5/util-data-test/src/logger.d.ts +4 -0
  492. package/dist/types-ts4.5/{mention → util-data-test/src/mention}/create-mock-mention-name-resolver.d.ts +1 -1
  493. package/dist/{types → types-ts4.5/util-data-test/src}/mention/mock-mention-name-client.d.ts +1 -1
  494. package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mock-mention-resource-with-info-hints.d.ts +1 -1
  495. package/dist/{types → types-ts4.5/util-data-test/src}/mention/mock-mention-resource.d.ts +2 -2
  496. package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mock-presence-resource.d.ts +1 -1
  497. package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/mock-task-decision-resource.d.ts +1 -1
  498. package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/utils.d.ts +2 -2
  499. package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-custom-data.d.ts +1 -1
  500. package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-team-data.d.ts +1 -1
  501. package/package.json +3 -8
  502. package/dist/types/emoji/get-atlassian-emojis.d.ts +0 -1
  503. package/dist/types/emoji/get-emojis.d.ts +0 -1
  504. package/dist/types/emoji/get-site-emojis.d.ts +0 -1
  505. package/dist/types/emoji/get-standard-emojis.d.ts +0 -1
  506. package/dist/types/emoji-test/get-test-searchable-emojis.d.ts +0 -1
  507. package/dist/types/emoji-test/test-emoji-repository.d.ts +0 -5
  508. package/dist/types/json-data/emoji-all.json +0 -54398
  509. package/dist/types/json-data/mention-data.json +0 -393
  510. package/dist/types/json-data/presence-invalid-info.json +0 -47
  511. package/dist/types/json-data/presence-valid-info.json +0 -63
  512. package/dist/types/json-data/sample-tasks.json +0 -80
  513. package/dist/types/json-data/service-data-atlassian.json +0 -272
  514. package/dist/types/json-data/service-data-standard.json +0 -54098
  515. package/dist/types/json-data/slack-conversations-data.json +0 -476
  516. package/dist/types/json-data/slack-workspaces-data.json +0 -19
  517. package/dist/types/json-data/test-emoji-atlassian.json +0 -224
  518. package/dist/types/json-data/test-emoji-standard.json +0 -2000
  519. package/dist/types/json-data/user-picker-data.json +0 -361
  520. package/dist/types-ts4.5/emoji/get-atlassian-emojis.d.ts +0 -1
  521. package/dist/types-ts4.5/emoji/get-emojis.d.ts +0 -1
  522. package/dist/types-ts4.5/emoji/get-site-emojis.d.ts +0 -1
  523. package/dist/types-ts4.5/emoji/get-standard-emojis.d.ts +0 -1
  524. package/dist/types-ts4.5/emoji-test/get-test-searchable-emojis.d.ts +0 -1
  525. package/dist/types-ts4.5/emoji-test/test-emoji-repository.d.ts +0 -5
  526. package/dist/types-ts4.5/json-data/emoji-all.json +0 -54398
  527. package/dist/types-ts4.5/json-data/mention-data.json +0 -393
  528. package/dist/types-ts4.5/json-data/presence-invalid-info.json +0 -47
  529. package/dist/types-ts4.5/json-data/presence-valid-info.json +0 -63
  530. package/dist/types-ts4.5/json-data/sample-tasks.json +0 -80
  531. package/dist/types-ts4.5/json-data/service-data-atlassian.json +0 -272
  532. package/dist/types-ts4.5/json-data/service-data-standard.json +0 -54098
  533. package/dist/types-ts4.5/json-data/slack-conversations-data.json +0 -476
  534. package/dist/types-ts4.5/json-data/slack-workspaces-data.json +0 -19
  535. package/dist/types-ts4.5/json-data/test-emoji-atlassian.json +0 -224
  536. package/dist/types-ts4.5/json-data/test-emoji-standard.json +0 -2000
  537. package/dist/types-ts4.5/json-data/user-picker-data.json +0 -361
  538. /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource-standard-atlassian.d.ts +0 -0
  539. /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource-usage-clear.d.ts +0 -0
  540. /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource.d.ts +0 -0
  541. /package/dist/types/{emoji → util-data-test/src/emoji}/image-emoji.d.ts +0 -0
  542. /package/dist/types/{emoji → util-data-test/src/emoji}/logged-user.d.ts +0 -0
  543. /package/dist/types/{emoji → util-data-test/src/emoji}/lorem.d.ts +0 -0
  544. /package/dist/types/{emoji → util-data-test/src/emoji}/site-emoji-foo.d.ts +0 -0
  545. /package/dist/types/{emoji → util-data-test/src/emoji}/site-emoji-wtf.d.ts +0 -0
  546. /package/dist/types/{emoji → util-data-test/src/emoji}/sprite-emoji.d.ts +0 -0
  547. /package/dist/types/{emoji-constants → util-data-test/src/emoji-constants}/index.d.ts +0 -0
  548. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/emoji-samples.d.ts +0 -0
  549. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/expires-at.d.ts +0 -0
  550. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-non-uploading-emoji-resource.d.ts +0 -0
  551. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-emojis.d.ts +0 -0
  552. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-service-emojis.d.ts +0 -0
  553. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-repository.d.ts +0 -0
  554. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource-non-uploading.d.ts +0 -0
  555. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource.d.ts +0 -0
  556. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-image-emoji.d.ts +0 -0
  557. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-media-api-token.d.ts +0 -0
  558. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-foo.d.ts +0 -0
  559. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-repository.d.ts +0 -0
  560. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-wtf.d.ts +0 -0
  561. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emojis.d.ts +0 -0
  562. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-service-emojis.d.ts +0 -0
  563. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-sprite-emoji.d.ts +0 -0
  564. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-emojis.d.ts +0 -0
  565. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-service-emojis.d.ts +0 -0
  566. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/media-emoji.d.ts +0 -0
  567. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/media-service-emoji.d.ts +0 -0
  568. /package/dist/types/{mention → util-data-test/src/mention}/mention-story-data.d.ts +0 -0
  569. /package/dist/types/{mention → util-data-test/src/mention}/mention-test-data.d.ts +0 -0
  570. /package/dist/types/{mention → util-data-test/src/mention}/presence-data.d.ts +0 -0
  571. /package/dist/types/{mention → util-data-test/src/mention}/utils.d.ts +0 -0
  572. /package/dist/types/{profilecard → util-data-test/src/profilecard}/get-mock-profilecard-client.d.ts +0 -0
  573. /package/dist/types/{profilecard → util-data-test/src/profilecard}/profilecard-data.d.ts +0 -0
  574. /package/dist/types/{profilecard → util-data-test/src/profilecard}/util.d.ts +0 -0
  575. /package/dist/types/{slack-data → util-data-test/src/slack-data}/index.d.ts +0 -0
  576. /package/dist/types/{slack-data → util-data-test/src/slack-data}/slack-conversations-data.d.ts +0 -0
  577. /package/dist/types/{slack-data → util-data-test/src/slack-data}/slack-workspaces-data.d.ts +0 -0
  578. /package/dist/types/{task-decision → util-data-test/src/task-decision}/task-decision-story-data.d.ts +0 -0
  579. /package/dist/types/{user-picker → util-data-test/src/user-picker}/index.d.ts +0 -0
  580. /package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-data.d.ts +0 -0
  581. /package/dist/types-ts4.5/{logger.d.ts → emoji/src/util/logger.d.ts} +0 -0
  582. /package/dist/{types → types-ts4.5/mention/src/util}/logger.d.ts +0 -0
  583. /package/dist/types-ts4.5/user-picker/{ChevronRight.d.ts → src/components/ExternalUserOption/InfoIcon.d.ts} +0 -0
  584. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource-standard-atlassian.d.ts +0 -0
  585. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource-usage-clear.d.ts +0 -0
  586. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource.d.ts +0 -0
  587. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/image-emoji.d.ts +0 -0
  588. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/logged-user.d.ts +0 -0
  589. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/lorem.d.ts +0 -0
  590. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/site-emoji-foo.d.ts +0 -0
  591. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/site-emoji-wtf.d.ts +0 -0
  592. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/sprite-emoji.d.ts +0 -0
  593. /package/dist/types-ts4.5/{emoji-constants → util-data-test/src/emoji-constants}/index.d.ts +0 -0
  594. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/emoji-samples.d.ts +0 -0
  595. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/expires-at.d.ts +0 -0
  596. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-non-uploading-emoji-resource.d.ts +0 -0
  597. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-emojis.d.ts +0 -0
  598. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-service-emojis.d.ts +0 -0
  599. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-repository.d.ts +0 -0
  600. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource-non-uploading.d.ts +0 -0
  601. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource.d.ts +0 -0
  602. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-image-emoji.d.ts +0 -0
  603. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-media-api-token.d.ts +0 -0
  604. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-foo.d.ts +0 -0
  605. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-repository.d.ts +0 -0
  606. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-wtf.d.ts +0 -0
  607. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emojis.d.ts +0 -0
  608. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-service-emojis.d.ts +0 -0
  609. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-sprite-emoji.d.ts +0 -0
  610. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-emojis.d.ts +0 -0
  611. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-service-emojis.d.ts +0 -0
  612. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/media-emoji.d.ts +0 -0
  613. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/media-service-emoji.d.ts +0 -0
  614. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mention-story-data.d.ts +0 -0
  615. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mention-test-data.d.ts +0 -0
  616. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/presence-data.d.ts +0 -0
  617. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/utils.d.ts +0 -0
  618. /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/get-mock-profilecard-client.d.ts +0 -0
  619. /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/profilecard-data.d.ts +0 -0
  620. /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/util.d.ts +0 -0
  621. /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/index.d.ts +0 -0
  622. /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/slack-conversations-data.d.ts +0 -0
  623. /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/slack-workspaces-data.d.ts +0 -0
  624. /package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/task-decision-story-data.d.ts +0 -0
  625. /package/dist/{types → types-ts4.5/util-data-test/src}/user-picker/ChevronRight.d.ts +0 -0
  626. /package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/index.d.ts +0 -0
  627. /package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-data.d.ts +0 -0
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.elements.user-picker.email.add': string;
9
+ 'fabric.elements.user-picker.email.add.potential': string;
10
+ 'fabric.elements.user-picker.email.select.to.add': string;
11
+ 'fabric.elements.user-picker.error.message': string;
12
+ 'fabric.elements.user-picker.external.sourced.error': string;
13
+ 'fabric.elements.user-picker.external.sourced.from': string;
14
+ 'fabric.elements.user-picker.github.provider': string;
15
+ 'fabric.elements.user-picker.google.provider': string;
16
+ 'fabric.elements.user-picker.group.byline': string;
17
+ 'fabric.elements.user-picker.guest.lozenge.text': string;
18
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.group': string;
19
+ 'fabric.elements.user-picker.guest.lozenge.tooltip.user': string;
20
+ 'fabric.elements.user-picker.member.lozenge.text': string;
21
+ 'fabric.elements.user-picker.microsoft.provider': string;
22
+ 'fabric.elements.user-picker.multi.remove-item': string;
23
+ 'fabric.elements.user-picker.placeholder': string;
24
+ 'fabric.elements.user-picker.placeholder.add-more': string;
25
+ 'fabric.elements.user-picker.single.clear': string;
26
+ 'fabric.elements.user-picker.slack.provider': string;
27
+ 'fabric.elements.user-picker.source.confluence': string;
28
+ 'fabric.elements.user-picker.source.jira': string;
29
+ 'fabric.elements.user-picker.source.other-atlassian': string;
30
+ 'fabric.elements.user-picker.team.member.50plus': string;
31
+ 'fabric.elements.user-picker.team.member.50plus.including.you': string;
32
+ 'fabric.elements.user-picker.team.member.count': string;
33
+ 'fabric.elements.user-picker.team.member.count.including.you': string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,7 @@
1
+ export { isValidEmail } from './components/emailValidation';
2
+ export type { EmailValidationResponse, EmailValidator, } from './components/emailValidation';
3
+ export { UserPicker as default } from './components/UserPicker';
4
+ export { PopupUserPicker } from './components/PopupUserPicker';
5
+ export { isEmail, isExternalUser, isTeam, isUser } from './components/utils';
6
+ export { CustomType, EmailType, GroupType, TeamType, UserType, } from './types';
7
+ export type { ActionTypes, Appearance, AtlasKitSelectChange, AtlaskitSelectValue, DefaultValue, InputActionTypes, LozengeProps, OnChange, OnInputChange, OnOption, OnPicker, Option, OptionData, OptionIdentifier, PopupUserPickerProps, Promisable, Target, UserPickerProps, UserPickerState, Value, Custom, Email, Group, GroupHighlight, HighlightRange, LoadOptions, Team, TeamMember, TeamHighlight, User, UserHighlight, ExternalUser, UserSource, } from './types';
@@ -0,0 +1,318 @@
1
+ import React, { type AriaAttributes, ReactNode } from 'react';
2
+ import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
3
+ import { Placement } from '@atlaskit/popper';
4
+ import { EmailValidator } from './components/emailValidation';
5
+ import { StylesConfig } from '@atlaskit/select';
6
+ export type UserPickerProps = WithAnalyticsEventsProps & {
7
+ /**
8
+ * Used to configure additional information regarding where the
9
+ * user picker has been mounted.
10
+ *
11
+ * The purpose is to give more context as to where user picker events
12
+ * are being fired from, as the current data may not uniquely identify
13
+ * which field is the source.
14
+ *
15
+ * The value will be passed as a data attribute for analytics.
16
+ * Examples include "assignee", "watchers" and "share".
17
+ *
18
+ * A second usage for the fieldId is for server side rendering (SSR) where it must be a unique id per UserPicker
19
+ * instance contained in the serialized SSR content. E.g. a SPA page rendered through SSR that has multiple user pickers.
20
+ *
21
+ * fieldId can be set to null if the integrator is not listening
22
+ * for the analytic events or does not care about SSR.
23
+ */
24
+ fieldId: string | null;
25
+ /** List of users or teams to be used as options by the user picker. */
26
+ options?: OptionData[];
27
+ /** Width of the user picker field. It can be the amount of pixels as numbers or a string with the percentage. */
28
+ width?: number | string;
29
+ /** Sets the minimum width for the menu. If not set, menu will always have the same width of the field. */
30
+ menuMinWidth?: number;
31
+ /** Sets max height of the user picker. If not set, the height will grow based on number of picked users. */
32
+ maxPickerHeight?: number;
33
+ /** Sets the background color to be the same color as a textfield (Atlaskit N10) */
34
+ textFieldBackgroundColor?: boolean;
35
+ /**
36
+ * Function used to load options asynchronously.
37
+ * accepts two optional params:
38
+ * searchText?: optional text to filter results
39
+ * sessionId?: user picker session identifier, used to track success metric for users providers
40
+ */
41
+ loadOptions?: LoadOptions;
42
+ /**
43
+ * Function to generate the error message when there's a failure executing the loadOptions prop.
44
+ * If not provided, will default to a default error message.
45
+ */
46
+ loadOptionsErrorMessage?: (value: {
47
+ inputValue: string;
48
+ }) => string;
49
+ /**
50
+ * Function used to load user source if they are an external user.
51
+ * accepts two params:
52
+ * accountId: account ID of the user to lookup sources
53
+ * signal: AbortController signal to abort the request if the tooltip is closed
54
+ */
55
+ loadUserSource?: LoadUserSource;
56
+ /** Callback for value change events fired whenever a selection is inserted or removed. */
57
+ onChange?: OnChange;
58
+ /** To enable multi user picker. */
59
+ isMulti?: boolean;
60
+ /** Input text value. */
61
+ search?: string;
62
+ /** Anchor for the user picker popup. */
63
+ anchor?: React.ComponentType<any>;
64
+ /** Controls if user picker menu is open or not. If not provided, UserPicker will control menu state internally. */
65
+ open?: boolean;
66
+ /** Show the loading indicator. */
67
+ isLoading?: boolean;
68
+ /** Callback for search input text change events. */
69
+ onInputChange?: OnInputChange;
70
+ /** Callback for when a selection is made. */
71
+ onSelection?: OnOption;
72
+ /** Callback for when the field gains focus. */
73
+ onFocus?: OnPicker;
74
+ /** Callback for when the field loses focus. */
75
+ onBlur?: OnPicker;
76
+ /** Callback for when the value/s in the picker is cleared. */
77
+ onClear?: OnPicker;
78
+ /** Callback that is triggered when popup picker is closed */
79
+ onClose?: OnPicker;
80
+ /** Appearance of the user picker. */
81
+ appearance?: Appearance;
82
+ /** Display the picker with a subtle style. */
83
+ subtle?: boolean;
84
+ /** Display the picker with no border. */
85
+ noBorder?: boolean;
86
+ /**
87
+ * You may pass through a `StylesConfig` to be merged with the picker default styles if a custom override is required.
88
+ * Consider using noBorder, subtle before customising further.
89
+ * See https://react-select.com/styles
90
+ */
91
+ styles?: StylesConfig;
92
+ /** Default value for the field to be used on initial render.
93
+ * `defaultValue` differs from `value` in that it sets the initial value then leaves the component 'uncontrolled'
94
+ * whereas setting the `value` prop delegates responsibility for maintaining the value to the caller
95
+ * (i.e. listen to `onChange`) */
96
+ defaultValue?: DefaultValue;
97
+ /** Placeholder text to be shown when there is no value in the field. */
98
+ placeholder?: React.ReactNode;
99
+ /** Message to encourage the user to add more items to user picker. */
100
+ addMoreMessage?: string;
101
+ /** Message to be shown when the menu is open but no options are provided.
102
+ * If message is null, no message will be displayed.
103
+ * If message is undefined, default message will be displayed.
104
+ */
105
+ noOptionsMessage?: ((value: {
106
+ inputValue: string;
107
+ }) => string | null) | null;
108
+ /** Footer to be displayed in MenuList */
109
+ footer?: React.ReactNode;
110
+ /** Controls if the user picker has a value or not. If not provided, UserPicker will control the value internally. */
111
+ value?: Value;
112
+ /** Disable all interactions with the picker, putting it in a read-only state. */
113
+ isDisabled?: boolean;
114
+ /** Display a remove button on the single picker. True by default. */
115
+ isClearable?: boolean;
116
+ /** Optional tooltip to display on hover over the clear indicator. */
117
+ clearValueLabel?: string;
118
+ /** React-select prop for controlling menu position */
119
+ menuPosition?: 'absolute' | 'fixed';
120
+ /** React-select prop for blocking menu scroll on container when menu scrolled to the very top/bottom of the menu */
121
+ captureMenuScroll?: boolean;
122
+ /** Whether the menu should use a portal, and where it should attach. */
123
+ menuPortalTarget?: HTMLElement;
124
+ /** Whether the user is allowed to enter emails as a value. */
125
+ allowEmail?: boolean;
126
+ /** Setting this with allowEmail will cause the picker to constantly show an email option at the bottom for the supplied email domain/an email the user types in */
127
+ suggestEmailsForDomain?: string;
128
+ /** Email option label */
129
+ emailLabel?: string;
130
+ /** Whether to disable interaction with the input */
131
+ disableInput?: boolean;
132
+ /** Override default email validation function. */
133
+ isValidEmail?: EmailValidator;
134
+ /** Override the internal behaviour to automatically focus the control when the picker is open */
135
+ autoFocus?: boolean;
136
+ /** The maximum number options to be displayed in the dropdown menu during any state of search. The value should be non-negative. */
137
+ maxOptions?: number;
138
+ /** Allows clicking on a label with the same id to open user picker. */
139
+ inputId?: string;
140
+ /** Whether to close menu on scroll */
141
+ closeMenuOnScroll?: boolean | EventListener;
142
+ /** Whether to block scrolling actions */
143
+ menuShouldBlockScroll?: boolean;
144
+ /** Accessibility: Identifies the element (or elements) that labels the current element.*/
145
+ ariaLabelledBy?: string;
146
+ /** Accessibility: Used to set the priority with which screen reader should treat updates to live regions.*/
147
+ ariaLive?: 'polite' | 'off' | 'assertive';
148
+ /** Name to use for input element. */
149
+ name?: string;
150
+ };
151
+ export type PopupUserPickerProps = UserPickerProps & {
152
+ /** Whether to use the popup version of the single picker */
153
+ target: Target;
154
+ /** Optional title assigned to popup picker */
155
+ popupTitle?: string;
156
+ /**
157
+ * The boundary element that the popup will check for overflow.
158
+ * Defaults to `"viewport"` which are parent scroll containers,
159
+ * but can be set to any element.
160
+ */
161
+ boundariesElement?: BoundariesElement;
162
+ /**
163
+ * Distance the popup should be offset from the reference in the format of [along, away] (units in px).
164
+ */
165
+ offset?: [number, number];
166
+ /**
167
+ * Placement of where the popup should be displayed relative to the trigger element.
168
+ * Defaults to `"auto"`.
169
+ */
170
+ placement?: Placement;
171
+ /**
172
+ * The root boundary that the popup will check for overflow.
173
+ * Defaults to `"viewport"` but can be set to `"document"`.
174
+ * See `@atlaskit/popper` for further details.
175
+ */
176
+ rootBoundary?: RootBoundary;
177
+ /**
178
+ * Allows the dropdown menu to be placed on the opposite side of its trigger if it does not
179
+ * fit in the viewport.
180
+ */
181
+ shouldFlip?: boolean;
182
+ };
183
+ export type AriaAttributesType = AriaAttributes['aria-labelledby'] | AriaAttributes['aria-describedby'];
184
+ export type BoundariesElement = 'scrollParent' | 'window' | 'viewport' | HTMLElement;
185
+ export type RootBoundary = 'viewport' | 'document';
186
+ export type UserPickerState = {
187
+ options: OptionData[];
188
+ value?: AtlaskitSelectValue;
189
+ isDefaultSet: boolean;
190
+ inflightRequest: number;
191
+ count: number;
192
+ hoveringClearIndicator: boolean;
193
+ menuIsOpen: boolean;
194
+ inputValue: string;
195
+ resolving: boolean;
196
+ showError: boolean;
197
+ };
198
+ export interface HighlightRange {
199
+ start: number;
200
+ end: number;
201
+ }
202
+ export interface UserHighlight {
203
+ name: HighlightRange[];
204
+ publicName: HighlightRange[];
205
+ }
206
+ export interface TeamHighlight {
207
+ name: HighlightRange[];
208
+ description?: HighlightRange[];
209
+ }
210
+ export interface GroupHighlight {
211
+ name: HighlightRange[];
212
+ }
213
+ export interface CustomHighlight {
214
+ name: HighlightRange[];
215
+ }
216
+ export interface OptionData {
217
+ avatarUrl?: any;
218
+ fixed?: boolean;
219
+ id: string;
220
+ isDisabled?: boolean;
221
+ lozenge?: string | LozengeProps | ReactNode;
222
+ name: string;
223
+ type?: 'user' | 'team' | 'email' | 'group' | 'custom';
224
+ }
225
+ export declare const UserType = "user";
226
+ export type UserSource = 'google' | 'slack' | 'microsoft' | 'github' | 'jira' | 'confluence' | 'other-atlassian';
227
+ export interface ExternalUser extends User {
228
+ externalUserType?: 'crossSite' | 'thirdParty';
229
+ requiresSourceHydration?: boolean;
230
+ sources: UserSource[];
231
+ hasProductAccess?: boolean;
232
+ }
233
+ export interface User extends OptionData {
234
+ avatarUrl?: string;
235
+ publicName?: string;
236
+ highlight?: UserHighlight;
237
+ byline?: string;
238
+ type?: 'user';
239
+ email?: string;
240
+ isExternal?: boolean;
241
+ }
242
+ export type LozengeColor = 'default' | 'success' | 'removed' | 'inprogress' | 'new' | 'moved';
243
+ export interface LozengeProps {
244
+ text: string;
245
+ tooltip?: string;
246
+ appearance?: LozengeColor;
247
+ isBold?: boolean;
248
+ }
249
+ export declare const TeamType = "team";
250
+ export interface TeamMember {
251
+ name: string;
252
+ id: string;
253
+ }
254
+ export interface Team extends OptionData {
255
+ avatarUrl?: string;
256
+ description?: string;
257
+ memberCount?: number;
258
+ members?: TeamMember[];
259
+ includesYou?: boolean;
260
+ highlight?: TeamHighlight;
261
+ type: 'team';
262
+ byline?: string;
263
+ }
264
+ export declare const GroupType = "group";
265
+ export interface Group extends OptionData {
266
+ highlight?: GroupHighlight;
267
+ type: 'group';
268
+ }
269
+ export interface Custom extends OptionData {
270
+ avatarUrl?: string;
271
+ byline?: string;
272
+ highlight?: CustomHighlight;
273
+ analyticsType?: string;
274
+ type: 'custom';
275
+ }
276
+ export type Value = OptionData | OptionData[] | null | undefined;
277
+ export type DefaultValue = Value | OptionIdentifier | OptionIdentifier[];
278
+ export type OptionIdentifier = Pick<OptionData, 'id' | 'type' | 'isDisabled'>;
279
+ export declare const EmailType = "email";
280
+ export declare const CustomType = "custom";
281
+ export interface Email extends OptionData {
282
+ type: 'email';
283
+ suggestion?: boolean;
284
+ }
285
+ export type ActionTypes = 'select-option' | 'deselect-option' | 'remove-value' | 'pop-value' | 'set-value' | 'clear' | 'create-option';
286
+ export type OnChange = (value: Value, action: ActionTypes) => void;
287
+ export type OnInputChange = (query?: string, sessionId?: string) => void;
288
+ export type OnPicker = (sessionId?: string) => void;
289
+ export type OnOption = (value: Value, sessionId?: string) => void;
290
+ export type Option<Data = OptionData> = {
291
+ data: Data;
292
+ isDisabled?: boolean;
293
+ label: string;
294
+ value: string;
295
+ };
296
+ export interface UserSourceResult {
297
+ sourceId: string;
298
+ sourceType: UserSource;
299
+ }
300
+ export interface LoadUserSource {
301
+ (accountId: string, signal?: AbortSignal): Promise<UserSourceResult[]>;
302
+ }
303
+ export interface LoadOptions {
304
+ (searchText?: string, sessionId?: string): Promisable<OptionData | OptionData[]> | Iterable<Promisable<OptionData[] | OptionData> | OptionData | OptionData[]>;
305
+ }
306
+ export type Promisable<T> = T | PromiseLike<T>;
307
+ export type InputActionTypes = 'set-value' | 'input-change' | 'input-blur' | 'menu-close';
308
+ export type AtlaskitSelectValue = Option | Array<Option> | null | undefined;
309
+ export type AtlasKitSelectChange = (value: AtlaskitSelectValue, extraInfo: {
310
+ removedValue?: Option;
311
+ option?: Option;
312
+ action: ActionTypes;
313
+ }) => void;
314
+ export type Appearance = 'normal' | 'compact';
315
+ export type Target = (options: {
316
+ ref: any;
317
+ isOpen: boolean;
318
+ }) => ReactNode;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Tries to get the most specific messages bundle for a given locale.
3
+ *
4
+ * Strategy:
5
+ * 1. Try to find messages with the exact string (i.e. 'fr_FR')
6
+ * 2. If that doesn't work, try to find messages for the country locale (i.e. 'fr')
7
+ * 3. If that doesn't work, return english messages as a fallback.
8
+ *
9
+ * @param locale string specifying the locale like 'en_GB', or 'fr'.
10
+ */
11
+ export declare const getMessagesForLocale: (locale: string) => Promise<Record<string, string>>;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { ConcurrentExperience } from '@atlaskit/ufo';
3
+ export declare const userPickerRenderedUfoExperience: ConcurrentExperience;
4
+ export declare const userPickerOptionsShownUfoExperience: ConcurrentExperience;
5
+ export declare class UfoErrorBoundary extends React.Component<{
6
+ id: string;
7
+ }> {
8
+ componentDidCatch(): void;
9
+ render(): React.ReactNode;
10
+ }
@@ -1,4 +1,4 @@
1
- import { EmojiUpload } from '@atlaskit/emoji/types';
1
+ import type { EmojiUpload } from '../../../emoji/src/types';
2
2
  export declare const emojiFromUpload: (upload: EmojiUpload) => {
3
3
  id: any;
4
4
  shortName: string;
@@ -1,5 +1,5 @@
1
- import { EmojiRepository } from '@atlaskit/emoji/resource';
2
- import { EmojiDescription } from '@atlaskit/emoji/types';
1
+ import { EmojiRepository } from '../../../emoji/src/resource';
2
+ import { EmojiDescription } from '../../../emoji/src/types';
3
3
  export declare const isUsageClearEmojiRepository: (object: any) => object is EmojiRepositoryUsageClear;
4
4
  export declare class EmojiRepositoryUsageClear extends EmojiRepository {
5
5
  constructor(emojis: EmojiDescription[]);
@@ -1,4 +1,4 @@
1
- import { EmojiDescription } from '@atlaskit/emoji/types';
1
+ import { EmojiDescription } from '../../../emoji/src/types';
2
2
  import { MockNonUploadingEmojiResource } from './mock-non-uploading-emoji-resource';
3
3
  export declare class EmojiResourceUsageClear extends MockNonUploadingEmojiResource {
4
4
  constructor(emojis: EmojiDescription[]);
@@ -1,2 +1,2 @@
1
- import { EmojiServiceResponse } from '@atlaskit/emoji/types';
1
+ import { EmojiServiceResponse } from '../../../emoji/src/types';
2
2
  export declare const getAtlassianEmojiData: () => EmojiServiceResponse;
@@ -0,0 +1 @@
1
+ export declare const getAtlassianEmojis: import("memoize-one").MemoizedFn<() => import("../../../emoji/src/types").EmojiDescriptionWithVariations[]>;
@@ -1,4 +1,4 @@
1
- import type { EmojiProvider, EmojiServiceResponse } from '@atlaskit/emoji/types';
1
+ import type { EmojiProvider, EmojiServiceResponse } from '../../../emoji/src/types';
2
2
  import { MockEmojiResourceConfig } from './types';
3
3
  type DataFetch = () => Promise<EmojiServiceResponse>;
4
4
  export declare const currentUser: {
@@ -1,2 +1,2 @@
1
- import { EmojiRepository } from '@atlaskit/emoji/resource';
1
+ import { EmojiRepository } from '../../../emoji/src/resource';
2
2
  export declare const getEmojiRepository: () => EmojiRepository;
@@ -0,0 +1 @@
1
+ export declare const getEmojis: () => import("../../../emoji/src/types").EmojiDescriptionWithVariations[];
@@ -1,2 +1,2 @@
1
- import { EmojiServiceResponse } from '@atlaskit/emoji/types';
1
+ import { EmojiServiceResponse } from '../../../emoji/src/types';
2
2
  export declare const getSiteEmojiData: () => EmojiServiceResponse;