@atlaskit/mention 25.1.0 → 26.0.0

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,16 @@
1
1
  # @atlaskit/mention
2
2
 
3
+ ## 26.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`041c8e5937beb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/041c8e5937beb) -
8
+ Removed the `./i18n` package export, which was a duplicate of `./i18n/index` resolved via the
9
+ `./i18n/*` wildcard. Consumers must now import the i18n entry point explicitly as
10
+ `@atlaskit/mention/i18n/index` (or a specific locale, e.g. `@atlaskit/mention/i18n/en`). Removing
11
+ the duplicate export ensures the canonical source for `@atlaskit/mention/i18n/*` resolves
12
+ unambiguously to a single file.
13
+
3
14
  ## 25.1.0
4
15
 
5
16
  ### Minor Changes
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": "^34.6.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.0"
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
- }