@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.
- package/.eslintrc.js +6 -0
- package/CHANGELOG.md +12 -0
- package/dist/cjs/emoji/emoji-repository-usage-clear.js +1 -1
- package/dist/cjs/emoji/get-atlassian-emojis.js +1 -1
- package/dist/cjs/emoji/get-emoji-provider.js +2 -2
- package/dist/cjs/emoji/get-emoji-repository.js +1 -1
- package/dist/cjs/emoji/get-emoji-resource-standard-atlassian.js +1 -1
- package/dist/cjs/emoji/get-emojis.js +1 -1
- package/dist/cjs/emoji/get-site-emojis.js +1 -1
- package/dist/cjs/emoji/get-standard-emojis.js +1 -1
- package/dist/cjs/emoji-test/get-test-emojis.js +1 -1
- package/dist/cjs/emoji-test/test-emoji-repository.js +2 -2
- package/dist/cjs/mention/create-mock-mention-name-resolver.js +1 -1
- package/dist/cjs/mention/mock-mention-name-client.js +1 -1
- package/dist/cjs/mention/mock-mention-resource-with-info-hints.js +1 -1
- package/dist/cjs/mention/mock-mention-resource.js +1 -1
- package/dist/cjs/mention/mock-presence-resource.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/emoji/emoji-repository-usage-clear.js +1 -1
- package/dist/es2019/emoji/get-atlassian-emojis.js +1 -1
- package/dist/es2019/emoji/get-emoji-provider.js +2 -2
- package/dist/es2019/emoji/get-emoji-repository.js +1 -1
- package/dist/es2019/emoji/get-emoji-resource-standard-atlassian.js +1 -1
- package/dist/es2019/emoji/get-emojis.js +1 -1
- package/dist/es2019/emoji/get-site-emojis.js +1 -1
- package/dist/es2019/emoji/get-standard-emojis.js +1 -1
- package/dist/es2019/emoji-test/get-test-emojis.js +1 -1
- package/dist/es2019/emoji-test/test-emoji-repository.js +2 -2
- package/dist/es2019/mention/create-mock-mention-name-resolver.js +1 -1
- package/dist/es2019/mention/mock-mention-name-client.js +1 -1
- package/dist/es2019/mention/mock-mention-resource-with-info-hints.js +1 -1
- package/dist/es2019/mention/mock-mention-resource.js +1 -1
- package/dist/es2019/mention/mock-presence-resource.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/emoji/emoji-repository-usage-clear.js +1 -1
- package/dist/esm/emoji/get-atlassian-emojis.js +1 -1
- package/dist/esm/emoji/get-emoji-provider.js +2 -2
- package/dist/esm/emoji/get-emoji-repository.js +1 -1
- package/dist/esm/emoji/get-emoji-resource-standard-atlassian.js +1 -1
- package/dist/esm/emoji/get-emojis.js +1 -1
- package/dist/esm/emoji/get-site-emojis.js +1 -1
- package/dist/esm/emoji/get-standard-emojis.js +1 -1
- package/dist/esm/emoji-test/get-test-emojis.js +1 -1
- package/dist/esm/emoji-test/test-emoji-repository.js +2 -2
- package/dist/esm/mention/create-mock-mention-name-resolver.js +1 -1
- package/dist/esm/mention/mock-mention-name-client.js +1 -1
- package/dist/esm/mention/mock-mention-resource-with-info-hints.js +1 -1
- package/dist/esm/mention/mock-mention-resource.js +1 -1
- package/dist/esm/mention/mock-presence-resource.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/emoji/src/api/EmojiLoader.d.ts +13 -0
- package/dist/types/emoji/src/api/EmojiRepository.d.ts +72 -0
- package/dist/types/emoji/src/api/EmojiRepositoryRegex.d.ts +1 -0
- package/dist/types/emoji/src/api/EmojiResource.d.ts +139 -0
- package/dist/types/emoji/src/api/EmojiUtils.d.ts +24 -0
- package/dist/types/emoji/src/api/internal/Comparators.d.ts +109 -0
- package/dist/types/emoji/src/api/internal/UsageFrequencyTracker.d.ts +46 -0
- package/dist/types/emoji/src/api/media/MediaEmojiCache.d.ts +53 -0
- package/dist/types/emoji/src/api/media/MediaImageLoader.d.ts +21 -0
- package/dist/types/emoji/src/api/media/SiteEmojiResource.d.ts +46 -0
- package/dist/types/emoji/src/api/media/TokenManager.d.ts +13 -0
- package/dist/types/emoji/src/components/i18n.d.ts +227 -0
- package/dist/types/emoji/src/components/picker/categories.d.ts +7 -0
- package/dist/types/emoji/src/resource.d.ts +5 -0
- package/dist/types/emoji/src/types.d.ts +363 -0
- package/dist/types/emoji/src/util/DuplicateLimitedQueue.d.ts +91 -0
- package/dist/types/emoji/src/util/StoredDuplicateLimitedQueue.d.ts +46 -0
- package/dist/types/emoji/src/util/analytics/samplingUfo.d.ts +38 -0
- package/dist/types/emoji/src/util/analytics/ufoExperiences.d.ts +14 -0
- package/dist/types/emoji/src/util/constants.d.ts +60 -0
- package/dist/types/emoji/src/util/image.d.ts +10 -0
- package/dist/types/emoji/src/util/logger.d.ts +4 -0
- package/dist/types/emoji/src/util/storage-available.d.ts +3 -0
- package/dist/types/emoji/src/util/type-helpers.d.ts +23 -0
- package/dist/types/emoji/src/utils.d.ts +3 -0
- package/dist/types/mention/src/_constants.d.ts +1 -0
- package/dist/types/mention/src/api/ContextMentionResource.d.ts +23 -0
- package/dist/types/mention/src/api/MentionNameClient.d.ts +11 -0
- package/dist/types/mention/src/api/MentionNameResolver.d.ts +23 -0
- package/dist/types/mention/src/api/MentionResource.d.ts +93 -0
- package/dist/types/mention/src/api/PresenceResource.d.ts +119 -0
- package/dist/types/mention/src/api/TeamMentionResource.d.ts +33 -0
- package/dist/types/mention/src/components/LockCircleIcon/index.d.ts +3 -0
- package/dist/types/mention/src/components/Mention/PrimitiveMention.d.ts +7 -0
- package/dist/types/mention/src/components/Mention/ResourcedMention.d.ts +27 -0
- package/dist/types/mention/src/components/Mention/index.d.ts +31 -0
- package/dist/types/mention/src/components/Mention/ufoExperiences.d.ts +9 -0
- package/dist/types/mention/src/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +7 -0
- package/dist/types/mention/src/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +5 -0
- package/dist/types/mention/src/components/MentionDescriptionByline/index.d.ts +5 -0
- package/dist/types/mention/src/components/MentionDescriptionByline/styles.d.ts +5 -0
- package/dist/types/mention/src/components/MentionDescriptionByline/types.d.ts +4 -0
- package/dist/types/mention/src/components/MentionItem/MentionHighlightHelpers.d.ts +3 -0
- package/dist/types/mention/src/components/MentionItem/index.d.ts +16 -0
- package/dist/types/mention/src/components/MentionItem/styles.d.ts +46 -0
- package/dist/types/mention/src/components/MentionList/index.d.ts +41 -0
- package/dist/types/mention/src/components/MentionList/styles.d.ts +8 -0
- package/dist/types/mention/src/components/MentionListError/GenericErrorIllustration.d.ts +7 -0
- package/dist/types/mention/src/components/MentionListError/index.d.ts +13 -0
- package/dist/types/mention/src/components/MentionListError/styles.d.ts +17 -0
- package/dist/types/mention/src/components/MentionPicker/index.d.ts +77 -0
- package/dist/types/mention/src/components/MentionPicker/styles.d.ts +12 -0
- package/dist/types/mention/src/components/MessagesIntlProvider/index.d.ts +3 -0
- package/dist/types/mention/src/components/NoAccessTooltip/index.d.ts +6 -0
- package/dist/types/mention/src/components/NoAccessTooltip/main.d.ts +7 -0
- package/dist/types/mention/src/components/Popup/index.d.ts +26 -0
- package/dist/types/mention/src/components/ResourcedMentionList/index.d.ts +46 -0
- package/dist/types/mention/src/components/Scrollable/index.d.ts +11 -0
- package/dist/types/mention/src/components/Scrollable/styles.d.ts +5 -0
- package/dist/types/mention/src/components/i18n.d.ts +57 -0
- package/dist/types/mention/src/i18n/cs.d.ts +20 -0
- package/dist/types/mention/src/i18n/da.d.ts +20 -0
- package/dist/types/mention/src/i18n/de.d.ts +20 -0
- package/dist/types/mention/src/i18n/en.d.ts +20 -0
- package/dist/types/mention/src/i18n/en_GB.d.ts +20 -0
- package/dist/types/mention/src/i18n/es.d.ts +20 -0
- package/dist/types/mention/src/i18n/et.d.ts +20 -0
- package/dist/types/mention/src/i18n/fi.d.ts +20 -0
- package/dist/types/mention/src/i18n/fr.d.ts +20 -0
- package/dist/types/mention/src/i18n/hu.d.ts +20 -0
- package/dist/types/mention/src/i18n/is.d.ts +24 -0
- package/dist/types/mention/src/i18n/it.d.ts +20 -0
- package/dist/types/mention/src/i18n/ja.d.ts +20 -0
- package/dist/types/mention/src/i18n/ko.d.ts +20 -0
- package/dist/types/mention/src/i18n/nb.d.ts +20 -0
- package/dist/types/mention/src/i18n/nl.d.ts +20 -0
- package/dist/types/mention/src/i18n/pl.d.ts +20 -0
- package/dist/types/mention/src/i18n/pt_BR.d.ts +20 -0
- package/dist/types/mention/src/i18n/pt_PT.d.ts +20 -0
- package/dist/types/mention/src/i18n/ro.d.ts +24 -0
- package/dist/types/mention/src/i18n/ru.d.ts +20 -0
- package/dist/types/mention/src/i18n/sk.d.ts +20 -0
- package/dist/types/mention/src/i18n/sv.d.ts +20 -0
- package/dist/types/mention/src/i18n/th.d.ts +20 -0
- package/dist/types/mention/src/i18n/tr.d.ts +20 -0
- package/dist/types/mention/src/i18n/uk.d.ts +20 -0
- package/dist/types/mention/src/i18n/vi.d.ts +20 -0
- package/dist/types/mention/src/i18n/zh.d.ts +20 -0
- package/dist/types/mention/src/i18n/zh_TW.d.ts +20 -0
- package/dist/types/mention/src/index.d.ts +17 -0
- package/dist/types/mention/src/resource.d.ts +10 -0
- package/dist/types/mention/src/shared-styles.d.ts +5 -0
- package/dist/types/mention/src/types.d.ts +168 -0
- package/dist/types/mention/src/util/analytics.d.ts +30 -0
- package/dist/types/mention/src/util/i18n.d.ts +29 -0
- package/dist/types/mention/src/util/id.d.ts +2 -0
- package/dist/types/mention/src/util/index.d.ts +1 -0
- package/dist/types/mention/src/util/logger.d.ts +4 -0
- package/dist/types/mention/src/util/mouse.d.ts +8 -0
- package/dist/types/task-decision/src/analytics/index.d.ts +2 -0
- package/dist/types/task-decision/src/api/TaskDecisionResource.d.ts +67 -0
- package/dist/types/task-decision/src/api/TaskDecisionUtils.d.ts +4 -0
- package/dist/types/task-decision/src/components/DecisionItem.d.ts +15 -0
- package/dist/types/task-decision/src/components/DecisionList.d.ts +9 -0
- package/dist/types/task-decision/src/components/Item.d.ts +25 -0
- package/dist/types/task-decision/src/components/ResourcedTaskItem.d.ts +35 -0
- package/dist/types/task-decision/src/components/TaskItem.d.ts +21 -0
- package/dist/types/task-decision/src/components/TaskList.d.ts +9 -0
- package/dist/types/task-decision/src/components/styles.d.ts +13 -0
- package/dist/types/task-decision/src/components/theme.d.ts +61 -0
- package/dist/types/task-decision/src/index.d.ts +9 -0
- package/dist/types/task-decision/src/type-helpers.d.ts +6 -0
- package/dist/types/task-decision/src/types.d.ts +160 -0
- package/dist/types/user-picker/src/analytics.d.ts +24 -0
- package/dist/types/user-picker/src/clients/UserSourceProvider.d.ts +11 -0
- package/dist/types/user-picker/src/components/AddOptionAvatar.d.ts +6 -0
- package/dist/types/user-picker/src/components/AvatarItemOption.d.ts +13 -0
- package/dist/types/user-picker/src/components/BaseUserPicker.d.ts +65 -0
- package/dist/types/user-picker/src/components/ClearIndicator.d.ts +6 -0
- package/dist/types/user-picker/src/components/CustomOption/index.d.ts +3 -0
- package/dist/types/user-picker/src/components/CustomOption/main.d.ts +15 -0
- package/dist/types/user-picker/src/components/EmailOption/index.d.ts +3 -0
- package/dist/types/user-picker/src/components/EmailOption/main.d.ts +18 -0
- package/dist/types/user-picker/src/components/ExternalUserOption/ExternalAvatarItemOption.d.ts +11 -0
- package/dist/types/user-picker/src/components/ExternalUserOption/InfoIcon.d.ts +3 -0
- package/dist/types/user-picker/src/components/ExternalUserOption/SourcesTooltipContent.d.ts +6 -0
- package/dist/types/user-picker/src/components/ExternalUserOption/index.d.ts +3 -0
- package/dist/types/user-picker/src/components/ExternalUserOption/main.d.ts +12 -0
- package/dist/types/user-picker/src/components/ExternalUserSourcesContainer.d.ts +15 -0
- package/dist/types/user-picker/src/components/GroupOption/index.d.ts +3 -0
- package/dist/types/user-picker/src/components/GroupOption/main.d.ts +16 -0
- package/dist/types/user-picker/src/components/HighlightText.d.ts +9 -0
- package/dist/types/user-picker/src/components/Input.d.ts +22 -0
- package/dist/types/user-picker/src/components/Menu.d.ts +10 -0
- package/dist/types/user-picker/src/components/MessagesIntlProvider.d.ts +3 -0
- package/dist/types/user-picker/src/components/MultiValue.d.ts +26 -0
- package/dist/types/user-picker/src/components/MultiValueContainer.d.ts +30 -0
- package/dist/types/user-picker/src/components/Option.d.ts +14 -0
- package/dist/types/user-picker/src/components/PopupControl.d.ts +7 -0
- package/dist/types/user-picker/src/components/PopupInput.d.ts +8 -0
- package/dist/types/user-picker/src/components/PopupUserPicker.d.ts +39 -0
- package/dist/types/user-picker/src/components/SingleValue.d.ts +5 -0
- package/dist/types/user-picker/src/components/SingleValueContainer.d.ts +9 -0
- package/dist/types/user-picker/src/components/SizeableAvatar.d.ts +10 -0
- package/dist/types/user-picker/src/components/TeamOption/index.d.ts +3 -0
- package/dist/types/user-picker/src/components/TeamOption/main.d.ts +16 -0
- package/dist/types/user-picker/src/components/UserOption.d.ts +15 -0
- package/dist/types/user-picker/src/components/UserPicker.d.ts +16 -0
- package/dist/types/user-picker/src/components/assets/github.d.ts +2 -0
- package/dist/types/user-picker/src/components/assets/google.d.ts +2 -0
- package/dist/types/user-picker/src/components/assets/microsoft.d.ts +2 -0
- package/dist/types/user-picker/src/components/assets/slack.d.ts +2 -0
- package/dist/types/user-picker/src/components/batch.d.ts +1 -0
- package/dist/types/user-picker/src/components/components.d.ts +49 -0
- package/dist/types/user-picker/src/components/creatable.d.ts +12 -0
- package/dist/types/user-picker/src/components/creatableEmailSuggestion.d.ts +19 -0
- package/dist/types/user-picker/src/components/emailValidation.d.ts +3 -0
- package/dist/types/user-picker/src/components/i18n.d.ts +132 -0
- package/dist/types/user-picker/src/components/popup.d.ts +48 -0
- package/dist/types/user-picker/src/components/styles.d.ts +42 -0
- package/dist/types/user-picker/src/components/utils.d.ts +29 -0
- package/dist/types/user-picker/src/i18n/cs.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/da.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/de.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/en.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/en_GB.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/es.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/et.d.ts +15 -0
- package/dist/types/user-picker/src/i18n/fi.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/fr.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/hu.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/is.d.ts +7 -0
- package/dist/types/user-picker/src/i18n/it.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/ja.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/ko.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/nb.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/nl.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/pl.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/pt_BR.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/pt_PT.d.ts +15 -0
- package/dist/types/user-picker/src/i18n/ro.d.ts +7 -0
- package/dist/types/user-picker/src/i18n/ru.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/sk.d.ts +15 -0
- package/dist/types/user-picker/src/i18n/sv.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/th.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/tr.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/uk.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/vi.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/zh.d.ts +35 -0
- package/dist/types/user-picker/src/i18n/zh_TW.d.ts +35 -0
- package/dist/types/user-picker/src/index.d.ts +7 -0
- package/dist/types/user-picker/src/types.d.ts +318 -0
- package/dist/types/user-picker/src/util/i18n-util.d.ts +11 -0
- package/dist/types/user-picker/src/util/ufoExperiences.d.ts +10 -0
- package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-from-upload.d.ts +1 -1
- package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-repository-usage-clear.d.ts +2 -2
- package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-resource-usage-clear.d.ts +1 -1
- package/dist/types/{emoji → util-data-test/src/emoji}/get-atlassian-emoji-data.d.ts +1 -1
- package/dist/types/util-data-test/src/emoji/get-atlassian-emojis.d.ts +1 -0
- package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-provider.d.ts +1 -1
- package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-repository.d.ts +1 -1
- package/dist/types/util-data-test/src/emoji/get-emojis.d.ts +1 -0
- package/dist/types/{emoji → util-data-test/src/emoji}/get-site-emoji-data.d.ts +1 -1
- package/dist/types/util-data-test/src/emoji/get-site-emojis.d.ts +1 -0
- package/dist/types/{emoji → util-data-test/src/emoji}/get-standard-emoji-data.d.ts +1 -1
- package/dist/types/util-data-test/src/emoji/get-standard-emojis.d.ts +1 -0
- package/dist/types/{emoji → util-data-test/src/emoji}/mock-emoji-resource-factory.d.ts +1 -1
- package/dist/types/{emoji → util-data-test/src/emoji}/mock-emoji-resource.d.ts +2 -2
- package/dist/types/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
- package/dist/types/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource.d.ts +2 -2
- package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/types.d.ts +1 -1
- package/dist/{types-ts4.5 → types/util-data-test/src}/emoji-test/filter-to-searchable.d.ts +1 -1
- package/dist/{types-ts4.5 → types/util-data-test/src}/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
- package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emojis.d.ts +1 -1
- package/dist/types/util-data-test/src/emoji-test/get-test-searchable-emojis.d.ts +1 -0
- package/dist/types/util-data-test/src/emoji-test/test-emoji-repository.d.ts +5 -0
- package/dist/types/util-data-test/src/logger.d.ts +4 -0
- package/dist/types/{mention → util-data-test/src/mention}/create-mock-mention-name-resolver.d.ts +1 -1
- package/dist/{types-ts4.5 → types/util-data-test/src}/mention/mock-mention-name-client.d.ts +1 -1
- package/dist/types/{mention → util-data-test/src/mention}/mock-mention-resource-with-info-hints.d.ts +1 -1
- package/dist/{types-ts4.5 → types/util-data-test/src}/mention/mock-mention-resource.d.ts +2 -2
- package/dist/types/{mention → util-data-test/src/mention}/mock-presence-resource.d.ts +1 -1
- package/dist/types/{task-decision → util-data-test/src/task-decision}/mock-task-decision-resource.d.ts +1 -1
- package/dist/types/{task-decision → util-data-test/src/task-decision}/utils.d.ts +2 -2
- package/dist/types/util-data-test/src/user-picker/ChevronRight.d.ts +3 -0
- package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-custom-data.d.ts +1 -1
- package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-team-data.d.ts +1 -1
- package/dist/types-ts4.5/emoji/src/api/EmojiLoader.d.ts +13 -0
- package/dist/types-ts4.5/emoji/src/api/EmojiRepository.d.ts +72 -0
- package/dist/types-ts4.5/emoji/src/api/EmojiRepositoryRegex.d.ts +1 -0
- package/dist/types-ts4.5/emoji/src/api/EmojiResource.d.ts +139 -0
- package/dist/types-ts4.5/emoji/src/api/EmojiUtils.d.ts +24 -0
- package/dist/types-ts4.5/emoji/src/api/internal/Comparators.d.ts +109 -0
- package/dist/types-ts4.5/emoji/src/api/internal/UsageFrequencyTracker.d.ts +46 -0
- package/dist/types-ts4.5/emoji/src/api/media/MediaEmojiCache.d.ts +53 -0
- package/dist/types-ts4.5/emoji/src/api/media/MediaImageLoader.d.ts +21 -0
- package/dist/types-ts4.5/emoji/src/api/media/SiteEmojiResource.d.ts +46 -0
- package/dist/types-ts4.5/emoji/src/api/media/TokenManager.d.ts +13 -0
- package/dist/types-ts4.5/emoji/src/components/i18n.d.ts +227 -0
- package/dist/types-ts4.5/emoji/src/components/picker/categories.d.ts +7 -0
- package/dist/types-ts4.5/emoji/src/resource.d.ts +5 -0
- package/dist/types-ts4.5/emoji/src/types.d.ts +363 -0
- package/dist/types-ts4.5/emoji/src/util/DuplicateLimitedQueue.d.ts +91 -0
- package/dist/types-ts4.5/emoji/src/util/StoredDuplicateLimitedQueue.d.ts +46 -0
- package/dist/types-ts4.5/emoji/src/util/analytics/samplingUfo.d.ts +38 -0
- package/dist/types-ts4.5/emoji/src/util/analytics/ufoExperiences.d.ts +14 -0
- package/dist/types-ts4.5/emoji/src/util/constants.d.ts +60 -0
- package/dist/types-ts4.5/emoji/src/util/image.d.ts +10 -0
- package/dist/types-ts4.5/emoji/src/util/storage-available.d.ts +3 -0
- package/dist/types-ts4.5/emoji/src/util/type-helpers.d.ts +23 -0
- package/dist/types-ts4.5/emoji/src/utils.d.ts +3 -0
- package/dist/types-ts4.5/mention/src/_constants.d.ts +1 -0
- package/dist/types-ts4.5/mention/src/api/ContextMentionResource.d.ts +23 -0
- package/dist/types-ts4.5/mention/src/api/MentionNameClient.d.ts +11 -0
- package/dist/types-ts4.5/mention/src/api/MentionNameResolver.d.ts +23 -0
- package/dist/types-ts4.5/mention/src/api/MentionResource.d.ts +93 -0
- package/dist/types-ts4.5/mention/src/api/PresenceResource.d.ts +119 -0
- package/dist/types-ts4.5/mention/src/api/TeamMentionResource.d.ts +33 -0
- package/dist/types-ts4.5/mention/src/components/LockCircleIcon/index.d.ts +3 -0
- package/dist/types-ts4.5/mention/src/components/Mention/PrimitiveMention.d.ts +7 -0
- package/dist/types-ts4.5/mention/src/components/Mention/ResourcedMention.d.ts +27 -0
- package/dist/types-ts4.5/mention/src/components/Mention/index.d.ts +31 -0
- package/dist/types-ts4.5/mention/src/components/Mention/ufoExperiences.d.ts +9 -0
- package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +7 -0
- package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +5 -0
- package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/index.d.ts +5 -0
- package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/styles.d.ts +5 -0
- package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/types.d.ts +4 -0
- package/dist/types-ts4.5/mention/src/components/MentionItem/MentionHighlightHelpers.d.ts +3 -0
- package/dist/types-ts4.5/mention/src/components/MentionItem/index.d.ts +16 -0
- package/dist/types-ts4.5/mention/src/components/MentionItem/styles.d.ts +46 -0
- package/dist/types-ts4.5/mention/src/components/MentionList/index.d.ts +41 -0
- package/dist/types-ts4.5/mention/src/components/MentionList/styles.d.ts +8 -0
- package/dist/types-ts4.5/mention/src/components/MentionListError/GenericErrorIllustration.d.ts +7 -0
- package/dist/types-ts4.5/mention/src/components/MentionListError/index.d.ts +13 -0
- package/dist/types-ts4.5/mention/src/components/MentionListError/styles.d.ts +17 -0
- package/dist/types-ts4.5/mention/src/components/MentionPicker/index.d.ts +77 -0
- package/dist/types-ts4.5/mention/src/components/MentionPicker/styles.d.ts +12 -0
- package/dist/types-ts4.5/mention/src/components/MessagesIntlProvider/index.d.ts +3 -0
- package/dist/types-ts4.5/mention/src/components/NoAccessTooltip/index.d.ts +6 -0
- package/dist/types-ts4.5/mention/src/components/NoAccessTooltip/main.d.ts +7 -0
- package/dist/types-ts4.5/mention/src/components/Popup/index.d.ts +26 -0
- package/dist/types-ts4.5/mention/src/components/ResourcedMentionList/index.d.ts +46 -0
- package/dist/types-ts4.5/mention/src/components/Scrollable/index.d.ts +11 -0
- package/dist/types-ts4.5/mention/src/components/Scrollable/styles.d.ts +5 -0
- package/dist/types-ts4.5/mention/src/components/i18n.d.ts +57 -0
- package/dist/types-ts4.5/mention/src/i18n/cs.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/da.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/de.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/en.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/en_GB.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/es.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/et.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/fi.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/fr.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/hu.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/is.d.ts +24 -0
- package/dist/types-ts4.5/mention/src/i18n/it.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/ja.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/ko.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/nb.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/nl.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/pl.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/pt_BR.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/pt_PT.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/ro.d.ts +24 -0
- package/dist/types-ts4.5/mention/src/i18n/ru.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/sk.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/sv.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/th.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/tr.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/uk.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/vi.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/zh.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/i18n/zh_TW.d.ts +20 -0
- package/dist/types-ts4.5/mention/src/index.d.ts +17 -0
- package/dist/types-ts4.5/mention/src/resource.d.ts +10 -0
- package/dist/types-ts4.5/mention/src/shared-styles.d.ts +5 -0
- package/dist/types-ts4.5/mention/src/types.d.ts +168 -0
- package/dist/types-ts4.5/mention/src/util/analytics.d.ts +30 -0
- package/dist/types-ts4.5/mention/src/util/i18n.d.ts +29 -0
- package/dist/types-ts4.5/mention/src/util/id.d.ts +2 -0
- package/dist/types-ts4.5/mention/src/util/index.d.ts +1 -0
- package/dist/types-ts4.5/mention/src/util/mouse.d.ts +8 -0
- package/dist/types-ts4.5/task-decision/src/analytics/index.d.ts +2 -0
- package/dist/types-ts4.5/task-decision/src/api/TaskDecisionResource.d.ts +67 -0
- package/dist/types-ts4.5/task-decision/src/api/TaskDecisionUtils.d.ts +4 -0
- package/dist/types-ts4.5/task-decision/src/components/DecisionItem.d.ts +15 -0
- package/dist/types-ts4.5/task-decision/src/components/DecisionList.d.ts +9 -0
- package/dist/types-ts4.5/task-decision/src/components/Item.d.ts +25 -0
- package/dist/types-ts4.5/task-decision/src/components/ResourcedTaskItem.d.ts +35 -0
- package/dist/types-ts4.5/task-decision/src/components/TaskItem.d.ts +21 -0
- package/dist/types-ts4.5/task-decision/src/components/TaskList.d.ts +9 -0
- package/dist/types-ts4.5/task-decision/src/components/styles.d.ts +13 -0
- package/dist/types-ts4.5/task-decision/src/components/theme.d.ts +61 -0
- package/dist/types-ts4.5/task-decision/src/index.d.ts +9 -0
- package/dist/types-ts4.5/task-decision/src/type-helpers.d.ts +6 -0
- package/dist/types-ts4.5/task-decision/src/types.d.ts +160 -0
- package/dist/types-ts4.5/user-picker/src/analytics.d.ts +24 -0
- package/dist/types-ts4.5/user-picker/src/clients/UserSourceProvider.d.ts +11 -0
- package/dist/types-ts4.5/user-picker/src/components/AddOptionAvatar.d.ts +6 -0
- package/dist/types-ts4.5/user-picker/src/components/AvatarItemOption.d.ts +13 -0
- package/dist/types-ts4.5/user-picker/src/components/BaseUserPicker.d.ts +65 -0
- package/dist/types-ts4.5/user-picker/src/components/ClearIndicator.d.ts +6 -0
- package/dist/types-ts4.5/user-picker/src/components/CustomOption/index.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/CustomOption/main.d.ts +15 -0
- package/dist/types-ts4.5/user-picker/src/components/EmailOption/index.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/EmailOption/main.d.ts +18 -0
- package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/ExternalAvatarItemOption.d.ts +11 -0
- package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/SourcesTooltipContent.d.ts +6 -0
- package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/index.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/main.d.ts +12 -0
- package/dist/types-ts4.5/user-picker/src/components/ExternalUserSourcesContainer.d.ts +15 -0
- package/dist/types-ts4.5/user-picker/src/components/GroupOption/index.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/GroupOption/main.d.ts +16 -0
- package/dist/types-ts4.5/user-picker/src/components/HighlightText.d.ts +9 -0
- package/dist/types-ts4.5/user-picker/src/components/Input.d.ts +22 -0
- package/dist/types-ts4.5/user-picker/src/components/Menu.d.ts +10 -0
- package/dist/types-ts4.5/user-picker/src/components/MessagesIntlProvider.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/MultiValue.d.ts +26 -0
- package/dist/types-ts4.5/user-picker/src/components/MultiValueContainer.d.ts +30 -0
- package/dist/types-ts4.5/user-picker/src/components/Option.d.ts +14 -0
- package/dist/types-ts4.5/user-picker/src/components/PopupControl.d.ts +7 -0
- package/dist/types-ts4.5/user-picker/src/components/PopupInput.d.ts +8 -0
- package/dist/types-ts4.5/user-picker/src/components/PopupUserPicker.d.ts +39 -0
- package/dist/types-ts4.5/user-picker/src/components/SingleValue.d.ts +5 -0
- package/dist/types-ts4.5/user-picker/src/components/SingleValueContainer.d.ts +9 -0
- package/dist/types-ts4.5/user-picker/src/components/SizeableAvatar.d.ts +10 -0
- package/dist/types-ts4.5/user-picker/src/components/TeamOption/index.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/TeamOption/main.d.ts +16 -0
- package/dist/types-ts4.5/user-picker/src/components/UserOption.d.ts +15 -0
- package/dist/types-ts4.5/user-picker/src/components/UserPicker.d.ts +16 -0
- package/dist/types-ts4.5/user-picker/src/components/assets/github.d.ts +2 -0
- package/dist/types-ts4.5/user-picker/src/components/assets/google.d.ts +2 -0
- package/dist/types-ts4.5/user-picker/src/components/assets/microsoft.d.ts +2 -0
- package/dist/types-ts4.5/user-picker/src/components/assets/slack.d.ts +2 -0
- package/dist/types-ts4.5/user-picker/src/components/batch.d.ts +1 -0
- package/dist/types-ts4.5/user-picker/src/components/components.d.ts +49 -0
- package/dist/types-ts4.5/user-picker/src/components/creatable.d.ts +12 -0
- package/dist/types-ts4.5/user-picker/src/components/creatableEmailSuggestion.d.ts +19 -0
- package/dist/types-ts4.5/user-picker/src/components/emailValidation.d.ts +3 -0
- package/dist/types-ts4.5/user-picker/src/components/i18n.d.ts +132 -0
- package/dist/types-ts4.5/user-picker/src/components/popup.d.ts +48 -0
- package/dist/types-ts4.5/user-picker/src/components/styles.d.ts +42 -0
- package/dist/types-ts4.5/user-picker/src/components/utils.d.ts +29 -0
- package/dist/types-ts4.5/user-picker/src/i18n/cs.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/da.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/de.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/en.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/en_GB.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/es.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/et.d.ts +15 -0
- package/dist/types-ts4.5/user-picker/src/i18n/fi.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/fr.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/hu.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/is.d.ts +7 -0
- package/dist/types-ts4.5/user-picker/src/i18n/it.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/ja.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/ko.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/nb.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/nl.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/pl.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/pt_BR.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/pt_PT.d.ts +15 -0
- package/dist/types-ts4.5/user-picker/src/i18n/ro.d.ts +7 -0
- package/dist/types-ts4.5/user-picker/src/i18n/ru.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/sk.d.ts +15 -0
- package/dist/types-ts4.5/user-picker/src/i18n/sv.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/th.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/tr.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/uk.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/vi.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/zh.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/i18n/zh_TW.d.ts +35 -0
- package/dist/types-ts4.5/user-picker/src/index.d.ts +7 -0
- package/dist/types-ts4.5/user-picker/src/types.d.ts +321 -0
- package/dist/types-ts4.5/user-picker/src/util/i18n-util.d.ts +11 -0
- package/dist/types-ts4.5/user-picker/src/util/ufoExperiences.d.ts +10 -0
- package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-from-upload.d.ts +1 -1
- package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-repository-usage-clear.d.ts +2 -2
- package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-resource-usage-clear.d.ts +1 -1
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-atlassian-emoji-data.d.ts +1 -1
- package/dist/types-ts4.5/util-data-test/src/emoji/get-atlassian-emojis.d.ts +1 -0
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-provider.d.ts +1 -1
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-repository.d.ts +1 -1
- package/dist/types-ts4.5/util-data-test/src/emoji/get-emojis.d.ts +1 -0
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-site-emoji-data.d.ts +1 -1
- package/dist/types-ts4.5/util-data-test/src/emoji/get-site-emojis.d.ts +1 -0
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-standard-emoji-data.d.ts +1 -1
- package/dist/types-ts4.5/util-data-test/src/emoji/get-standard-emojis.d.ts +1 -0
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-emoji-resource-factory.d.ts +1 -1
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-emoji-resource.d.ts +2 -2
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
- package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource.d.ts +2 -2
- package/dist/{types → types-ts4.5/util-data-test/src}/emoji/types.d.ts +1 -1
- package/dist/{types → types-ts4.5/util-data-test/src}/emoji-test/filter-to-searchable.d.ts +1 -1
- package/dist/{types → types-ts4.5/util-data-test/src}/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
- package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emojis.d.ts +1 -1
- package/dist/types-ts4.5/util-data-test/src/emoji-test/get-test-searchable-emojis.d.ts +1 -0
- package/dist/types-ts4.5/util-data-test/src/emoji-test/test-emoji-repository.d.ts +5 -0
- package/dist/types-ts4.5/util-data-test/src/logger.d.ts +4 -0
- package/dist/types-ts4.5/{mention → util-data-test/src/mention}/create-mock-mention-name-resolver.d.ts +1 -1
- package/dist/{types → types-ts4.5/util-data-test/src}/mention/mock-mention-name-client.d.ts +1 -1
- package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mock-mention-resource-with-info-hints.d.ts +1 -1
- package/dist/{types → types-ts4.5/util-data-test/src}/mention/mock-mention-resource.d.ts +2 -2
- package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mock-presence-resource.d.ts +1 -1
- package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/mock-task-decision-resource.d.ts +1 -1
- package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/utils.d.ts +2 -2
- package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-custom-data.d.ts +1 -1
- package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-team-data.d.ts +1 -1
- package/package.json +3 -8
- package/dist/types/emoji/get-atlassian-emojis.d.ts +0 -1
- package/dist/types/emoji/get-emojis.d.ts +0 -1
- package/dist/types/emoji/get-site-emojis.d.ts +0 -1
- package/dist/types/emoji/get-standard-emojis.d.ts +0 -1
- package/dist/types/emoji-test/get-test-searchable-emojis.d.ts +0 -1
- package/dist/types/emoji-test/test-emoji-repository.d.ts +0 -5
- package/dist/types/json-data/emoji-all.json +0 -54398
- package/dist/types/json-data/mention-data.json +0 -393
- package/dist/types/json-data/presence-invalid-info.json +0 -47
- package/dist/types/json-data/presence-valid-info.json +0 -63
- package/dist/types/json-data/sample-tasks.json +0 -80
- package/dist/types/json-data/service-data-atlassian.json +0 -272
- package/dist/types/json-data/service-data-standard.json +0 -54098
- package/dist/types/json-data/slack-conversations-data.json +0 -476
- package/dist/types/json-data/slack-workspaces-data.json +0 -19
- package/dist/types/json-data/test-emoji-atlassian.json +0 -224
- package/dist/types/json-data/test-emoji-standard.json +0 -2000
- package/dist/types/json-data/user-picker-data.json +0 -361
- package/dist/types-ts4.5/emoji/get-atlassian-emojis.d.ts +0 -1
- package/dist/types-ts4.5/emoji/get-emojis.d.ts +0 -1
- package/dist/types-ts4.5/emoji/get-site-emojis.d.ts +0 -1
- package/dist/types-ts4.5/emoji/get-standard-emojis.d.ts +0 -1
- package/dist/types-ts4.5/emoji-test/get-test-searchable-emojis.d.ts +0 -1
- package/dist/types-ts4.5/emoji-test/test-emoji-repository.d.ts +0 -5
- package/dist/types-ts4.5/json-data/emoji-all.json +0 -54398
- package/dist/types-ts4.5/json-data/mention-data.json +0 -393
- package/dist/types-ts4.5/json-data/presence-invalid-info.json +0 -47
- package/dist/types-ts4.5/json-data/presence-valid-info.json +0 -63
- package/dist/types-ts4.5/json-data/sample-tasks.json +0 -80
- package/dist/types-ts4.5/json-data/service-data-atlassian.json +0 -272
- package/dist/types-ts4.5/json-data/service-data-standard.json +0 -54098
- package/dist/types-ts4.5/json-data/slack-conversations-data.json +0 -476
- package/dist/types-ts4.5/json-data/slack-workspaces-data.json +0 -19
- package/dist/types-ts4.5/json-data/test-emoji-atlassian.json +0 -224
- package/dist/types-ts4.5/json-data/test-emoji-standard.json +0 -2000
- package/dist/types-ts4.5/json-data/user-picker-data.json +0 -361
- /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource-standard-atlassian.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource-usage-clear.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/image-emoji.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/logged-user.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/lorem.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/site-emoji-foo.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/site-emoji-wtf.d.ts +0 -0
- /package/dist/types/{emoji → util-data-test/src/emoji}/sprite-emoji.d.ts +0 -0
- /package/dist/types/{emoji-constants → util-data-test/src/emoji-constants}/index.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/emoji-samples.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/expires-at.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-non-uploading-emoji-resource.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-emojis.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-service-emojis.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-repository.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource-non-uploading.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-image-emoji.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-media-api-token.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-foo.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-repository.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-wtf.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emojis.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-service-emojis.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-sprite-emoji.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-emojis.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-service-emojis.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/media-emoji.d.ts +0 -0
- /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/media-service-emoji.d.ts +0 -0
- /package/dist/types/{mention → util-data-test/src/mention}/mention-story-data.d.ts +0 -0
- /package/dist/types/{mention → util-data-test/src/mention}/mention-test-data.d.ts +0 -0
- /package/dist/types/{mention → util-data-test/src/mention}/presence-data.d.ts +0 -0
- /package/dist/types/{mention → util-data-test/src/mention}/utils.d.ts +0 -0
- /package/dist/types/{profilecard → util-data-test/src/profilecard}/get-mock-profilecard-client.d.ts +0 -0
- /package/dist/types/{profilecard → util-data-test/src/profilecard}/profilecard-data.d.ts +0 -0
- /package/dist/types/{profilecard → util-data-test/src/profilecard}/util.d.ts +0 -0
- /package/dist/types/{slack-data → util-data-test/src/slack-data}/index.d.ts +0 -0
- /package/dist/types/{slack-data → util-data-test/src/slack-data}/slack-conversations-data.d.ts +0 -0
- /package/dist/types/{slack-data → util-data-test/src/slack-data}/slack-workspaces-data.d.ts +0 -0
- /package/dist/types/{task-decision → util-data-test/src/task-decision}/task-decision-story-data.d.ts +0 -0
- /package/dist/types/{user-picker → util-data-test/src/user-picker}/index.d.ts +0 -0
- /package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-data.d.ts +0 -0
- /package/dist/types-ts4.5/{logger.d.ts → emoji/src/util/logger.d.ts} +0 -0
- /package/dist/{types → types-ts4.5/mention/src/util}/logger.d.ts +0 -0
- /package/dist/types-ts4.5/user-picker/{ChevronRight.d.ts → src/components/ExternalUserOption/InfoIcon.d.ts} +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource-standard-atlassian.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource-usage-clear.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/image-emoji.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/logged-user.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/lorem.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/site-emoji-foo.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/site-emoji-wtf.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/sprite-emoji.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-constants → util-data-test/src/emoji-constants}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/emoji-samples.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/expires-at.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-non-uploading-emoji-resource.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-emojis.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-service-emojis.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-repository.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource-non-uploading.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-image-emoji.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-media-api-token.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-foo.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-repository.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-wtf.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emojis.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-service-emojis.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-sprite-emoji.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-emojis.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-service-emojis.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/media-emoji.d.ts +0 -0
- /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/media-service-emoji.d.ts +0 -0
- /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mention-story-data.d.ts +0 -0
- /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mention-test-data.d.ts +0 -0
- /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/presence-data.d.ts +0 -0
- /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/utils.d.ts +0 -0
- /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/get-mock-profilecard-client.d.ts +0 -0
- /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/profilecard-data.d.ts +0 -0
- /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/util.d.ts +0 -0
- /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/slack-conversations-data.d.ts +0 -0
- /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/slack-workspaces-data.d.ts +0 -0
- /package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/task-decision-story-data.d.ts +0 -0
- /package/dist/{types → types-ts4.5/util-data-test/src}/user-picker/ChevronRight.d.ts +0 -0
- /package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-data.d.ts +0 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { IntlShape } from 'react-intl-next';
|
|
4
|
+
import { MentionProvider } from '../../api/MentionResource';
|
|
5
|
+
import { PresenceProvider } from '../../api/PresenceResource';
|
|
6
|
+
import { OnMentionEvent } from '../../types';
|
|
7
|
+
export interface OnOpen {
|
|
8
|
+
(): void;
|
|
9
|
+
}
|
|
10
|
+
export interface OnClose {
|
|
11
|
+
(): void;
|
|
12
|
+
}
|
|
13
|
+
export type Position = 'above' | 'below' | 'auto';
|
|
14
|
+
export interface Props {
|
|
15
|
+
resourceProvider: MentionProvider;
|
|
16
|
+
presenceProvider?: PresenceProvider;
|
|
17
|
+
query?: string;
|
|
18
|
+
onSelection?: OnMentionEvent;
|
|
19
|
+
onOpen?: OnOpen;
|
|
20
|
+
onClose?: OnClose;
|
|
21
|
+
target?: string;
|
|
22
|
+
position?: Position;
|
|
23
|
+
zIndex?: number | string;
|
|
24
|
+
offsetX?: number;
|
|
25
|
+
offsetY?: number;
|
|
26
|
+
}
|
|
27
|
+
export interface State {
|
|
28
|
+
visible: boolean;
|
|
29
|
+
info?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @class MentionPicker
|
|
33
|
+
*/
|
|
34
|
+
export declare class MentionPicker extends React.PureComponent<Props & WithAnalyticsEventsProps & {
|
|
35
|
+
intl: IntlShape;
|
|
36
|
+
}, State> {
|
|
37
|
+
private subscriberKey;
|
|
38
|
+
private mentionListRef?;
|
|
39
|
+
static defaultProps: {
|
|
40
|
+
onSelection: () => void;
|
|
41
|
+
onOpen: () => void;
|
|
42
|
+
onClose: () => void;
|
|
43
|
+
};
|
|
44
|
+
constructor(props: Props & WithAnalyticsEventsProps & {
|
|
45
|
+
intl: IntlShape;
|
|
46
|
+
});
|
|
47
|
+
componentDidMount(): void;
|
|
48
|
+
UNSAFE_componentWillReceiveProps(nextProps: Props & WithAnalyticsEventsProps): void;
|
|
49
|
+
componentWillUnmount(): void;
|
|
50
|
+
selectNext: () => void;
|
|
51
|
+
selectPrevious: () => void;
|
|
52
|
+
selectIndex: (index: number, callback?: () => any) => void;
|
|
53
|
+
selectId: (id: string, callback?: () => any) => void;
|
|
54
|
+
chooseCurrentSelection: () => void;
|
|
55
|
+
mentionsCount: () => number;
|
|
56
|
+
private applyPropChanges;
|
|
57
|
+
private subscribeResourceProvider;
|
|
58
|
+
private unsubscribeResourceProvider;
|
|
59
|
+
/**
|
|
60
|
+
* Called after the 'visible' state is changed to decide whether the onOpen or onClose
|
|
61
|
+
* handlers should be called.
|
|
62
|
+
*
|
|
63
|
+
* It should be noted that the visible state of the component is not considered in
|
|
64
|
+
* this function. Instead the old state and new state should be passed as parameters.
|
|
65
|
+
*/
|
|
66
|
+
private onFilterVisibilityChange;
|
|
67
|
+
private filterChange;
|
|
68
|
+
private filterError;
|
|
69
|
+
private filterInfo;
|
|
70
|
+
private handleMentionListRef;
|
|
71
|
+
render(): JSX.Element;
|
|
72
|
+
}
|
|
73
|
+
export declare const MentionPickerWithAnalytics: React.ForwardRefExoticComponent<Omit<Pick<import("react-intl-next").WithIntlProps<React.PropsWithChildren<Props & WithAnalyticsEventsProps & {
|
|
74
|
+
intl: IntlShape;
|
|
75
|
+
}>>, "children" | "createAnalyticsEvent" | keyof Props | "forwardedRef"> & React.RefAttributes<any>, keyof WithAnalyticsEventsProps> & React.RefAttributes<any>>;
|
|
76
|
+
export type MentionPickerWithAnalytics = MentionPicker;
|
|
77
|
+
export default MentionPickerWithAnalytics;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MentionPickerStyleProps {
|
|
3
|
+
visible?: boolean | string;
|
|
4
|
+
}
|
|
5
|
+
export declare const MentionPickerStyle: import("@emotion/styled").StyledComponent<{
|
|
6
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
7
|
+
as?: import("react").ElementType<any> | undefined;
|
|
8
|
+
} & MentionPickerStyleProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
+
export declare const MentionPickerInfoStyle: import("@emotion/styled").StyledComponent<{
|
|
10
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
11
|
+
as?: import("react").ElementType<any> | undefined;
|
|
12
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface Props {
|
|
3
|
+
target?: string;
|
|
4
|
+
relativePosition?: 'above' | 'below' | 'auto';
|
|
5
|
+
offsetX?: number;
|
|
6
|
+
offsetY?: number;
|
|
7
|
+
zIndex?: number | string;
|
|
8
|
+
children?: any;
|
|
9
|
+
}
|
|
10
|
+
export default class Popup extends React.PureComponent<Props, {}> {
|
|
11
|
+
private popup?;
|
|
12
|
+
static defaultProps: {
|
|
13
|
+
relativePosition: string;
|
|
14
|
+
offsetX: number;
|
|
15
|
+
offsetY: number;
|
|
16
|
+
zIndex: number;
|
|
17
|
+
};
|
|
18
|
+
componentDidMount(): void;
|
|
19
|
+
componentDidUpdate(): void;
|
|
20
|
+
componentWillUnmount(): void;
|
|
21
|
+
_applyBelowPosition(): void;
|
|
22
|
+
_applyAbovePosition(): void;
|
|
23
|
+
_applyAbsolutePosition(): void;
|
|
24
|
+
_renderContent(): void;
|
|
25
|
+
render(): JSX.Element;
|
|
26
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
|
|
3
|
+
import { MentionProvider } from '../../api/MentionResource';
|
|
4
|
+
import { PresenceProvider } from '../../api/PresenceResource';
|
|
5
|
+
import { MentionDescription, OnMentionEvent } from '../../types';
|
|
6
|
+
export interface Props {
|
|
7
|
+
resourceProvider: MentionProvider;
|
|
8
|
+
presenceProvider?: PresenceProvider;
|
|
9
|
+
query?: string;
|
|
10
|
+
onSelection?: OnMentionEvent;
|
|
11
|
+
resourceError?: Error;
|
|
12
|
+
}
|
|
13
|
+
export interface State {
|
|
14
|
+
resourceError?: Error;
|
|
15
|
+
mentions: MentionDescription[];
|
|
16
|
+
}
|
|
17
|
+
export declare class ResourcedMentionListWithoutAnalytics extends React.PureComponent<Props & WithAnalyticsEventsProps, State> {
|
|
18
|
+
private subscriberKey;
|
|
19
|
+
private mentionListRef?;
|
|
20
|
+
constructor(props: Props & WithAnalyticsEventsProps);
|
|
21
|
+
componentDidMount(): void;
|
|
22
|
+
UNSAFE_componentWillReceiveProps(nextProps: Props): void;
|
|
23
|
+
componentWillUnmount(): void;
|
|
24
|
+
selectNext: () => void;
|
|
25
|
+
selectPrevious: () => void;
|
|
26
|
+
selectIndex: (index: number, callback?: () => any) => void;
|
|
27
|
+
selectId: (id: string, callback?: () => any) => void;
|
|
28
|
+
chooseCurrentSelection: () => void;
|
|
29
|
+
mentionsCount: () => number;
|
|
30
|
+
private subscribeMentionProvider;
|
|
31
|
+
private subscribePresenceProvider;
|
|
32
|
+
private unsubscribeMentionProvider;
|
|
33
|
+
private unsubscribePresenceProvider;
|
|
34
|
+
private applyPropChanges;
|
|
35
|
+
private refreshPresences;
|
|
36
|
+
private filterChange;
|
|
37
|
+
private sendAnalytics;
|
|
38
|
+
private filterError;
|
|
39
|
+
private presenceUpdate;
|
|
40
|
+
private notifySelection;
|
|
41
|
+
private handleMentionListRef;
|
|
42
|
+
render(): JSX.Element;
|
|
43
|
+
}
|
|
44
|
+
declare const ResourcedMentionList: React.ForwardRefExoticComponent<Omit<Props & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps> & React.RefAttributes<any>>;
|
|
45
|
+
type ResourcedMentionList = ResourcedMentionListWithoutAnalytics;
|
|
46
|
+
export default ResourcedMentionList;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import MentionItem from '../MentionItem';
|
|
3
|
+
export interface Props {
|
|
4
|
+
children?: React.ReactNode | React.ReactNode[];
|
|
5
|
+
}
|
|
6
|
+
export default class Scrollable extends React.PureComponent<Props, {}> {
|
|
7
|
+
private scrollableDiv?;
|
|
8
|
+
reveal: (child: MentionItem) => void;
|
|
9
|
+
private handleRef;
|
|
10
|
+
render(): JSX.Element;
|
|
11
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const ScrollableStyle: import("@emotion/styled").StyledComponent<{
|
|
3
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
+
as?: import("react").ElementType<any> | undefined;
|
|
5
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export declare const messages: {
|
|
2
|
+
unknownUserError: {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
noAccessWarning: {
|
|
8
|
+
id: string;
|
|
9
|
+
defaultMessage: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
noAccessLabel: {
|
|
13
|
+
id: string;
|
|
14
|
+
defaultMessage: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
defaultHeadline: {
|
|
18
|
+
id: string;
|
|
19
|
+
defaultMessage: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
defaultAdvisedAction: {
|
|
23
|
+
id: string;
|
|
24
|
+
defaultMessage: string;
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
loginAgain: {
|
|
28
|
+
id: string;
|
|
29
|
+
defaultMessage: string;
|
|
30
|
+
description: string;
|
|
31
|
+
};
|
|
32
|
+
differentText: {
|
|
33
|
+
id: string;
|
|
34
|
+
defaultMessage: string;
|
|
35
|
+
description: string;
|
|
36
|
+
};
|
|
37
|
+
memberCountWithoutYou: {
|
|
38
|
+
id: string;
|
|
39
|
+
defaultMessage: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
42
|
+
memberCountWithYou: {
|
|
43
|
+
id: string;
|
|
44
|
+
defaultMessage: string;
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
plus50MembersWithoutYou: {
|
|
48
|
+
id: string;
|
|
49
|
+
defaultMessage: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
plus50MembersWithYou: {
|
|
53
|
+
id: string;
|
|
54
|
+
defaultMessage: string;
|
|
55
|
+
description: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.meantion.highlight.close.button.tooltip': string;
|
|
9
|
+
'fabric.elements.mentions.team.mention.highlight.description': string;
|
|
10
|
+
'fabric.elements.mentions.team.mention.highlight.description.link': string;
|
|
11
|
+
'fabric.elements.mentions.team.mention.highlight.title': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
declare const _default: {
|
|
8
|
+
'fabric.mention.unknow.user.error': string;
|
|
9
|
+
'fabric.mention.noAccess.warning': string;
|
|
10
|
+
'fabric.mention.noAccess.label': string;
|
|
11
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.loginAgain': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
16
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
17
|
+
'fabric.elements.mentions.team.member.50plus': string;
|
|
18
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
19
|
+
'fabric.elements.mentions.team.mention.highlight.title': string;
|
|
20
|
+
'fabric.elements.mentions.team.mention.highlight.description': string;
|
|
21
|
+
'fabric.elements.mentions.team.mention.highlight.description.link': string;
|
|
22
|
+
'fabric.elements.mentions.team.meantion.highlight.close.button.tooltip': string;
|
|
23
|
+
};
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
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.mentions.team.member.50plus': string;
|
|
9
|
+
'fabric.elements.mentions.team.member.50plus.including.you': string;
|
|
10
|
+
'fabric.elements.mentions.team.member.count': string;
|
|
11
|
+
'fabric.elements.mentions.team.member.count.including.you': string;
|
|
12
|
+
'fabric.mention.error.defaultAction': string;
|
|
13
|
+
'fabric.mention.error.defaultHeadline': string;
|
|
14
|
+
'fabric.mention.error.differentText': string;
|
|
15
|
+
'fabric.mention.error.loginAgain': string;
|
|
16
|
+
'fabric.mention.noAccess.label': string;
|
|
17
|
+
'fabric.mention.noAccess.warning': string;
|
|
18
|
+
'fabric.mention.unknow.user.error': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|