@atlaskit/mention 26.0.3 → 26.1.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 +15 -0
- package/dist/cjs/api/MentionResource.js +41 -41
- package/dist/cjs/api/TeamMentionResource.js +35 -35
- package/dist/cjs/components/MentionItem/index.js +9 -1
- package/dist/cjs/components/MentionItem/styles.js +5 -2
- package/dist/cjs/item.js +6 -0
- package/dist/cjs/util/analytics.js +1 -1
- package/dist/cjs/util/i18n.js +39 -39
- package/dist/es2019/components/MentionItem/index.js +4 -2
- package/dist/es2019/components/MentionItem/styles.js +16 -11
- package/dist/es2019/item.js +2 -2
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/esm/api/MentionResource.js +41 -41
- package/dist/esm/api/TeamMentionResource.js +35 -35
- package/dist/esm/components/MentionItem/index.js +4 -2
- package/dist/esm/components/MentionItem/styles.js +4 -1
- package/dist/esm/item.js +2 -2
- package/dist/esm/util/analytics.js +1 -1
- package/dist/esm/util/i18n.js +38 -38
- package/dist/types/components/MentionItem/index.d.ts +2 -1
- package/dist/types/components/MentionItem/styles.d.ts +2 -0
- package/dist/types/item.d.ts +2 -2
- package/dist/types-ts4.5/components/MentionItem/index.d.ts +2 -1
- package/dist/types-ts4.5/components/MentionItem/styles.d.ts +2 -0
- package/dist/types-ts4.5/item.d.ts +2 -2
- package/package.json +7 -8
|
@@ -23,7 +23,7 @@ import { renderHighlight } from './MentionHighlightHelpers';
|
|
|
23
23
|
import MentionDescriptionByline from '../MentionDescriptionByline';
|
|
24
24
|
import MessagesIntlProvider from '../MessagesIntlProvider';
|
|
25
25
|
import { MentionAvatar } from '../MentionAvatar';
|
|
26
|
-
export { MENTION_ITEM_HEIGHT } from './styles';
|
|
26
|
+
export { MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED } from './styles';
|
|
27
27
|
var lozengeAppearanceToTagColor = {
|
|
28
28
|
default: 'standard',
|
|
29
29
|
success: 'lime',
|
|
@@ -107,7 +107,8 @@ var MentionItem = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
107
107
|
var _this$props = this.props,
|
|
108
108
|
mention = _this$props.mention,
|
|
109
109
|
selected = _this$props.selected,
|
|
110
|
-
forwardedRef = _this$props.forwardedRef
|
|
110
|
+
forwardedRef = _this$props.forwardedRef,
|
|
111
|
+
height = _this$props.height;
|
|
111
112
|
var id = mention.id,
|
|
112
113
|
highlight = mention.highlight,
|
|
113
114
|
presence = mention.presence,
|
|
@@ -123,6 +124,7 @@ var MentionItem = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
123
124
|
var xProductUserInfoIconColor = selected ? "var(--ds-icon-selected, #1868DB)" : "var(--ds-icon, #292A2E)";
|
|
124
125
|
return /*#__PURE__*/React.createElement(MessagesIntlProvider, null, /*#__PURE__*/React.createElement(MentionItemStyle, {
|
|
125
126
|
selected: selected,
|
|
127
|
+
height: height,
|
|
126
128
|
onMouseDown: this.onMentionSelected,
|
|
127
129
|
onMouseMove: this.onMentionMenuItemMouseMove,
|
|
128
130
|
onMouseEnter: this.onMentionMenuItemMouseEnter,
|
|
@@ -75,15 +75,18 @@ export var TimeStyle = styled.div({
|
|
|
75
75
|
font: "var(--ds-font-body-small, normal 400 12px/16px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
76
76
|
});
|
|
77
77
|
export var MENTION_ITEM_HEIGHT = 48;
|
|
78
|
+
export var MENTION_ITEM_HEIGHT_REFRESHED = 44;
|
|
78
79
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/ui-styling-standard/no-dynamic-styles -- Ignored via go/DSP-18766
|
|
79
80
|
export var MentionItemStyle = styled.div(function (props) {
|
|
81
|
+
var _props$height;
|
|
80
82
|
return {
|
|
81
83
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
82
84
|
backgroundColor: props.selected ? "var(--ds-background-selected, #E9F2FE)" : 'transparent',
|
|
83
85
|
display: 'block',
|
|
84
86
|
overflow: 'hidden',
|
|
85
87
|
listStyleType: 'none',
|
|
86
|
-
|
|
88
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
89
|
+
height: "".concat((_props$height = props.height) !== null && _props$height !== void 0 ? _props$height : MENTION_ITEM_HEIGHT, "px"),
|
|
87
90
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
88
91
|
lineHeight: 1.2,
|
|
89
92
|
cursor: 'pointer'
|
package/dist/esm/item.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import MentionItem, { MENTION_ITEM_HEIGHT } from './components/MentionItem';
|
|
1
|
+
import MentionItem, { MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED } from './components/MentionItem';
|
|
2
2
|
export {
|
|
3
3
|
// Components
|
|
4
|
-
MentionItem, MENTION_ITEM_HEIGHT };
|
|
4
|
+
MentionItem, MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED };
|
|
@@ -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 = "26.0.
|
|
8
|
+
var packageVersion = "26.0.4";
|
|
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/dist/esm/util/i18n.js
CHANGED
|
@@ -39,145 +39,145 @@ export var DifferentText = propFormatter(messages.differentText);
|
|
|
39
39
|
*/
|
|
40
40
|
var _getMessagesForLocale = /*#__PURE__*/function () {
|
|
41
41
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(locale) {
|
|
42
|
-
var fragments;
|
|
43
|
-
return _regeneratorRuntime.wrap(function
|
|
42
|
+
var fragments, _t;
|
|
43
|
+
return _regeneratorRuntime.wrap(function (_context) {
|
|
44
44
|
while (1) switch (_context.prev = _context.next) {
|
|
45
45
|
case 0:
|
|
46
|
-
|
|
47
|
-
_context.next =
|
|
46
|
+
_t = locale;
|
|
47
|
+
_context.next = _t === 'cs' ? 1 : _t === 'da' ? 2 : _t === 'de' ? 3 : _t === 'en' ? 4 : _t === 'en_GB' ? 5 : _t === 'en_ZZ' ? 6 : _t === 'es' ? 7 : _t === 'et' ? 8 : _t === 'fi' ? 9 : _t === 'fr' ? 10 : _t === 'hu' ? 11 : _t === 'is' ? 12 : _t === 'it' ? 13 : _t === 'ja' ? 14 : _t === 'ko' ? 15 : _t === 'nb' ? 16 : _t === 'nl' ? 17 : _t === 'pl' ? 18 : _t === 'pt_BR' ? 19 : _t === 'pt-BR' ? 19 : _t === 'pt_PT' ? 20 : _t === 'pt-PT' ? 20 : _t === 'ro' ? 21 : _t === 'ru' ? 22 : _t === 'sk' ? 23 : _t === 'sv' ? 24 : _t === 'th' ? 25 : _t === 'tr' ? 26 : _t === 'uk' ? 27 : _t === 'vi' ? 28 : _t === 'zh_TW' ? 29 : _t === 'zh' ? 30 : 31;
|
|
48
48
|
break;
|
|
49
|
-
case
|
|
49
|
+
case 1:
|
|
50
50
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-cs" */'../i18n/cs').then(function (mod) {
|
|
51
51
|
return mod.default;
|
|
52
52
|
}));
|
|
53
|
-
case
|
|
53
|
+
case 2:
|
|
54
54
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-da" */'../i18n/da').then(function (mod) {
|
|
55
55
|
return mod.default;
|
|
56
56
|
}));
|
|
57
|
-
case
|
|
57
|
+
case 3:
|
|
58
58
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-de" */'../i18n/de').then(function (mod) {
|
|
59
59
|
return mod.default;
|
|
60
60
|
}));
|
|
61
|
-
case
|
|
61
|
+
case 4:
|
|
62
62
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-en" */'../i18n/en').then(function (mod) {
|
|
63
63
|
return mod.default;
|
|
64
64
|
}));
|
|
65
|
-
case
|
|
65
|
+
case 5:
|
|
66
66
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-en_GB" */'../i18n/en_GB').then(function (mod) {
|
|
67
67
|
return mod.default;
|
|
68
68
|
}));
|
|
69
|
-
case
|
|
69
|
+
case 6:
|
|
70
70
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-en_ZZ" */'../i18n/en_ZZ').then(function (mod) {
|
|
71
71
|
return mod.default;
|
|
72
72
|
}));
|
|
73
|
-
case
|
|
73
|
+
case 7:
|
|
74
74
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-es" */'../i18n/es').then(function (mod) {
|
|
75
75
|
return mod.default;
|
|
76
76
|
}));
|
|
77
|
-
case
|
|
77
|
+
case 8:
|
|
78
78
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-et" */'../i18n/et').then(function (mod) {
|
|
79
79
|
return mod.default;
|
|
80
80
|
}));
|
|
81
|
-
case
|
|
81
|
+
case 9:
|
|
82
82
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-fi" */'../i18n/fi').then(function (mod) {
|
|
83
83
|
return mod.default;
|
|
84
84
|
}));
|
|
85
|
-
case
|
|
85
|
+
case 10:
|
|
86
86
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-fr" */'../i18n/fr').then(function (mod) {
|
|
87
87
|
return mod.default;
|
|
88
88
|
}));
|
|
89
|
-
case
|
|
89
|
+
case 11:
|
|
90
90
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-hu" */'../i18n/hu').then(function (mod) {
|
|
91
91
|
return mod.default;
|
|
92
92
|
}));
|
|
93
|
-
case
|
|
93
|
+
case 12:
|
|
94
94
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-is" */'../i18n/is').then(function (mod) {
|
|
95
95
|
return mod.default;
|
|
96
96
|
}));
|
|
97
|
-
case
|
|
97
|
+
case 13:
|
|
98
98
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-it" */'../i18n/it').then(function (mod) {
|
|
99
99
|
return mod.default;
|
|
100
100
|
}));
|
|
101
|
-
case
|
|
101
|
+
case 14:
|
|
102
102
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-ja" */'../i18n/ja').then(function (mod) {
|
|
103
103
|
return mod.default;
|
|
104
104
|
}));
|
|
105
|
-
case
|
|
105
|
+
case 15:
|
|
106
106
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-ko" */'../i18n/ko').then(function (mod) {
|
|
107
107
|
return mod.default;
|
|
108
108
|
}));
|
|
109
|
-
case
|
|
109
|
+
case 16:
|
|
110
110
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-nb" */'../i18n/nb').then(function (mod) {
|
|
111
111
|
return mod.default;
|
|
112
112
|
}));
|
|
113
|
-
case
|
|
113
|
+
case 17:
|
|
114
114
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-nl" */'../i18n/nl').then(function (mod) {
|
|
115
115
|
return mod.default;
|
|
116
116
|
}));
|
|
117
|
-
case
|
|
117
|
+
case 18:
|
|
118
118
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-pl" */'../i18n/pl').then(function (mod) {
|
|
119
119
|
return mod.default;
|
|
120
120
|
}));
|
|
121
|
-
case
|
|
121
|
+
case 19:
|
|
122
122
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-pt_BR" */'../i18n/pt_BR').then(function (mod) {
|
|
123
123
|
return mod.default;
|
|
124
124
|
}));
|
|
125
|
-
case
|
|
125
|
+
case 20:
|
|
126
126
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-pt_PT" */'../i18n/pt_PT').then(function (mod) {
|
|
127
127
|
return mod.default;
|
|
128
128
|
}));
|
|
129
|
-
case
|
|
129
|
+
case 21:
|
|
130
130
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-ro" */'../i18n/ro').then(function (mod) {
|
|
131
131
|
return mod.default;
|
|
132
132
|
}));
|
|
133
|
-
case
|
|
133
|
+
case 22:
|
|
134
134
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-ru" */'../i18n/ru').then(function (mod) {
|
|
135
135
|
return mod.default;
|
|
136
136
|
}));
|
|
137
|
-
case
|
|
137
|
+
case 23:
|
|
138
138
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-sk" */'../i18n/sk').then(function (mod) {
|
|
139
139
|
return mod.default;
|
|
140
140
|
}));
|
|
141
|
-
case
|
|
141
|
+
case 24:
|
|
142
142
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-sv" */'../i18n/sv').then(function (mod) {
|
|
143
143
|
return mod.default;
|
|
144
144
|
}));
|
|
145
|
-
case
|
|
145
|
+
case 25:
|
|
146
146
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-th" */'../i18n/th').then(function (mod) {
|
|
147
147
|
return mod.default;
|
|
148
148
|
}));
|
|
149
|
-
case
|
|
149
|
+
case 26:
|
|
150
150
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-tr" */'../i18n/tr').then(function (mod) {
|
|
151
151
|
return mod.default;
|
|
152
152
|
}));
|
|
153
|
-
case
|
|
153
|
+
case 27:
|
|
154
154
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-uk" */'../i18n/uk').then(function (mod) {
|
|
155
155
|
return mod.default;
|
|
156
156
|
}));
|
|
157
|
-
case
|
|
157
|
+
case 28:
|
|
158
158
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-vi" */'../i18n/vi').then(function (mod) {
|
|
159
159
|
return mod.default;
|
|
160
160
|
}));
|
|
161
|
-
case
|
|
161
|
+
case 29:
|
|
162
162
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-zh_TW" */'../i18n/zh_TW').then(function (mod) {
|
|
163
163
|
return mod.default;
|
|
164
164
|
}));
|
|
165
|
-
case
|
|
165
|
+
case 30:
|
|
166
166
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-zh" */'../i18n/zh').then(function (mod) {
|
|
167
167
|
return mod.default;
|
|
168
168
|
}));
|
|
169
|
-
case
|
|
169
|
+
case 31:
|
|
170
170
|
fragments = locale.split(/[_-]/);
|
|
171
171
|
if (!(fragments.length === 2)) {
|
|
172
|
-
_context.next =
|
|
172
|
+
_context.next = 32;
|
|
173
173
|
break;
|
|
174
174
|
}
|
|
175
175
|
return _context.abrupt("return", _getMessagesForLocale(fragments[0]));
|
|
176
|
-
case
|
|
176
|
+
case 32:
|
|
177
177
|
return _context.abrupt("return", import( /* webpackChunkName: "@atlaskit-internal_mention-i18n-en" */'../i18n/en').then(function (mod) {
|
|
178
178
|
return mod.default;
|
|
179
179
|
}));
|
|
180
|
-
case
|
|
180
|
+
case 33:
|
|
181
181
|
case "end":
|
|
182
182
|
return _context.stop();
|
|
183
183
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type MentionDescription, type OnMentionEvent } from '../../types';
|
|
3
|
-
export { MENTION_ITEM_HEIGHT } from './styles';
|
|
3
|
+
export { MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED } from './styles';
|
|
4
4
|
export interface Props {
|
|
5
5
|
forwardedRef?: React.Ref<HTMLDivElement>;
|
|
6
|
+
height?: number;
|
|
6
7
|
mention: MentionDescription;
|
|
7
8
|
onMouseEnter?: OnMentionEvent;
|
|
8
9
|
onMouseMove?: OnMentionEvent;
|
|
@@ -2,6 +2,7 @@ import { type StyledComponent } from '@emotion/styled';
|
|
|
2
2
|
import type { Theme } from '@emotion/react';
|
|
3
3
|
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
4
4
|
export interface MentionItemStyleProps {
|
|
5
|
+
height?: number;
|
|
5
6
|
selected?: boolean;
|
|
6
7
|
}
|
|
7
8
|
export interface AvatarSectionStyleProps {
|
|
@@ -38,6 +39,7 @@ export declare const TimeStyle: StyledComponent<{
|
|
|
38
39
|
theme?: Theme;
|
|
39
40
|
}, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
40
41
|
export declare const MENTION_ITEM_HEIGHT = 48;
|
|
42
|
+
export declare const MENTION_ITEM_HEIGHT_REFRESHED = 44;
|
|
41
43
|
export declare const MentionItemStyle: StyledComponent<{
|
|
42
44
|
as?: React.ElementType;
|
|
43
45
|
theme?: Theme;
|
package/dist/types/item.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import MentionItem, { MENTION_ITEM_HEIGHT } from './components/MentionItem';
|
|
2
|
-
export { MentionItem, MENTION_ITEM_HEIGHT, };
|
|
1
|
+
import MentionItem, { MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED } from './components/MentionItem';
|
|
2
|
+
export { MentionItem, MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED, };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type MentionDescription, type OnMentionEvent } from '../../types';
|
|
3
|
-
export { MENTION_ITEM_HEIGHT } from './styles';
|
|
3
|
+
export { MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED } from './styles';
|
|
4
4
|
export interface Props {
|
|
5
5
|
forwardedRef?: React.Ref<HTMLDivElement>;
|
|
6
|
+
height?: number;
|
|
6
7
|
mention: MentionDescription;
|
|
7
8
|
onMouseEnter?: OnMentionEvent;
|
|
8
9
|
onMouseMove?: OnMentionEvent;
|
|
@@ -2,6 +2,7 @@ import { type StyledComponent } from '@emotion/styled';
|
|
|
2
2
|
import type { Theme } from '@emotion/react';
|
|
3
3
|
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
4
4
|
export interface MentionItemStyleProps {
|
|
5
|
+
height?: number;
|
|
5
6
|
selected?: boolean;
|
|
6
7
|
}
|
|
7
8
|
export interface AvatarSectionStyleProps {
|
|
@@ -38,6 +39,7 @@ export declare const TimeStyle: StyledComponent<{
|
|
|
38
39
|
theme?: Theme;
|
|
39
40
|
}, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
40
41
|
export declare const MENTION_ITEM_HEIGHT = 48;
|
|
42
|
+
export declare const MENTION_ITEM_HEIGHT_REFRESHED = 44;
|
|
41
43
|
export declare const MentionItemStyle: StyledComponent<{
|
|
42
44
|
as?: React.ElementType;
|
|
43
45
|
theme?: Theme;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import MentionItem, { MENTION_ITEM_HEIGHT } from './components/MentionItem';
|
|
2
|
-
export { MentionItem, MENTION_ITEM_HEIGHT, };
|
|
1
|
+
import MentionItem, { MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED } from './components/MentionItem';
|
|
2
|
+
export { MentionItem, MENTION_ITEM_HEIGHT, MENTION_ITEM_HEIGHT_REFRESHED, };
|
package/package.json
CHANGED
|
@@ -26,20 +26,20 @@
|
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@atlaskit/afm-i18n-platform-elements-mention": "2.
|
|
29
|
+
"@atlaskit/afm-i18n-platform-elements-mention": "2.142.0",
|
|
30
30
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
31
|
-
"@atlaskit/analytics-next": "^11.
|
|
31
|
+
"@atlaskit/analytics-next": "^11.3.0",
|
|
32
32
|
"@atlaskit/avatar": "^25.15.0",
|
|
33
33
|
"@atlaskit/focus-ring": "^3.1.0",
|
|
34
34
|
"@atlaskit/heading": "^5.4.0",
|
|
35
|
-
"@atlaskit/icon": "^35.
|
|
35
|
+
"@atlaskit/icon": "^35.4.0",
|
|
36
36
|
"@atlaskit/lozenge": "^13.8.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
38
|
"@atlaskit/primitives": "^19.0.0",
|
|
39
|
-
"@atlaskit/tag": "^14.
|
|
39
|
+
"@atlaskit/tag": "^14.15.0",
|
|
40
40
|
"@atlaskit/teams-avatar": "^2.7.0",
|
|
41
|
-
"@atlaskit/tokens": "^13.
|
|
42
|
-
"@atlaskit/tooltip": "^22.
|
|
41
|
+
"@atlaskit/tokens": "^13.1.0",
|
|
42
|
+
"@atlaskit/tooltip": "^22.6.0",
|
|
43
43
|
"@atlaskit/ufo": "^0.5.0",
|
|
44
44
|
"@atlaskit/util-service-support": "^6.4.0",
|
|
45
45
|
"@babel/runtime": "^7.0.0",
|
|
@@ -53,7 +53,6 @@
|
|
|
53
53
|
"@af/integration-testing": "workspace:^",
|
|
54
54
|
"@af/search-test-utils": "workspace:^",
|
|
55
55
|
"@af/visual-regression": "workspace:^",
|
|
56
|
-
"@atlaskit/elements-test-helpers": "workspace:^",
|
|
57
56
|
"@atlassian/a11y-jest-testing": "^0.11.0",
|
|
58
57
|
"@atlassian/a11y-playwright-testing": "^0.10.0",
|
|
59
58
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
@@ -121,5 +120,5 @@
|
|
|
121
120
|
]
|
|
122
121
|
}
|
|
123
122
|
},
|
|
124
|
-
"version": "26.0
|
|
123
|
+
"version": "26.1.0"
|
|
125
124
|
}
|