@atlaskit/mention 24.2.4 → 24.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/afm-rovo-extension/tsconfig.json +66 -0
  3. package/afm-townsquare/tsconfig.json +66 -0
  4. package/afm-volt/tsconfig.json +66 -0
  5. package/dist/cjs/components/Mention/index.js +1 -1
  6. package/dist/cjs/components/MentionItem/index.js +2 -2
  7. package/dist/cjs/components/MentionListError/index.js +1 -1
  8. package/dist/cjs/i18n/hr.js +28 -0
  9. package/dist/cjs/i18n/sl.js +28 -0
  10. package/dist/cjs/i18n/sr_RS.js +28 -0
  11. package/dist/cjs/i18n/sr_YR.js +28 -0
  12. package/dist/cjs/util/analytics.js +1 -1
  13. package/dist/es2019/components/Mention/index.js +1 -1
  14. package/dist/es2019/components/MentionItem/index.js +1 -1
  15. package/dist/es2019/components/MentionListError/index.js +1 -0
  16. package/dist/es2019/i18n/hr.js +22 -0
  17. package/dist/es2019/i18n/sl.js +22 -0
  18. package/dist/es2019/i18n/sr_RS.js +22 -0
  19. package/dist/es2019/i18n/sr_YR.js +22 -0
  20. package/dist/es2019/util/analytics.js +1 -1
  21. package/dist/esm/components/Mention/index.js +1 -1
  22. package/dist/esm/components/MentionItem/index.js +1 -1
  23. package/dist/esm/components/MentionListError/index.js +1 -0
  24. package/dist/esm/i18n/hr.js +22 -0
  25. package/dist/esm/i18n/sl.js +22 -0
  26. package/dist/esm/i18n/sr_RS.js +22 -0
  27. package/dist/esm/i18n/sr_YR.js +22 -0
  28. package/dist/esm/util/analytics.js +1 -1
  29. package/dist/types/i18n/hr.d.ts +21 -0
  30. package/dist/types/i18n/sl.d.ts +21 -0
  31. package/dist/types/i18n/sr_RS.d.ts +21 -0
  32. package/dist/types/i18n/sr_YR.d.ts +21 -0
  33. package/dist/types-ts4.5/i18n/hr.d.ts +21 -0
  34. package/dist/types-ts4.5/i18n/sl.d.ts +21 -0
  35. package/dist/types-ts4.5/i18n/sr_RS.d.ts +21 -0
  36. package/dist/types-ts4.5/i18n/sr_YR.d.ts +21 -0
  37. package/package.json +5 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @atlaskit/mention
2
2
 
