@atlaskit/mention 25.1.0 → 26.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/mention
2
2
 
3
+ ## 26.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 26.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - [`041c8e5937beb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/041c8e5937beb) -
14
+ Removed the `./i18n` package export, which was a duplicate of `./i18n/index` resolved via the
15
+ `./i18n/*` wildcard. Consumers must now import the i18n entry point explicitly as
16
+ `@atlaskit/mention/i18n/index` (or a specific locale, e.g. `@atlaskit/mention/i18n/en`). Removing
17
+ the duplicate export ensures the canonical source for `@atlaskit/mention/i18n/*` resolves
18
+ unambiguously to a single file.
19
+
3
20
  ## 25.1.0
4
21
 
5
22
  ### Minor Changes
@@ -12,7 +12,7 @@ var _types = require("../types");
12
12
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
13
13
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
14
14
  var packageName = "@atlaskit/mention";
15
- var packageVersion = "0.0.0-development";
15
+ var packageVersion = "26.0.0";
16
16
  var SLI_EVENT_TYPE = exports.SLI_EVENT_TYPE = 'sli';
17
17
  var SMART_EVENT_TYPE = exports.SMART_EVENT_TYPE = 'smart';
18
18
  var fireAnalyticsMentionTypeaheadEvent = exports.fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
@@ -2,7 +2,7 @@ import { OPERATIONAL_EVENT_TYPE, UI_EVENT_TYPE } from '@atlaskit/analytics-gas-t
2
2
  import { ELEMENTS_CHANNEL } from '../_constants';
3
3
  import { ComponentNames, isSpecialMentionText } from '../types';
4
4
  const packageName = "@atlaskit/mention";
5
- const packageVersion = "0.0.0-development";
5
+ const packageVersion = "26.0.0";
6
6
  export const SLI_EVENT_TYPE = 'sli';
7
7
  export const SMART_EVENT_TYPE = 'smart';
8
8
  export const fireAnalyticsMentionTypeaheadEvent = props => (action, duration, userIds = [], query) => {
@@ -5,7 +5,7 @@ import { OPERATIONAL_EVENT_TYPE, UI_EVENT_TYPE } from '@atlaskit/analytics-gas-t
5
5
  import { ELEMENTS_CHANNEL } from '../_constants';
6
6
  import { ComponentNames, isSpecialMentionText } from '../types';
7
7
  var packageName = "@atlaskit/mention";
8
- var packageVersion = "0.0.0-development";
8
+ var packageVersion = "26.0.0";
9
9
  export var SLI_EVENT_TYPE = 'sli';
10
10
  export var SMART_EVENT_TYPE = 'smart';
11
11
  export var fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
package/package.json CHANGED
@@ -25,12 +25,12 @@
25
25
  "@atlaskit/avatar": "^25.14.0",
26
26
  "@atlaskit/focus-ring": "^3.1.0",
27
27
  "@atlaskit/heading": "^5.4.0",
28
- "@atlaskit/icon": "^34.5.0",
28
+ "@atlaskit/icon": "^35.0.0",
29
29
  "@atlaskit/lozenge": "^13.8.0",
30
30
  "@atlaskit/platform-feature-flags": "^1.1.0",
31
31
  "@atlaskit/primitives": "^19.0.0",
32
32
  "@atlaskit/tag": "^14.13.0",
33
- "@atlaskit/teams-avatar": "^2.6.0",
33
+ "@atlaskit/teams-avatar": "^2.7.0",
34
34
  "@atlaskit/tokens": "^13.0.0",
35
35
  "@atlaskit/tooltip": "^22.2.0",
36
36
  "@atlaskit/ufo": "^0.5.0",
@@ -113,5 +113,5 @@
113
113
  ]
114
114
  }
115
115
  },
116
- "version": "25.1.0"
116
+ "version": "26.0.1"
117
117
  }
package/i18n/package.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "name": "@atlaskit/mention/i18n",
3
- "main": "../dist/cjs/i18n/index.js",
4
- "module": "../dist/esm/i18n/index.js",
5
- "module:es2019": "../dist/es2019/i18n/index.js",
6
- "sideEffects": [
7
- "*.compiled.css"
8
- ],
9
- "types": "../dist/types/i18n/index.d.ts",
10
- "typesVersions": {
11
- ">=4.5 <5.9": {
12
- "*": [
13
- "../dist/types-ts4.5/i18n/index.d.ts"
14
- ]
15
- }
16
- }
17
- }