@kalamazoo/mention
18.16.0
Minor Changes
[minor]49fbe3d3bf:
MentionProvider can be consumed directly from
@kalamazoo/mention/typesentry point
Patch Changes
- Updated dependencies c1d4898af5:
- Updated dependencies 3c0f6feee5:
- Updated dependencies 10425b84b4:
- Updated dependencies f9c291923c:
- Updated dependencies 926798632e:
18.15.8
Patch Changes
[patch]d222c2b987:
Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided.
Breaking
** getTokens props changes ** When defining the value function passed into a ThemeProvider, the getTokens parameter cannot be called without props; if no props are provided an empty object
{}must be passed in:<CustomTheme.Provider value={t => ({ ...t(), backgroundColor: '#333'})} >becomes:
<CustomTheme.Provider value={t => ({ ...t({}), backgroundColor: '#333'})} >** Color palette changes ** Color palettes have been moved into their own file. Users will need to update imports from this:
import { colors } from '@kalamazoo/theme'; colors.colorPalette('8');to this:
import { colorPalette } from '@kalamazoo/theme'; colorPalette.colorPalette('8');or for multi entry-point users:
import * as colors from '@kalamazoo/theme/colors'; colors.colorPalette('8');to this:
import * as colorPalettes from '@kalamazoo/theme/color-palette'; colorPalettes.colorPalette('8');
18.15.7
- Updated dependencies 42a92cad4e:
18.15.6
Patch Changes
[patch]d04ac087fc:
Handle query parameters for operations in mentions
18.15.5
- Updated dependencies bd94b1d552:
- Updated dependencies ae4f336a3a:
18.15.4
Patch Changes
[patch]35d2229b2a:
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
18.15.3
Patch Changes
[patch]a2d0043716:
Updated version of analytics-next to fix potential incompatibilities with TS 3.6
18.15.2
- Updated dependencies 80adfefba2:
18.15.1
- Updated dependencies 8d0f37c23e:
18.15.0
Minor Changes
[minor]c6efb2f5b6:
Prefix the legacy lifecycle methods with UNSAFE_* to avoid warning in React 16.9+
More information about the deprecation of lifecycles methods can be found here: https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
18.14.4
Patch Changes
[patch]097b696613:
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
18.14.3
Patch Changes
[patch]ecca4d1dbb:
Upgraded Typescript to 3.3.x
18.14.2
Patch Changes
[patch]926b43142b:
Analytics-next has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No behavioural changes.
Breaking changes
withAnalyticsForSumTypePropsalias has been removed, please usewithAnalyticsEventsAnalyticsContextWrappedCompalias has been removed, please usewithAnalyticsContext
Breaking changes to TypeScript annotations
withAnalyticsEventsnow infers proptypes automatically, consumers no longer need to provide props as a generic type.withAnalyticsContextnow infers proptypes automatically, consumers no longer need to provide props as a generic type.- Type
WithAnalyticsEventPropshas been renamed toWithAnalyticsEventsPropsto match source code - Type
CreateUIAnalyticsEventSignaturehas been renamed toCreateUIAnalyticsEventto match source code - Type
UIAnalyticsEventHandlerSignaturehas been renamed toUIAnalyticsEventHandlerto match source code - Type
AnalyticsEventsPayloadhas been renamed toAnalyticsEventPayload - Type
ObjectTypehas been removed, please useRecord<string, any>or[key: string]: any - Type
UIAnalyticsEventInterfacehas been removed, please useUIAnalyticsEvent - Type
AnalyticsEventInterfacehas been removed, please useAnalyticsEvent - Type
CreateAndFireEventFunctionremoved and should now be inferred by TypeScript - Type
AnalyticsEventUpdaterremoved and should now be inferred by TypeScript
18.14.1
Patch Changes
[patch]84b795279d:
TEAMS-626 : Adding translations for team mention spotlight
18.14.0
Minor Changes
[minor]a22fc8004f:
TEAMS-618 : Exporting Team mention spotlight with correct name
18.13.0
Minor Changes
[minor]9b83fdea35:
TEAMS-618 : Rename Team mention spotlight to Team Mention Highlight
18.12.0
Minor Changes
[minor]fe1a882fbb:
TEAMS-602 : Can pass the team creation link from confluence as an optional parameter to the Team Mention Spotlight
18.11.4
Patch Changes
[patch]2f62d55150:
The mention spotlight can take a context path, and fixing a bug with on-click for the create team link
18.11.3
Patch Changes
[patch]c72cca2853:
Added analytics when user clicks the create team link
18.11.2
Patch Changes
[patch]b4d2284e01:
Added analytics on spotlight viewed.
18.11.1
Patch Changes
[patch]23f9c8ff08:
Added analytics on closing team mention spotlight
18.11.0
Minor Changes
[minor]cda47d4480:
TEAMS-623 : Before this fix, when Spotlight was being rendered for the 5th time, it briefly appeared and then disappeared. This change fixes that.
18.10.0
Minor Changes
[minor]e81d32fe9a:
TEAMS-588 : Refactors the Team Spotlight ( which is used in mention typeahead for Fabric Editor and TinyMCE editor). Now can close the spotlight from Fabric Editor by clicking on the x button.
18.9.0
Minor Changes
[minor]06cfea0870:
TEAMS-549 : Adding capability to show a spotlight in Fabric Editor
18.8.0
Minor Changes
[minor]2d8dd7bc30:
Now able to take a prop that will show a feature highlight
18.7.3
Patch Changes
[patch]9f8ab1084b:
Consume analytics-next ts type definitions as an ambient declaration.
18.7.2
Patch Changes
[patch]bbff8a7d87:
Fixes bug, missing version.json file
18.7.1
Patch Changes
[patch]18dfac7332:
In this PR, we are:
18.7.0
Minor Changes
[minor]64b87b4ecb:
TEAMS-544 : Releasing the initial version of the Mention Spotlight
18.6.3
Patch Changes
[patch]d0db01b410:
TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps of the returned component.
Before:
withAnalyticsEvents()(Button) as ComponentClass<Props>;After:
withAnalyticsEvents<Props>()(Button);
18.6.2
- Updated dependencies 06326ef3f7:
18.6.1
Patch Changes
[patch]227431f9cb:
FS-4028 - Update translations for mention component
18.6.0
Minor Changes
[minor]58dd589a04:
Update TeamMentionResource to accept teamLinkResolver option which is used to construct a team link. Fix missing userId of user mentions in analytics in editor-core
18.5.0
Minor Changes
[minor]2d1c3db523:
FS-3986 - Support analytics for mention hydration.
18.4.2
Patch Changes
[patch]b23479c7ba:
fix i18n-tools validation error on try/catch
18.4.1
Patch Changes
[patch]434b2688af:
Update translation
18.4.0
Minor Changes
[minor]11cb8d8626:
- Remove @kalamazoo/analytics dependency.
18.3.3
Patch Changes
[patch]ac95568398:
- Some messages are never pushed to Transifex so we need to run
yarn i18n:push && yarn i18n:pullagain
- Some messages are never pushed to Transifex so we need to run
18.3.2
- Updated dependencies 67f06f58dd:
18.3.1
- Updated dependencies cfc3c8adb3:
18.3.0
Minor Changes
[minor]0b55c3b421:
FS-3244 - Add support for resolving mention names client-side
18.2.1
- Updated dependencies ed41cac6ac:
18.2.0
[minor]a0d5982270:
- Don't display nickname in mention list if it is the same as name.
18.1.0
[minor]5e4ff01e4c:
- Fix typeahead re-rendering when moving mouse
Breaking change -> TypeAheadItem:
export type TypeAheadItemRenderProps = { onClick: () => void; // BREAKING CHANGE // onMouseMove -> onHover onHover: () => void; isSelected: boolean; }; export type TypeAheadItem = { /*...*/ render?: ( props: TypeAheadItemRenderProps, ) => React.ReactElement<TypeAheadItemRenderProps> | null; /*...*/ };Items returned from
QuickInsertProvider#getItemsmethod that have customrenderfunction will now getonHoverinstead ofonMouseMove.
18.0.0
[major]7c17b35107:
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use this package, please ensure you use at least this version of react and react-dom.
17.6.9
[patch]d3cad2622e:
- Removes babel-runtime in favour of @babel/runtime
17.6.8
[patch]0a4ccaafae:
- Bump tslib
17.6.7
- Updated dependencies 9c0b4744be:
17.6.6
[patch]3f28e6443c:
- @kalamazoo/analytics-next-types is deprecated. Now you can use types for @kalamazoo/analytics-next supplied from itself.
17.6.5
[patch]ddb3238b1c:
- TEAMS-396 : Changing byline logic for mention
17.6.4
[patch]d13fad66df:
- Enable esModuleInterop for typescript, this allows correct use of default exports
17.6.3
[patch]14b89652d7:
- TEAMS-364 : Renaming the missed test files in the previous PR
17.6.2
[patch]c8b669eaec:
- TEAMS-364 : Renaming Team mention description highlight classes to Byline
17.6.1
[patch]d26570e3b5:
- Update i18n for team mention
- Fix a bug in team mention: missing https protocol in team link
17.6.0
[minor]b31086fcf6:
- Add additional entry points for selective imports of mention components
17.5.0
[minor]b0210d7ccc:
- reset jest modules before hydration
17.4.0
[minor]1affe17dc4:
- add analytics events for team mention
17.3.0
[minor]073320a681:
- Improve TeamMentionResource, both team and user requests are not blocked together
17.2.0
[patch]5ca3696b14:
- TEAMS-319 : Render member counts and whether team includes you in byline
[minor]b8b55dc6ae:
- TEAMS-319 : Render member counts and whether team includes you in byline
17.1.1
[patch]1bcaa1b991:
- Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
17.1.0
[minor]b684722884:
- improvement of SSR tests and examples for Fabric Elements
17.0.0
[major]9d5cc39394:
- Dropped ES5 distributables from the typescript packages
16.4.0
[minor]fb679d390f:
- Add a new TeamMenioResource for @kalamazoo/mention package. That allows to fetch teams data for mention from a team service (Legion service)
16.3.0
[minor]7261577953:
- use @kalamazoo/ssr to ssr/hydrate mention examples
16.2.2
- Updated dependencies 76299208e6:
- @kalamazoo/icon@16.0.4
- @kalamazoo/analytics-gas-types@3.2.5
- @kalamazoo/util-data-test@10.2.3
- @kalamazoo/util-service-support@3.1.1
- @kalamazoo/docs@7.0.0
- @kalamazoo/analytics-next@4.0.0
- @kalamazoo/analytics@5.0.0
- @kalamazoo/avatar@15.0.0
- @kalamazoo/lozenge@7.0.0
- @kalamazoo/theme@8.0.0
- @kalamazoo/tooltip@13.0.0
16.2.1
- Updated dependencies 4af5bd2a58:
16.2.0
[minor]ef368572dc:
- Update types for @kalamazoo/mention
16.1.0
[minor]0f3f9f0992:
- Fix context identifiers not being passed to mention provider's calls. MentionProvider interface was updated to include the optional contextIdentifier parameter in filter and recordMentionSelection methods.
16.0.1
- Updated dependencies d7ef59d432:
16.0.0
[major]0c116d6:
- Removed client-side indexed cache of mention results. Also removed method 'getUsersInContext' from MentionResourceConfig, 'remoteSearch' from MentionStats and 'weight' from MentionDescription. If you used to use them, simply remove any references to them.
15.3.0
15.2.2
[patch]0f19693:
- added tests for xregexp transformer, updated README and simplified code
[patch]b789b3a:
- removed xregexp library dependency from emoji and mention components, added xregexp-transformer package to compile xregexp expressions to unicode charsets
15.2.1
[patch]cae5adb:
- UR-197: Add queryLength to mentionTypeahead rendered event
15.2.0
[minor]f62557c:
- ED-5888 Add dark mode for mention
15.1.9
[patch]b81da9b:
- Fix typescript types to support strictFunctionTypes
15.1.8
- Updated dependencies 58b84fa:
- @kalamazoo/analytics@4.0.7
- @kalamazoo/analytics-next@3.1.2
- @kalamazoo/avatar@14.1.7
- @kalamazoo/icon@15.0.2
- @kalamazoo/lozenge@6.2.4
- @kalamazoo/theme@7.0.1
- @kalamazoo/tooltip@12.1.13
- @kalamazoo/analytics-gas-types@3.2.3
- @kalamazoo/util-data-test@10.0.25
- @kalamazoo/util-service-support@3.0.5
- @kalamazoo/docs@6.0.0
15.1.7
- Updated dependencies d13242d:
15.1.6
[patch]90c4702:
- FS-1734 Removed the try it out section from Emoji and Mentions documentation pages to match other pages. The section only contained a link to the same page, so was essentially redundant and potentially confusing.
15.1.5
[patch]3061b52:
- AK-5723 - adjust files in package.json to ensure correct publishing of dist/package.json
15.1.4
[patch]01edbde:
- Force patch release
15.1.3
- Updated dependencies ab9b69c:
15.1.2
[patch]36c362f:
- FS-3174 - Fix usage of gridSize() and borderRadius()
15.1.1
[patch]527b954:
- FS-3174 - Remove usage of util-shared-styles from elements components
15.1.0
- [minor] Use relative units for font size and paddings in Mention component b711063
15.0.11
- [patch] Analytics event's 'source' field from GasPayload type is now optional. In most cases, the 'source' field is expected to be set by the integrator through AnalyticsContext. Thus it's recommended that components do not set it to avoid overriding the one provided by the integrating product. Analytics listeners are handling the case where the 'source' field couldn't be found by setting the default value "unknown" before sending the event through the client. 1c0ea95
15.0.10
- [patch] Updated dependencies 65c6514
15.0.9
15.0.8
- [patch] FS-2941 Stop using Request object and upgrade fetch-mock dff332a
15.0.7
- [patch] propagate sessionId to the mentionTypeahead rendered event and service endpoints 0c37666
15.0.6
- [patch] Updated dependencies b12f7e6
15.0.5
- [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details a4bd557
- [none] Updated dependencies a4bd557
15.0.4
15.0.3
- [patch] fixed TS errors 8eced90
- [patch] fixed broken tests and added test for util/analytics 57b9d1e
- [patch] code improvements and tests added 0bc5732
- [patch] added mentionTypeAhead rendered analytics c536e60
- [none] Updated dependencies 8eced90
- [none] Updated dependencies 57b9d1e
- [none] Updated dependencies 0bc5732
- [none] Updated dependencies c536e60
15.0.2
- [patch] Updated dependencies acd86a1
15.0.1
- [patch] FS-2020 add session id to typeahead plugin inside editor 5ae463f
- [none] Updated dependencies 5ae463f
15.0.0
14.0.2
- [patch] Fallback to use containerId from MentionResourceConfig if ContextIdentifier promise fails 5ecb9a7
- [patch] add support for childObjectId in ContextIdentifiers and pass it to the mention service endpoints 6e31eb6
- [none] Updated dependencies 5ecb9a7
- [none] Updated dependencies 6e31eb6
14.0.1
- [patch] Updated dependencies e6b1985
14.0.0
- [major] Updates to React ^16.4.0 7edb866
- [major] Updated dependencies 563a7eb
- [major] Updated dependencies 7edb866
13.1.10
- [patch] fixed typescript build errors c98857e
- [patch] code improvements and MentionContextIdentifier attributes made mandatory to sync with editor-common ContextIdentifier 8a125a7
- [patch] include containerId and objectId passed from editor-core into mention service requests cacfb53
- [patch] Updated dependencies c98857e
- [patch] Updated dependencies 8a125a7
- [patch] Updated dependencies cacfb53
13.1.9
- [patch] Move the tests under src and club the tests under unit, integration and visual regression f1a9069
- [none] Updated dependencies f1a9069
13.1.8
13.1.7
13.1.6
- [patch] FS-2092 add mention typeahead cancel analytics event 40bd3fb
- [none] Updated dependencies 40bd3fb
13.1.5
- [patch] Updated dependencies 8a01bcd
13.1.4
- [patch] added mention userId in the Mention lozenge analytics d7dca64
- [patch] Updated dependencies d7dca64
13.1.3
- [patch] Updated dependencies 8d5053e
13.1.2
- [patch] Updated dependencies 0cf2f52
13.1.1
- [patch] Clean Changelogs - remove duplicates and empty entries e7756cd
- [none] Updated dependencies e7756cd
13.1.0
- [none] Updated dependencies 7217164
13.0.0
- [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to ^3.2.6 1e80619
- [patch] Updated dependencies 1e80619
12.0.3
- [patch] Updated dependencies 1c87e5a
12.0.2
12.0.1
12.0.0
- [patch] code improvements ba702bc
- [major] fixed/added tests for analytics-next and code improvements db1bafa
- [patch] upgrade to analytics-next and GAS V3 f150242
- [patch] Updated dependencies ba702bc
- [major] Updated dependencies db1bafa
- [patch] Updated dependencies f150242
11.1.5
11.1.4
- [none] Updated dependencies 8fd4dd1
- [none] Updated dependencies 74f84c6
- [none] Updated dependencies 92cdf83
- [none] Updated dependencies 4151cc5
- [patch] Updated dependencies d662caa
- [patch] Updated dependencies 89146bf
11.1.3
- [patch] ED-2551 use default cursor on mention if no onClick is provided e9cc83c
- [patch] Updated dependencies e9cc83c
11.1.2
- [patch] Align font sizes for inline code, mentions and dates d2ef1af
- [none] Updated dependencies d2ef1af
11.1.0
- [minor] If a Mention item is a team then render a TEAM lozenge automatically d4976d4
11.0.0
- [major] Bump to React 16.3. 4251858
10.0.0
- [major] FS-1697 move elements packages to use util-data-test for test data deb820a
9.2.3
- [patch] Add "sideEffects: false" to AKM2 packages to allow consumer's to tree-shake c3b018a
9.2.2
- [patch] Update links in documentation c4f7497
9.2.1
- [patch] Fix for styled-components types to support v1.4.x 75a2375
9.2.0
- [minor] Update styled-components dependency to support versions 1.4.6 - 3 ceccf30
9.1.5
- [patch] fix mention and emoji bug related to MutationObserver API dd0a69c
9.1.4
- [patch] Disable browser's spell check in mention lozenge c04bf36
9.1.3
- [patch] FS-1091 remove direct dependency on url-search-params e680d67
9.1.2
- [patch] FS-1699 Fix mention sorting ff33bef
9.1.1
- [patch] fixed mention picker style typos 8bb40f0
9.1.0
- [minor] FS-1633 Change the way we use getUsersInContext 86b615c
9.0.0
- [patch] Added eslint-disable to example file 49491a9
- [major] Migrated mentions to new atlaskit-mk2 dad3ccc
8.5.1 (2018-01-09)
- bug fix; removed chai and sinon from tests (issues closed: fs-1606) (f3a65cd)
8.5.0 (2018-01-08)
- feature; allow MentionResource to optionally exclude the credentials from the request (issues closed: fs-1602) (cbf913c)
8.4.1 (2017-12-20)
- bug fix; added minimum avatar dependency that has dist/esm folder for mention (c90fbfa)
8.4.0 (2017-12-19)
- feature; fS-1063 Code review remark (93ff21e)
- bug fix; make sure root does not change whatever import we use (085d483)
- feature; fS-1063 Fix code review remarks (a247fa6)
- feature; fS-1063 When searching for mentionable users in a public room, I want users current (b5310c7)
8.3.4 (2017-12-19)
- bug fix; bump packages to fixed version of analytics (615e41c)
- bug fix; explicit analytics bump in mentions (688ed80)
8.3.3 (2017-12-19)
- bug fix; reduce mention bundle size by referencing avatar directly from dist/esm folder (2a88ef0)
8.3.2 (2017-12-18)
- bug fix; fS-1587 fix TS errors in mention (issues closed: fs-1587) (8dd4b86)
8.3.1 (2017-12-15)
- bug fix; analytics now correctly a dep of the mention component (da6cd5d)
- bug fix; mention component no longer uses relative imports in one of the stories (1109ecc)
8.3.0 (2017-12-13)
- bug fix; minor code improvements and fixed build error (56bc6bb)
- feature; added some mention front-end analytics (74b7ee6)
8.2.1 (2017-12-08)
- bug fix; update mock data under dist folder (615dfd3)
8.2.0 (2017-11-26)
- feature; add more mock data to support integration tests (9520323)
8.1.1 (2017-11-20)
- bug fix; presence client now actually requests stateMetadata to get focus mode (issues closed: fs-1487) (7984774)
8.1.0 (2017-11-19)
- feature; add support for showing focus state on mention picker's avatars (issues closed: fs-1487) (fe5b287)
- feature; updated icon and tooltip dependencies (a10f196)
8.0.1 (2017-10-22)
- bug fix; update styled-components dep and react peerDep (6a67bf8)
8.0.0 (2017-10-20)
- bug fix; fixed unit test failure. (7878911)
- bug fix; added missing _notifyAllResultsListeners (28cbfb2)
- feature; expose MentionsResult interface from mention (a817c63)
- bug fix; added missing method _notifyAllResultsListeners to mention mock service and fixed re (f057300)
- feature; added a dummy data wit the same last name. (2ed7d4d)
- feature; fS-1372 Show an APP flag for App users like Bot (0ff41fc)
- bug fix; Revert code splitting of mentions/task-decisions as it introduces a performance problem (issues closed: fs-1396 / hnw-3183) (bbecb14)
- bug fix; code splitted avatar in mention and task-decision packages (issues closed: ed-2776) (19f8276)
- bug fix; update background of "no access" mention lozenge to be transparent (issues closed: fs-1160) (abd124d)
- bug fix; update background colour of default mention lozenge (issues closed: fs-1319) (391d263)
- bug fix; make mention lozenge 20px high to match rendering line height (issues closed: fs-1160) (9d02973)
- feature; update util-* dependencies (eba115f)
- feature; update mention dependencies: avatar, icon, lozenge, tooltip (issues closed: fs-1309) (8686314)
- bug fix; based on PR comment, update the variable name (4517be5)
- bug fix; the name of the variable was not correct - cf AK-1433 (issues closed: ak-1433) (85fe651)
- bug fix; publish only javascript files in dist/ (367736a)
- bug fix; fix .npm-ingore for fabric ts packages. (f6f2edd)
- bug fix; quick fix to avoid issues accessing support data via npm dependency (4f9eee7)
- bug fix; fix unused expression error throwing test (22b75b2)
- feature; export test/story data for direct import. Not in bundle. (issues closed: fs-1205) (eaa98fb)
- bug fix; Merged in fix/FS-1051-copying-renderer-mention (pull request #3532) (issues closed: fs-1051) (352f8eb)
- bug fix; use class transform in loose mode in babel to improve load performance in apps (fde719a)
- bug fix; no user selection in mention list should result in the top item always being selecte (issues closed: fs-1178) (07fc665)
- feature; fS-1125 Adding test (af91b18)
- feature; fS-1125 Add callback parameter when subscribing to receive all results no just the (cf7636a)
- bug fix; fS-1121 Don't return special mention when typing letter 'm' (6c2ddd3)
- feature; restyle the Mentions error pop-up with a funkier exclamation sign and better wording (issues closed: fs-1115) (8820193)
- bug fix; fS-1090 Fix test (4262bee)
- feature; fS-1090 Expose searchIndex so we can reuse it in test data + fix formatting (aab39e6)
- breaking; New method isFiltering(query: string) on MentionProvider interface (6881c4b)
- breaking; fS-1090 Expose isFiltering on MentionProvider interface && add query parameter in t (6881c4b)
- bug fix; update avatar dependency (64f6640)
- breaking; The onOpen handlers will now be called when searches error. Previously they would only be called (1380702)
- breaking; fix the Promise handling when a search is performed locally and remotely. (issues closed: fa-910) (1380702)
- bug fix; fix for long standing react warning. :yakshave: (cf88128)
- bug fix; uncaught rejected provider promises, ui not updating. (issues closed: ed-1886) (237cd54)
- bug fix; fS-1073 Code review remarks + fix tests (7611a77)
- bug fix; fS-1073 Code review remarks (003dc28)
- bug fix; fS-1073 Reset search index on bootstrap (5582b3c)
- bug fix; fS-1073 Filter mention locally from previous search results (0c4788a)
- feature; enable the display of more specific error messages in the MentionList (issues closed: fs-910) (db5efae)
- bug fix; fix correct usage of react lifecycle and controlled input component. (3ccd3ec)
- bug fix; add AbstractMentionResource export to editor-core (issues closed: fs-1029) (308ad31)
- bug fix; style fix to render tooltip properly in Firefox (32d223d)
- bug fix; render tooltip on same line as Mention component (4b18886)
- bug fix; fixed positioning for tooltip rendered for non-permitted mention (83851e6)
- feature; mentionItem without nickname rendered only using name (b2fa672)
- bug fix; fS-691 Change whoops style to white and use akicon (6f023d0)
- feature; fS-1026 When displaying the mention typeahead, I want to see users who don't have a (a31d317)
- bug fix; remove 'graphql' url component from presence's config (issues closed: fs-1030) (b975e98)
- bug fix; restore classname for confluence selenium tests (e59c2f7)
- bug fix; add polyfills for all storybooks, use es6-promise, URLSearchParams, Fetch API and Elemen (db2f5cf)
- bug fix; move all polyfills into devDeps (d275563)
- bug fix; fix remaining mention tests (d34d43b)
- breaking; ED-1701, ED-1702, ED-1704 (f47a58e)
- breaking; remove polyfills from mention and emoji packages, use styled-components instead of t (issues closed: ed-1701, ed-1702, ed-1704) (f47a58e)
- bug fix; fixed storybooks and bumped lozenge and avatar dependencies in mentions (issues closed: fs-902) (71ddb2a)
- bug fix; update legal copy to be more clear. Not all modules include ADG license. (issues closed: ak-2035) (f3a945e)
- bug fix; update legal copy and fix broken links for component README on npm. New contribution and (issues closed: ak-2035) (0b3e454)
- feature; add a class to mention node (5996b7a)
- bug fix; properly handle the case where mention provider is null or undefined (cf5dc91)
- feature; displays nickname rather than username in MentionItem if exists for user (issues closed: fs-824) (d3f4a81)
- bug fix; updated avatar version from ^1.0.0 to ^2.0.0 in mention (issues closed: fab-2658) (4ef6a16)
- bug fix; resourcedMention component doesn't update provider correctly (issues closed: ed-1173) (fa0c8fc)
- bug fix; maintainers for all the packages were added (261d00a)
- bug fix; upgrade TypeScript to 2.2.1 (issues closed: ed-1104) (2aa28fc)
- bug fix; merge branch 'master' into ED-738-ak-editor-shared-styles (b514e44)
- breaking; (c99a94e)
- breaking; rendering performance optimisations. (issues closed: fs-285) (c99a94e)
- bug fix; fix some failing unit tests. (4a4e32c)
- breaking; (8e48507)
- breaking; fS-214: Allow mentions to work with the session service; both using a header and a (issues closed: fs-214) (8e48507)
- feature; adding a resourced mention-component that takes a mentionProvider-promise (aff9907)
- breaking; (08a1291)
- breaking; adding method highlightning mentions (08a1291)
- bug fix; merged master into ED-738 (8afd112)
- bug fix; select colour changed from dark to light (1dc44ec)
- bug fix; Query should be optional (4e05ce1)
- bug fix; refactor stories to use // rather than http:// (a0826cf)
- bug fix; Updates package to have correct dev-dependency for util-common-test (403d232)
- bug fix; Updates docs to mention using yarn to install (5af03bf)
- bug fix; Rearrange tsconfig.json organisation to allow per-package configuration. (6c6992d)
- bug fix; Updates package to use scoped ak packages (db5c2f6)
7.6.0 (2017-10-16)
- bug fix; fixed unit test failure. (7878911)
- bug fix; added missing _notifyAllResultsListeners (28cbfb2)
- feature; expose MentionsResult interface from mention (a817c63)
- bug fix; added missing method _notifyAllResultsListeners to mention mock service and fixed re (f057300)
- feature; added a dummy data wit the same last name. (2ed7d4d)
7.5.0 (2017-09-26)
- feature; fS-1372 Show an APP flag for App users like Bot (0ff41fc)
7.4.3 (2017-09-21)
- bug fix; Revert code splitting of mentions/task-decisions as it introduces a performance problem (issues closed: fs-1396 / hnw-3183) (bbecb14)
7.4.2 (2017-09-19)
- bug fix; code splitted avatar in mention and task-decision packages (issues closed: ed-2776) (19f8276)
7.4.1 (2017-09-13)
- bug fix; update background of "no access" mention lozenge to be transparent (issues closed: fs-1160) (abd124d)
- bug fix; update background colour of default mention lozenge (issues closed: fs-1319) (391d263)
- bug fix; make mention lozenge 20px high to match rendering line height (issues closed: fs-1160) (9d02973)
7.4.0 (2017-08-28)
- feature; update util-* dependencies (eba115f)
- feature; update mention dependencies: avatar, icon, lozenge, tooltip (issues closed: fs-1309) (8686314)
7.3.5 (2017-08-21)
- bug fix; based on PR comment, update the variable name (4517be5)
- bug fix; the name of the variable was not correct - cf AK-1433 (issues closed: ak-1433) (85fe651)
7.3.4 (2017-08-14)
- bug fix; publish only javascript files in dist/ (367736a)
7.3.3 (2017-08-10)
- bug fix; fix .npm-ingore for fabric ts packages. (f6f2edd)
7.3.2 (2017-08-10)
- bug fix; quick fix to avoid issues accessing support data via npm dependency (4f9eee7)
7.3.1 (2017-07-27)
- fix; fix unused expression error throwing test (22b75b2)
7.3.0 (2017-07-25)
- feature; export test/story data for direct import. Not in bundle. (eaa98fb)
7.2.2 (2017-07-25)
- fix; use class transform in loose mode in babel to improve load performance in apps (fde719a)
7.2.1 (2017-07-20)
- fix; no user selection in mention list should result in the top item always being selecte (07fc665)
7.2.0 (2017-07-07)
- feature; fS-1125 Add callback parameter when subscribing to receive all results no just the (cf7636a)
- feature; fS-1125 Adding test (af91b18)
7.1.1 (2017-07-06)
- fix; fS-1121 Don't return special mention when typing letter 'm' (6c2ddd3)
7.1.0 (2017-07-04)
- feature; restyle the Mentions error pop-up with a funkier exclamation sign and better wording (8820193)
7.0.0 (2017-06-28)
- fix; fS-1090 Fix test (4262bee)
- feature; fS-1090 Expose searchIndex so we can reuse it in test data + fix formatting (aab39e6)
6.0.1 (2017-06-28)
- fix; update avatar dependency (64f6640)
- feature; fS-1090 Expose isFiltering on MentionProvider interface && add query parameter in t (6881c4b)
- breaking; New method isFiltering(query: string) on MentionProvider interface
6.0.0 (2017-06-27)
- fix; fix the Promise handling when a search is performed locally and remotely. (1380702)
- breaking; The onOpen handlers will now be called when searches error. Previously they would only be called when there were search results.
- ISSUES CLOSED: FA-910
5.3.2 (2017-06-22)
- fix; fix for long standing react warning. :yakshave: (cf88128)
- fix; uncaught rejected provider promises, ui not updating. (237cd54)
5.3.0 (2017-06-20)
- fix; fS-1073 Code review remarks (003dc28)
- fix; fS-1073 Code review remarks + fix tests (7611a77)
- fix; fS-1073 Filter mention locally from previous search results (0c4788a)
- fix; fS-1073 Reset search index on bootstrap (5582b3c)
5.2.0 (2017-06-19)
- feature; enable the display of more specific error messages in the MentionList (db5efae)
5.1.2 (2017-06-15)
- fix; fix correct usage of react lifecycle and controlled input component. (3ccd3ec)
5.1.1 (2017-06-14)
- fix; add AbstractMentionResource export to editor-core (308ad31)
- fix; fixed positioning for tooltip rendered for non-permitted mention (83851e6)
- fix; render tooltip on same line as Mention component (4b18886)
- fix; style fix to render tooltip properly in Firefox (32d223d)
- feature; mentionItem without nickname rendered only using name (b2fa672)
5.1.0 (2017-06-05)
- fix; fS-691 Change whoops style to white and use akicon (6f023d0)
- feature; fS-1026 When displaying the mention typeahead, I want to see users who don't have a (a31d317)
5.0.1 (2017-06-01)
- fix; remove 'graphql' url component from presence's config (b975e98)
5.0.0 (2017-06-01)
- fix; add polyfills for all storybooks, use es6-promise, URLSearchParams, Fetch API and Elemen (db2f5cf)
- fix; fix remaining mention tests (d34d43b)
- fix; move all polyfills into devDeps (d275563)
- fix; remove polyfills from mention and emoji packages, use styled-components instead of t (f47a58e)
- fix; restore classname for confluence selenium tests (e59c2f7)
- breaking; ED-1701, ED-1702, ED-1704
- ISSUES CLOSED: ED-1701, ED-1702, ED-1704
4.2.3 (2017-05-09)
- fix; fixed storybooks and bumped lozenge and avatar dependencies in mentions (71ddb2a)
4.2.2 (2017-04-27)
- fix; update legal copy to be more clear. Not all modules include ADG license. (f3a945e)
4.2.1 (2017-04-26)
- fix; update legal copy and fix broken links for component README on npm. New contribution and (0b3e454)
4.2.0 (2017-04-10)
- feature; add a class to mention node (5996b7a)
4.1.1 (2017-04-07)
- fix; properly handle the case where mention provider is null or undefined (cf5dc91)
4.1.0 (2017-04-04)
- feature; displays nickname rather than username in MentionItem if exists for user (d3f4a81)
4.0.5 (2017-03-27)
- fix; updated avatar version from ^1.0.0 to ^2.0.0 in mention (4ef6a16)
4.0.4 (2017-03-23)
- fix; resourcedMention component doesn't update provider correctly (fa0c8fc)
4.0.2 (2017-03-21)
- fix; maintainers for all the packages were added (261d00a)
4.0.1 (2017-03-17)
- fix; upgrade TypeScript to 2.2.1 (2aa28fc)
4.0.0 (2017-03-13)
- feature; rendering performance optimisations. (c99a94e)
- breaking; MentionItem no longer spreads Mention props as component props, moving to a single mention prop instead.
- Mention no longer duplicates time and status. Now only in presence property object.
- Event callbacks have changes, but in general should be code compatible.
- ISSUES CLOSED: FS-285
3.0.0 (2017-03-08)
- fix; fix some failing unit tests. (4a4e32c)
- feature; fS-214: Allow mentions to work with the session service; both using a header and a (8e48507)
- breaking; A different URL should be provided to the Mentions component
- ISSUES CLOSED: FS-214
2.1.0 (2017-03-02)
- feature; adding a resourced mention-component that takes a mentionProvider-promise (aff9907)
2.0.0 (2017-03-01)
- feature; adding method highlightning mentions (08a1291)
- breaking; MentionProvider now expects a "shouldHighlightMention"-method
1.4.0 (2017-02-23)
- Component for rendering mentions (7a83043)
1.3.6 (2017-02-23)
- Fixing internal types in MentionResource to reflect actual types. (6829ace)
1.3.5 (2017-02-21)
- Typescript configuration changes to match latest core configuration. (aa13d3f)
1.3.4 (2017-02-17)
1.3.2 (2017-02-16)
- fix; Query should be optional (4e05ce1)
- fix; refactor stories to use // rather than http:// (a0826cf)
- Fixing types in mention resource (60a3538)
1.3.1 (2017-02-10)
- fix; Updates package to have correct dev-dependency for util-common-test (403d232)
1.3.0 (2017-02-09)
- Adding method for getting number of mentions and made positioning props optional again (51d0591)
- uncomment tests that turned out not that flakey (f100134)
1.2.0 (2017-02-07)
- Disable failing test, remove unused file. (5075309)
1.1.1 (2017-02-07)
- fix; Updates docs to mention using yarn to install (5af03bf)
- fix; Rearrange tsconfig.json organisation to allow per-package configuration. (6c6992d)
- Bump to a real version of lozenge (b77862d)
- Fix dependency on util-shared-styles (9b4e3c6)
- Remove legacy .js file, add MentionItem export. (5c021e2)