3
+ ## 24.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#188952](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188952)
8
+ [`1a88e6e2601ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a88e6e2601ae) -
9
+ Migrated usage of renamed/deprecated icons
10
+ - Updated dependencies
11
+
12
+ ## 24.2.5
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 24.2.4
4
19
 
5
20
  ### Patch Changes
@@ -0,0 +1,66 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.rovo-extension.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../rovo-extension/tsDist/@atlaskit__mention/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-gas-types/afm-rovo-extension/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../analytics/analytics-next/afm-rovo-extension/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../design-system/avatar/afm-rovo-extension/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/focus-ring/afm-rovo-extension/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/heading/afm-rovo-extension/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../../design-system/icon/afm-rovo-extension/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../../design-system/lozenge/afm-rovo-extension/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../platform/feature-flags/afm-rovo-extension/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/primitives/afm-rovo-extension/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../people-and-teams/teams-avatar/afm-rovo-extension/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../design-system/theme/afm-rovo-extension/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../design-system/tokens/afm-rovo-extension/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/tooltip/afm-rovo-extension/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../data/ufo-external/afm-rovo-extension/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../util-service-support/afm-rovo-extension/tsconfig.json"
64
+ }
65
+ ]
66
+ }
@@ -0,0 +1,66 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.townsquare.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../townsquare/tsDist/@atlaskit__mention/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-gas-types/afm-townsquare/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../analytics/analytics-next/afm-townsquare/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../design-system/avatar/afm-townsquare/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/focus-ring/afm-townsquare/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/heading/afm-townsquare/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../../design-system/lozenge/afm-townsquare/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../platform/feature-flags/afm-townsquare/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/primitives/afm-townsquare/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../people-and-teams/teams-avatar/afm-townsquare/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../design-system/theme/afm-townsquare/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/tooltip/afm-townsquare/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../data/ufo-external/afm-townsquare/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../util-service-support/afm-townsquare/tsconfig.json"
64
+ }
65
+ ]
66
+ }
@@ -0,0 +1,66 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.volt.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../volt/tsDist/@atlaskit__mention/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-gas-types/afm-volt/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../analytics/analytics-next/afm-volt/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../design-system/avatar/afm-volt/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/focus-ring/afm-volt/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/heading/afm-volt/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../../design-system/icon/afm-volt/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../../design-system/lozenge/afm-volt/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../platform/feature-flags/afm-volt/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/primitives/afm-volt/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../people-and-teams/teams-avatar/afm-volt/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../design-system/theme/afm-volt/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../design-system/tokens/afm-volt/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/tooltip/afm-volt/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../data/ufo-external/afm-volt/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../util-service-support/afm-volt/tsconfig.json"
64
+ }
65
+ ]
66
+ }
@@ -138,7 +138,7 @@ var MentionInternal = exports.MentionInternal = /*#__PURE__*/function (_React$Pu
138
138
  "data-mention-tooltip": showTooltip
139
139
  }, failedMention ? this.renderUnknownUserError(id) : text || '@...'));
140
140
  var ssrPlaceholderProp = (0, _platformFeatureFlags.fg)('cc_mention_ssr_placeholder') ? {
141
- "data-ssr-placeholder": props.ssrPlaceholderId
141
+ 'data-ssr-placeholder': props.ssrPlaceholderId
142
142
  } : {};
143
143
  return /*#__PURE__*/_react.default.createElement(_ufoExperiences.UfoErrorBoundary, {
144
144
  id: id
@@ -23,7 +23,7 @@ var _lozenge = _interopRequireDefault(require("@atlaskit/lozenge"));
23
23
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
24
24
  var _colors = require("@atlaskit/theme/colors");
25
25
  var _react = _interopRequireDefault(require("react"));
26
- var _informationEditorPanel = _interopRequireDefault(require("@atlaskit/icon/core/migration/information--editor-panel"));
26
+ var _statusInformationEditorPanel = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-information--editor-panel"));
27
27
  var _types = require("../../types");
28
28
  var _i18n = require("../../util/i18n");
29
29
  var _mouse = require("../../util/mouse");
@@ -139,7 +139,7 @@ var MentionItem = exports.default = /*#__PURE__*/function (_React$PureComponent)
139
139
  return /*#__PURE__*/_react.default.createElement(_LockCircleIcon.default, {
140
140
  label: text
141
141
  });
142
- } /* safe to cast to string given there is no value binding */)))) : null, isXProductUser && /*#__PURE__*/_react.default.createElement(_informationEditorPanel.default, {
142
+ } /* safe to cast to string given there is no value binding */)))) : null, isXProductUser && /*#__PURE__*/_react.default.createElement(_statusInformationEditorPanel.default, {
143
143
  color: xProductUserInfoIconColor,
144
144
  label: ''
145
145
  }))));
@@ -16,7 +16,7 @@ var _primitives = require("@atlaskit/primitives");
16
16
  var _i18n = require("../../util/i18n");
17
17
  var _GenericErrorIllustration = require("./GenericErrorIllustration");
18
18
  function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
19
- function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
19
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } // eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
20
20
  var advisedActionMessages = {
21
21
  '401': _i18n.LoginAgain,
22
22
  '403': _i18n.DifferentText,
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /* prettier-ignore */
8
+ /**
9
+ * NOTE:
10
+ *
11
+ * This file is automatically generated by Traduki 2.0.
12
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
+ */
14
+ //Croatian (Croatia) [hr-HR]
15
+ var _default = exports.default = {
16
+ 'fabric.elements.mentions.team.member.50plus': 'Tim • 50+ članova',
17
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Tim • 50+ članova, uključujući tebe',
18
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Tim • 1 član} few {Tim • {0} člana} many {Tim • {0} članova} other {Tim • {0} članova}}',
19
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Tim • 1 član, uključujući tebe} few {Tim • {0} člana, uključujući tebe} many {Tim • {0} članova, uključujući tebe} other {Tim • {0} članova, uključujući tebe}}',
20
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potreban je pristup Confluenceu',
21
+ 'fabric.mention.error.defaultAction': 'Pokušaj ponovno za nekoliko sekundi',
22
+ 'fabric.mention.error.defaultHeadline': 'Nešto nije u redu',
23
+ 'fabric.mention.error.differentText': 'Pokušaj unijeti drugi tekst',
24
+ 'fabric.mention.error.loginAgain': 'Pokušaj se odjaviti, a zatim se ponovno prijaviti',
25
+ 'fabric.mention.noAccess.label': 'Nema pristupa',
26
+ 'fabric.mention.noAccess.warning': '{name} neće biti obaviješten jer nema pristup',
27
+ 'fabric.mention.unknow.user.error': 'Nepoznati korisnik {userId}'
28
+ };
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /* prettier-ignore */
8
+ /**
9
+ * NOTE:
10
+ *
11
+ * This file is automatically generated by Traduki 2.0.
12
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
+ */
14
+ //Slovenian (Slovenia) [sl-SI]
15
+ var _default = exports.default = {
16
+ 'fabric.elements.mentions.team.member.50plus': 'Ekipa • Več kot 50 članov',
17
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Ekipa • Več kot 50 članov, vključno z vami',
18
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Ekipa • 1 član} two {Ekipa • {0} člana} few {Ekipa • {0} člani} other {Ekipa • {0} članov}}',
19
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Ekipa • 1 član, vključno z vami} two {Ekipa • {0} člana, vključno z vami} few {Ekipa • {0} člani, vključno z vami} other {Ekipa • {0} članov, vključno z vami}}',
20
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potrebuje dostop do storitve Confluence',
21
+ 'fabric.mention.error.defaultAction': 'Poskusite znova čez nekaj sekund',
22
+ 'fabric.mention.error.defaultHeadline': 'Prišlo je do napake',
23
+ 'fabric.mention.error.differentText': 'Poskusite vnesti drugo besedilo',
24
+ 'fabric.mention.error.loginAgain': 'Poskusite se odjaviti in se znova prijaviti',
25
+ 'fabric.mention.noAccess.label': 'Ni dostopa',
26
+ 'fabric.mention.noAccess.warning': 'Oseba {name} ne bo obveščana, ker nima dostopa',
27
+ 'fabric.mention.unknow.user.error': 'Neznani uporabnik {userId}'
28
+ };
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /* prettier-ignore */
8
+ /**
9
+ * NOTE:
10
+ *
11
+ * This file is automatically generated by Traduki 2.0.
12
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
+ */
14
+ //Serbian (Serbia) [sr-RS]
15
+ var _default = exports.default = {
16
+ 'fabric.elements.mentions.team.member.50plus': 'Tim • više od 50 članova',
17
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Tim • više od 50 članova, uključujući vas',
18
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Tim • 1 član} few {Tim • {0} člana} many {Tim • {0} članova} other {Tim • {0} članova}}',
19
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Tim • 1 član, uključujući vas} few {Tim • {0} člana, uključujući vas} many {Tim • {0} članova, uključujući vas} other {Tim • {0} članova, uključujući vas}}',
20
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potreban pristup za Confluence',
21
+ 'fabric.mention.error.defaultAction': 'Probajte ponovo za nekoliko sekundi',
22
+ 'fabric.mention.error.defaultHeadline': 'Došlo je do greške',
23
+ 'fabric.mention.error.differentText': 'Probajte da unesete drugi tekst',
24
+ 'fabric.mention.error.loginAgain': 'Probajte da se odjavite i prijavite',
25
+ 'fabric.mention.noAccess.label': 'Nema pristupa',
26
+ 'fabric.mention.noAccess.warning': 'Korisnik {name} neće biti obavešten jer nema pristup',
27
+ 'fabric.mention.unknow.user.error': 'Nepoznat korisnik {userId}'
28
+ };
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /* prettier-ignore */
8
+ /**
9
+ * NOTE:
10
+ *
11
+ * This file is automatically generated by Traduki 2.0.
12
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
+ */
14
+ //Serbian (Cyrillic) [sr-YR]
15
+ var _default = exports.default = {
16
+ 'fabric.elements.mentions.team.member.50plus': 'Тим • више од 50 чланова',
17
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Тим • више од 50 чланова, укључујући вас',
18
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Тим • 1 члан} other {Тим • {0} члана/ова}}',
19
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Тим • 1 члан, укључујући вас} other {Тим • {0} члана/ова, укључујући вас}}',
20
+ 'fabric.elements.mentions.xproduct.mention.description': 'Потребан приступ за Confluence',
21
+ 'fabric.mention.error.defaultAction': 'Пробајте поново за неколико секунди',
22
+ 'fabric.mention.error.defaultHeadline': 'Дошло је до грешке',
23
+ 'fabric.mention.error.differentText': 'Пробајте да унесете други текст',
24
+ 'fabric.mention.error.loginAgain': 'Пробајте да се одјавите и пријавите',
25
+ 'fabric.mention.noAccess.label': 'Нема приступа',
26
+ 'fabric.mention.noAccess.warning': 'Корисник {name} неће бити обавештен јер нема приступ',
27
+ 'fabric.mention.unknow.user.error': 'Непознат корисник {userId}'
28
+ };
@@ -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 = "24.2.3";
15
+ var packageVersion = "24.2.5";
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) {
@@ -118,7 +118,7 @@ export class MentionInternal extends React.PureComponent {
118
118
  "data-mention-tooltip": showTooltip
119
119
  }, failedMention ? this.renderUnknownUserError(id) : text || '@...'));
120
120
  const ssrPlaceholderProp = fg('cc_mention_ssr_placeholder') ? {
121
- "data-ssr-placeholder": props.ssrPlaceholderId
121
+ 'data-ssr-placeholder': props.ssrPlaceholderId
122
122
  } : {};
123
123
  return /*#__PURE__*/React.createElement(UfoErrorBoundary, {
124
124
  id: id
@@ -4,7 +4,7 @@ import Lozenge from '@atlaskit/lozenge';
4
4
  import { fg } from '@atlaskit/platform-feature-flags';
5
5
  import { N30 } from '@atlaskit/theme/colors';
6
6
  import React from 'react';
7
- import EditorPanelIcon from '@atlaskit/icon/core/migration/information--editor-panel';
7
+ import EditorPanelIcon from '@atlaskit/icon/core/migration/status-information--editor-panel';
8
8
  import { isRestricted } from '../../types';
9
9
  import { NoAccessLabel } from '../../util/i18n';
10
10
  import { leftClick } from '../../util/mouse';
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import Heading from '@atlaskit/heading';
3
+ // eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
3
4
  import { Stack, Text, xcss } from '@atlaskit/primitives';
4
5
  import { DefaultAdvisedAction, DefaultHeadline, DifferentText, LoginAgain } from '../../util/i18n';
5
6
  import { GenericErrorIllustration } from './GenericErrorIllustration';
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Croatian (Croatia) [hr-HR]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Tim • 50+ članova',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Tim • 50+ članova, uključujući tebe',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Tim • 1 član} few {Tim • {0} člana} many {Tim • {0} članova} other {Tim • {0} članova}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Tim • 1 član, uključujući tebe} few {Tim • {0} člana, uključujući tebe} many {Tim • {0} članova, uključujući tebe} other {Tim • {0} članova, uključujući tebe}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potreban je pristup Confluenceu',
15
+ 'fabric.mention.error.defaultAction': 'Pokušaj ponovno za nekoliko sekundi',
16
+ 'fabric.mention.error.defaultHeadline': 'Nešto nije u redu',
17
+ 'fabric.mention.error.differentText': 'Pokušaj unijeti drugi tekst',
18
+ 'fabric.mention.error.loginAgain': 'Pokušaj se odjaviti, a zatim se ponovno prijaviti',
19
+ 'fabric.mention.noAccess.label': 'Nema pristupa',
20
+ 'fabric.mention.noAccess.warning': '{name} neće biti obaviješten jer nema pristup',
21
+ 'fabric.mention.unknow.user.error': 'Nepoznati korisnik {userId}'
22
+ };
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Slovenian (Slovenia) [sl-SI]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Ekipa • Več kot 50 članov',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Ekipa • Več kot 50 članov, vključno z vami',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Ekipa • 1 član} two {Ekipa • {0} člana} few {Ekipa • {0} člani} other {Ekipa • {0} članov}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Ekipa • 1 član, vključno z vami} two {Ekipa • {0} člana, vključno z vami} few {Ekipa • {0} člani, vključno z vami} other {Ekipa • {0} članov, vključno z vami}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potrebuje dostop do storitve Confluence',
15
+ 'fabric.mention.error.defaultAction': 'Poskusite znova čez nekaj sekund',
16
+ 'fabric.mention.error.defaultHeadline': 'Prišlo je do napake',
17
+ 'fabric.mention.error.differentText': 'Poskusite vnesti drugo besedilo',
18
+ 'fabric.mention.error.loginAgain': 'Poskusite se odjaviti in se znova prijaviti',
19
+ 'fabric.mention.noAccess.label': 'Ni dostopa',
20
+ 'fabric.mention.noAccess.warning': 'Oseba {name} ne bo obveščana, ker nima dostopa',
21
+ 'fabric.mention.unknow.user.error': 'Neznani uporabnik {userId}'
22
+ };
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Serbian (Serbia) [sr-RS]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Tim • više od 50 članova',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Tim • više od 50 članova, uključujući vas',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Tim • 1 član} few {Tim • {0} člana} many {Tim • {0} članova} other {Tim • {0} članova}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Tim • 1 član, uključujući vas} few {Tim • {0} člana, uključujući vas} many {Tim • {0} članova, uključujući vas} other {Tim • {0} članova, uključujući vas}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potreban pristup za Confluence',
15
+ 'fabric.mention.error.defaultAction': 'Probajte ponovo za nekoliko sekundi',
16
+ 'fabric.mention.error.defaultHeadline': 'Došlo je do greške',
17
+ 'fabric.mention.error.differentText': 'Probajte da unesete drugi tekst',
18
+ 'fabric.mention.error.loginAgain': 'Probajte da se odjavite i prijavite',
19
+ 'fabric.mention.noAccess.label': 'Nema pristupa',
20
+ 'fabric.mention.noAccess.warning': 'Korisnik {name} neće biti obavešten jer nema pristup',
21
+ 'fabric.mention.unknow.user.error': 'Nepoznat korisnik {userId}'
22
+ };
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Serbian (Cyrillic) [sr-YR]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Тим • више од 50 чланова',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Тим • више од 50 чланова, укључујући вас',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Тим • 1 члан} other {Тим • {0} члана/ова}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Тим • 1 члан, укључујући вас} other {Тим • {0} члана/ова, укључујући вас}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Потребан приступ за Confluence',
15
+ 'fabric.mention.error.defaultAction': 'Пробајте поново за неколико секунди',
16
+ 'fabric.mention.error.defaultHeadline': 'Дошло је до грешке',
17
+ 'fabric.mention.error.differentText': 'Пробајте да унесете други текст',
18
+ 'fabric.mention.error.loginAgain': 'Пробајте да се одјавите и пријавите',
19
+ 'fabric.mention.noAccess.label': 'Нема приступа',
20
+ 'fabric.mention.noAccess.warning': 'Корисник {name} неће бити обавештен јер нема приступ',
21
+ 'fabric.mention.unknow.user.error': 'Непознат корисник {userId}'
22
+ };
@@ -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 = "24.2.3";
5
+ const packageVersion = "24.2.5";
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) => {
@@ -131,7 +131,7 @@ export var MentionInternal = /*#__PURE__*/function (_React$PureComponent) {
131
131
  "data-mention-tooltip": showTooltip
132
132
  }, failedMention ? this.renderUnknownUserError(id) : text || '@...'));
133
133
  var ssrPlaceholderProp = fg('cc_mention_ssr_placeholder') ? {
134
- "data-ssr-placeholder": props.ssrPlaceholderId
134
+ 'data-ssr-placeholder': props.ssrPlaceholderId
135
135
  } : {};
136
136
  return /*#__PURE__*/React.createElement(UfoErrorBoundary, {
137
137
  id: id
@@ -12,7 +12,7 @@ import Lozenge from '@atlaskit/lozenge';
12
12
  import { fg } from '@atlaskit/platform-feature-flags';
13
13
  import { N30 } from '@atlaskit/theme/colors';
14
14
  import React from 'react';
15
- import EditorPanelIcon from '@atlaskit/icon/core/migration/information--editor-panel';
15
+ import EditorPanelIcon from '@atlaskit/icon/core/migration/status-information--editor-panel';
16
16
  import { isRestricted } from '../../types';
17
17
  import { NoAccessLabel } from '../../util/i18n';
18
18
  import { leftClick } from '../../util/mouse';
@@ -7,6 +7,7 @@ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstruct
7
7
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
8
8
  import React from 'react';
9
9
  import Heading from '@atlaskit/heading';
10
+ // eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
10
11
  import { Stack, Text, xcss } from '@atlaskit/primitives';
11
12
  import { DefaultAdvisedAction, DefaultHeadline, DifferentText, LoginAgain } from '../../util/i18n';
12
13
  import { GenericErrorIllustration } from './GenericErrorIllustration';
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Croatian (Croatia) [hr-HR]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Tim • 50+ članova',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Tim • 50+ članova, uključujući tebe',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Tim • 1 član} few {Tim • {0} člana} many {Tim • {0} članova} other {Tim • {0} članova}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Tim • 1 član, uključujući tebe} few {Tim • {0} člana, uključujući tebe} many {Tim • {0} članova, uključujući tebe} other {Tim • {0} članova, uključujući tebe}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potreban je pristup Confluenceu',
15
+ 'fabric.mention.error.defaultAction': 'Pokušaj ponovno za nekoliko sekundi',
16
+ 'fabric.mention.error.defaultHeadline': 'Nešto nije u redu',
17
+ 'fabric.mention.error.differentText': 'Pokušaj unijeti drugi tekst',
18
+ 'fabric.mention.error.loginAgain': 'Pokušaj se odjaviti, a zatim se ponovno prijaviti',
19
+ 'fabric.mention.noAccess.label': 'Nema pristupa',
20
+ 'fabric.mention.noAccess.warning': '{name} neće biti obaviješten jer nema pristup',
21
+ 'fabric.mention.unknow.user.error': 'Nepoznati korisnik {userId}'
22
+ };
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Slovenian (Slovenia) [sl-SI]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Ekipa • Več kot 50 članov',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Ekipa • Več kot 50 članov, vključno z vami',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Ekipa • 1 član} two {Ekipa • {0} člana} few {Ekipa • {0} člani} other {Ekipa • {0} članov}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Ekipa • 1 član, vključno z vami} two {Ekipa • {0} člana, vključno z vami} few {Ekipa • {0} člani, vključno z vami} other {Ekipa • {0} članov, vključno z vami}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potrebuje dostop do storitve Confluence',
15
+ 'fabric.mention.error.defaultAction': 'Poskusite znova čez nekaj sekund',
16
+ 'fabric.mention.error.defaultHeadline': 'Prišlo je do napake',
17
+ 'fabric.mention.error.differentText': 'Poskusite vnesti drugo besedilo',
18
+ 'fabric.mention.error.loginAgain': 'Poskusite se odjaviti in se znova prijaviti',
19
+ 'fabric.mention.noAccess.label': 'Ni dostopa',
20
+ 'fabric.mention.noAccess.warning': 'Oseba {name} ne bo obveščana, ker nima dostopa',
21
+ 'fabric.mention.unknow.user.error': 'Neznani uporabnik {userId}'
22
+ };
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Serbian (Serbia) [sr-RS]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Tim • više od 50 članova',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Tim • više od 50 članova, uključujući vas',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Tim • 1 član} few {Tim • {0} člana} many {Tim • {0} članova} other {Tim • {0} članova}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Tim • 1 član, uključujući vas} few {Tim • {0} člana, uključujući vas} many {Tim • {0} članova, uključujući vas} other {Tim • {0} članova, uključujući vas}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Potreban pristup za Confluence',
15
+ 'fabric.mention.error.defaultAction': 'Probajte ponovo za nekoliko sekundi',
16
+ 'fabric.mention.error.defaultHeadline': 'Došlo je do greške',
17
+ 'fabric.mention.error.differentText': 'Probajte da unesete drugi tekst',
18
+ 'fabric.mention.error.loginAgain': 'Probajte da se odjavite i prijavite',
19
+ 'fabric.mention.noAccess.label': 'Nema pristupa',
20
+ 'fabric.mention.noAccess.warning': 'Korisnik {name} neće biti obavešten jer nema pristup',
21
+ 'fabric.mention.unknow.user.error': 'Nepoznat korisnik {userId}'
22
+ };
@@ -0,0 +1,22 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Serbian (Cyrillic) [sr-YR]
9
+ export default {
10
+ 'fabric.elements.mentions.team.member.50plus': 'Тим • више од 50 чланова',
11
+ 'fabric.elements.mentions.team.member.50plus.including.you': 'Тим • више од 50 чланова, укључујући вас',
12
+ 'fabric.elements.mentions.team.member.count': '{0, plural, one {Тим • 1 члан} other {Тим • {0} члана/ова}}',
13
+ 'fabric.elements.mentions.team.member.count.including.you': '{0, plural, one {Тим • 1 члан, укључујући вас} other {Тим • {0} члана/ова, укључујући вас}}',
14
+ 'fabric.elements.mentions.xproduct.mention.description': 'Потребан приступ за Confluence',
15
+ 'fabric.mention.error.defaultAction': 'Пробајте поново за неколико секунди',
16
+ 'fabric.mention.error.defaultHeadline': 'Дошло је до грешке',
17
+ 'fabric.mention.error.differentText': 'Пробајте да унесете други текст',
18
+ 'fabric.mention.error.loginAgain': 'Пробајте да се одјавите и пријавите',
19
+ 'fabric.mention.noAccess.label': 'Нема приступа',
20
+ 'fabric.mention.noAccess.warning': 'Корисник {name} неће бити обавештен јер нема приступ',
21
+ 'fabric.mention.unknow.user.error': 'Непознат корисник {userId}'
22
+ };
@@ -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 = "24.2.3";
8
+ var packageVersion = "24.2.5";
9
9
  export var SLI_EVENT_TYPE = 'sli';
10
10
  export var SMART_EVENT_TYPE = 'smart';
11
11
  export var fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,21 @@
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.elements.mentions.xproduct.mention.description': string;
13
+ 'fabric.mention.error.defaultAction': string;
14
+ 'fabric.mention.error.defaultHeadline': string;
15
+ 'fabric.mention.error.differentText': string;
16
+ 'fabric.mention.error.loginAgain': string;
17
+ 'fabric.mention.noAccess.label': string;
18
+ 'fabric.mention.noAccess.warning': string;
19
+ 'fabric.mention.unknow.user.error': string;
20
+ };
21
+ export default _default;
package/package.json CHANGED
@@ -13,7 +13,6 @@
13
13
  "atlaskit:src": "src/index.ts",
14
14
  "atlassian": {
15
15
  "team": "Search Platform: Search Experience",
16
- "runReact18": true,
17
16
  "slack": {
18
17
  "channel": "#search-plex-prs",
19
18
  "notifications": {
@@ -36,13 +35,13 @@
36
35
  "@atlaskit/avatar": "^25.1.0",
37
36
  "@atlaskit/focus-ring": "^3.0.0",
38
37
  "@atlaskit/heading": "^5.2.0",
39
- "@atlaskit/icon": "^27.0.0",
38
+ "@atlaskit/icon": "^27.5.0",
40
39
  "@atlaskit/lozenge": "^13.0.0",
41
40
  "@atlaskit/platform-feature-flags": "^1.1.0",
42
- "@atlaskit/primitives": "^14.9.0",
41
+ "@atlaskit/primitives": "^14.10.0",
43
42
  "@atlaskit/teams-avatar": "^2.3.0",
44
- "@atlaskit/theme": "^18.0.0",
45
- "@atlaskit/tokens": "^5.3.0",
43
+ "@atlaskit/theme": "^19.0.0",
44
+ "@atlaskit/tokens": "^5.6.0",
46
45
  "@atlaskit/tooltip": "^20.3.0",
47
46
  "@atlaskit/ufo": "^0.4.0",
48
47
  "@atlaskit/util-service-support": "^6.3.0",
@@ -62,7 +61,6 @@
62
61
  "@types/query-string": "^4.3.1",
63
62
  "@types/serialize-javascript": "^5.0.0",
64
63
  "enzyme": "^3.10.0",
65
- "enzyme-adapter-react-16": "^1.15.1",
66
64
  "es6-promise": "^4.0.5",
67
65
  "exenv": "^1.2.2",
68
66
  "fetch-mock": "^8.0.0",
@@ -122,5 +120,5 @@
122
120
  ]
123
121
  }
124
122
  },
125
- "version": "24.2.4"
123
+ "version": "24.2.6"
126
124
  }