@atlaskit/user-picker 11.25.10 → 12.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 +21 -0
- package/dist/cjs/analytics.js +1 -1
- package/dist/cjs/components/BaseUserPicker.js +3 -3
- package/dist/cjs/components/EmailOption/main.js +2 -2
- package/dist/cjs/components/ExternalUserOption/SourcesTooltipContent.js +4 -4
- package/dist/cjs/components/GroupOption/main.js +3 -3
- package/dist/cjs/components/MessagesIntlProvider.js +3 -3
- package/dist/cjs/components/MultiValue.js +3 -3
- package/dist/cjs/components/MultiValueContainer.js +2 -2
- package/dist/cjs/components/SingleValue.js +2 -2
- package/dist/cjs/components/TeamOption/main.js +9 -9
- package/dist/cjs/components/UserOption.js +1 -1
- package/dist/cjs/components/i18n.js +2 -2
- package/dist/cjs/util/group-options-by-type/index.js +7 -7
- package/dist/es2019/analytics.js +1 -1
- package/dist/es2019/components/BaseUserPicker.js +1 -1
- package/dist/es2019/components/EmailOption/main.js +1 -1
- package/dist/es2019/components/ExternalUserOption/SourcesTooltipContent.js +1 -1
- package/dist/es2019/components/GroupOption/main.js +1 -1
- package/dist/es2019/components/MessagesIntlProvider.js +1 -1
- package/dist/es2019/components/MultiValue.js +1 -1
- package/dist/es2019/components/MultiValueContainer.js +1 -1
- package/dist/es2019/components/SingleValue.js +1 -1
- package/dist/es2019/components/TeamOption/main.js +1 -1
- package/dist/es2019/components/UserOption.js +1 -1
- package/dist/es2019/components/i18n.js +1 -1
- package/dist/es2019/util/group-options-by-type/index.js +1 -1
- package/dist/esm/analytics.js +1 -1
- package/dist/esm/components/BaseUserPicker.js +1 -1
- package/dist/esm/components/EmailOption/main.js +1 -1
- package/dist/esm/components/ExternalUserOption/SourcesTooltipContent.js +1 -1
- package/dist/esm/components/GroupOption/main.js +1 -1
- package/dist/esm/components/MessagesIntlProvider.js +1 -1
- package/dist/esm/components/MultiValue.js +1 -1
- package/dist/esm/components/MultiValueContainer.js +1 -1
- package/dist/esm/components/SingleValue.js +1 -1
- package/dist/esm/components/TeamOption/main.js +1 -1
- package/dist/esm/components/UserOption.js +1 -1
- package/dist/esm/components/i18n.js +1 -1
- package/dist/esm/util/group-options-by-type/index.js +1 -1
- package/dist/types/components/CustomOption/index.d.ts +2 -1
- package/dist/types/components/EmailOption/index.d.ts +2 -1
- package/dist/types/components/GroupOption/index.d.ts +2 -1
- package/dist/types/components/TeamOption/index.d.ts +2 -1
- package/dist/types/components/UserPicker.d.ts +30 -23
- package/dist/types/components/creatable.d.ts +2 -2
- package/dist/types/components/creatableEmailSuggestion.d.ts +7 -6
- package/dist/types/components/i18n.d.ts +82 -82
- package/dist/types/components/styles.d.ts +3 -2
- package/dist/types/components/utils.d.ts +2 -1
- package/dist/types/util/group-options-by-type/index.d.ts +2 -1
- package/dist/types-ts4.5/components/CustomOption/index.d.ts +2 -1
- package/dist/types-ts4.5/components/EmailOption/index.d.ts +2 -1
- package/dist/types-ts4.5/components/GroupOption/index.d.ts +2 -1
- package/dist/types-ts4.5/components/TeamOption/index.d.ts +2 -1
- package/dist/types-ts4.5/components/UserPicker.d.ts +30 -23
- package/dist/types-ts4.5/components/creatable.d.ts +2 -2
- package/dist/types-ts4.5/components/creatableEmailSuggestion.d.ts +7 -6
- package/dist/types-ts4.5/components/i18n.d.ts +82 -82
- package/dist/types-ts4.5/components/styles.d.ts +3 -2
- package/dist/types-ts4.5/components/utils.d.ts +2 -1
- package/dist/types-ts4.5/util/group-options-by-type/index.d.ts +2 -1
- package/package.json +9 -9
- package/report.api.md +1 -1
|
@@ -3,10 +3,10 @@ import { type EmailValidator } from './emailValidation';
|
|
|
3
3
|
declare function creatableProps(isValidEmail?: EmailValidator): {
|
|
4
4
|
allowCreateWhileLoading: boolean;
|
|
5
5
|
createOptionPosition: string;
|
|
6
|
-
isValidNewOption: (inputValue?: string) => boolean | "" | undefined;
|
|
7
|
-
getNewOptionData: (inputValue: string) => Option;
|
|
8
6
|
formatCreateLabel: (inputText?: string) => string;
|
|
7
|
+
getNewOptionData: (inputValue: string) => Option;
|
|
9
8
|
isOptionDisabled: (option: Option) => boolean;
|
|
9
|
+
isValidNewOption: (inputValue?: string) => boolean | "" | undefined;
|
|
10
10
|
};
|
|
11
11
|
export declare const getCreatableProps: typeof creatableProps;
|
|
12
12
|
export {};
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
+
import { type MemoizedFn } from 'memoize-one';
|
|
1
2
|
import { type Option } from '../types';
|
|
2
3
|
import { type EmailValidator } from './emailValidation';
|
|
3
|
-
export declare const getCreatableSuggestedEmailProps:
|
|
4
|
+
export declare const getCreatableSuggestedEmailProps: MemoizedFn<(emailDomain: string, isValidEmail?: EmailValidator) => {
|
|
4
5
|
allowCreateWhileLoading: boolean;
|
|
5
6
|
createOptionPosition: string;
|
|
6
|
-
|
|
7
|
+
formatCreateLabel: (inputText?: string) => string;
|
|
7
8
|
getNewOptionData: (inputValue?: string) => {
|
|
8
|
-
label: string;
|
|
9
|
-
value: string;
|
|
10
9
|
data: {
|
|
11
10
|
id: string;
|
|
12
11
|
name: string;
|
|
13
|
-
type: string;
|
|
14
12
|
suggestion: boolean;
|
|
13
|
+
type: string;
|
|
15
14
|
};
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
16
17
|
} | null;
|
|
17
|
-
formatCreateLabel: (inputText?: string) => string;
|
|
18
18
|
isOptionDisabled: (option: Option) => boolean;
|
|
19
|
+
isValidNewOption: (inputValue?: string) => boolean | "" | undefined;
|
|
19
20
|
}>;
|
|
@@ -1,212 +1,212 @@
|
|
|
1
1
|
export declare const messages: {
|
|
2
|
-
|
|
3
|
-
id: string;
|
|
2
|
+
addEmail: {
|
|
4
3
|
defaultMessage: string;
|
|
5
4
|
description: string;
|
|
5
|
+
id: string;
|
|
6
6
|
};
|
|
7
7
|
addMore: {
|
|
8
|
-
id: string;
|
|
9
8
|
defaultMessage: string;
|
|
10
9
|
description: string;
|
|
11
|
-
};
|
|
12
|
-
remove: {
|
|
13
10
|
id: string;
|
|
11
|
+
};
|
|
12
|
+
adminManagedGroupByline: {
|
|
14
13
|
defaultMessage: string;
|
|
15
14
|
description: string;
|
|
16
|
-
};
|
|
17
|
-
clear: {
|
|
18
15
|
id: string;
|
|
16
|
+
};
|
|
17
|
+
archivedLozenge: {
|
|
19
18
|
defaultMessage: string;
|
|
20
19
|
description: string;
|
|
21
|
-
};
|
|
22
|
-
errorMessage: {
|
|
23
20
|
id: string;
|
|
21
|
+
};
|
|
22
|
+
clear: {
|
|
24
23
|
defaultMessage: string;
|
|
25
24
|
description: string;
|
|
26
|
-
};
|
|
27
|
-
teamByline: {
|
|
28
25
|
id: string;
|
|
26
|
+
};
|
|
27
|
+
confluenceSource: {
|
|
29
28
|
defaultMessage: string;
|
|
30
29
|
description: string;
|
|
31
|
-
};
|
|
32
|
-
officialTeamByline: {
|
|
33
30
|
id: string;
|
|
31
|
+
};
|
|
32
|
+
continueToAddEmail: {
|
|
34
33
|
defaultMessage: string;
|
|
35
34
|
description: string;
|
|
36
|
-
};
|
|
37
|
-
officialMemberCountWithoutYou: {
|
|
38
35
|
id: string;
|
|
36
|
+
};
|
|
37
|
+
customTypeLabel: {
|
|
39
38
|
defaultMessage: string;
|
|
40
39
|
description: string;
|
|
41
|
-
};
|
|
42
|
-
officialMemberCountWithYou: {
|
|
43
40
|
id: string;
|
|
41
|
+
};
|
|
42
|
+
emailTypeLabel: {
|
|
44
43
|
defaultMessage: string;
|
|
45
44
|
description: string;
|
|
46
|
-
};
|
|
47
|
-
memberCountWithoutYou: {
|
|
48
45
|
id: string;
|
|
46
|
+
};
|
|
47
|
+
errorMessage: {
|
|
49
48
|
defaultMessage: string;
|
|
50
49
|
description: string;
|
|
51
|
-
};
|
|
52
|
-
memberCountWithYou: {
|
|
53
50
|
id: string;
|
|
51
|
+
};
|
|
52
|
+
externalUserSourcesError: {
|
|
54
53
|
defaultMessage: string;
|
|
55
54
|
description: string;
|
|
56
|
-
};
|
|
57
|
-
officialPlus50MembersWithoutYou: {
|
|
58
55
|
id: string;
|
|
56
|
+
};
|
|
57
|
+
externalUserSourcesHeading: {
|
|
59
58
|
defaultMessage: string;
|
|
60
59
|
description: string;
|
|
61
|
-
};
|
|
62
|
-
officialPlus50MembersWithYou: {
|
|
63
60
|
id: string;
|
|
61
|
+
};
|
|
62
|
+
externalUserTypeLabel: {
|
|
64
63
|
defaultMessage: string;
|
|
65
64
|
description: string;
|
|
66
|
-
};
|
|
67
|
-
plus50MembersWithoutYou: {
|
|
68
65
|
id: string;
|
|
66
|
+
};
|
|
67
|
+
gitHubProvider: {
|
|
69
68
|
defaultMessage: string;
|
|
70
69
|
description: string;
|
|
71
|
-
};
|
|
72
|
-
plus50MembersWithYou: {
|
|
73
70
|
id: string;
|
|
71
|
+
};
|
|
72
|
+
googleProvider: {
|
|
74
73
|
defaultMessage: string;
|
|
75
74
|
description: string;
|
|
76
|
-
};
|
|
77
|
-
addEmail: {
|
|
78
75
|
id: string;
|
|
76
|
+
};
|
|
77
|
+
groupByline: {
|
|
79
78
|
defaultMessage: string;
|
|
80
79
|
description: string;
|
|
81
|
-
};
|
|
82
|
-
selectToAddEmail: {
|
|
83
80
|
id: string;
|
|
81
|
+
};
|
|
82
|
+
groupTypeLabel: {
|
|
84
83
|
defaultMessage: string;
|
|
85
84
|
description: string;
|
|
86
|
-
};
|
|
87
|
-
continueToAddEmail: {
|
|
88
85
|
id: string;
|
|
86
|
+
};
|
|
87
|
+
guestGroupLozengeTooltip: {
|
|
89
88
|
defaultMessage: string;
|
|
90
89
|
description: string;
|
|
91
|
-
};
|
|
92
|
-
adminManagedGroupByline: {
|
|
93
90
|
id: string;
|
|
91
|
+
};
|
|
92
|
+
guestLozengeText: {
|
|
94
93
|
defaultMessage: string;
|
|
95
94
|
description: string;
|
|
96
|
-
};
|
|
97
|
-
groupByline: {
|
|
98
95
|
id: string;
|
|
96
|
+
};
|
|
97
|
+
guestUserLozengeTooltip: {
|
|
99
98
|
defaultMessage: string;
|
|
100
99
|
description: string;
|
|
101
|
-
};
|
|
102
|
-
externalUserSourcesHeading: {
|
|
103
100
|
id: string;
|
|
101
|
+
};
|
|
102
|
+
jiraSource: {
|
|
104
103
|
defaultMessage: string;
|
|
105
104
|
description: string;
|
|
106
|
-
};
|
|
107
|
-
externalUserSourcesError: {
|
|
108
105
|
id: string;
|
|
106
|
+
};
|
|
107
|
+
memberCountWithoutYou: {
|
|
109
108
|
defaultMessage: string;
|
|
110
109
|
description: string;
|
|
111
|
-
};
|
|
112
|
-
slackProvider: {
|
|
113
110
|
id: string;
|
|
111
|
+
};
|
|
112
|
+
memberCountWithYou: {
|
|
114
113
|
defaultMessage: string;
|
|
115
114
|
description: string;
|
|
116
|
-
};
|
|
117
|
-
googleProvider: {
|
|
118
115
|
id: string;
|
|
116
|
+
};
|
|
117
|
+
memberLozengeText: {
|
|
119
118
|
defaultMessage: string;
|
|
120
119
|
description: string;
|
|
120
|
+
id: string;
|
|
121
121
|
};
|
|
122
122
|
microsoftProvider: {
|
|
123
|
-
id: string;
|
|
124
123
|
defaultMessage: string;
|
|
125
124
|
description: string;
|
|
126
|
-
};
|
|
127
|
-
gitHubProvider: {
|
|
128
125
|
id: string;
|
|
126
|
+
};
|
|
127
|
+
officialMemberCountWithoutYou: {
|
|
129
128
|
defaultMessage: string;
|
|
130
129
|
description: string;
|
|
131
|
-
};
|
|
132
|
-
jiraSource: {
|
|
133
130
|
id: string;
|
|
131
|
+
};
|
|
132
|
+
officialMemberCountWithYou: {
|
|
134
133
|
defaultMessage: string;
|
|
135
134
|
description: string;
|
|
136
|
-
};
|
|
137
|
-
confluenceSource: {
|
|
138
135
|
id: string;
|
|
136
|
+
};
|
|
137
|
+
officialPlus50MembersWithoutYou: {
|
|
139
138
|
defaultMessage: string;
|
|
140
139
|
description: string;
|
|
141
|
-
};
|
|
142
|
-
otherAtlassianSource: {
|
|
143
140
|
id: string;
|
|
141
|
+
};
|
|
142
|
+
officialPlus50MembersWithYou: {
|
|
144
143
|
defaultMessage: string;
|
|
145
144
|
description: string;
|
|
146
|
-
};
|
|
147
|
-
otherAtlassianSourceAppify: {
|
|
148
145
|
id: string;
|
|
146
|
+
};
|
|
147
|
+
officialTeamByline: {
|
|
149
148
|
defaultMessage: string;
|
|
150
149
|
description: string;
|
|
151
|
-
};
|
|
152
|
-
memberLozengeText: {
|
|
153
150
|
id: string;
|
|
151
|
+
};
|
|
152
|
+
otherAtlassianSource: {
|
|
154
153
|
defaultMessage: string;
|
|
155
154
|
description: string;
|
|
156
|
-
};
|
|
157
|
-
guestLozengeText: {
|
|
158
155
|
id: string;
|
|
156
|
+
};
|
|
157
|
+
otherAtlassianSourceAppify: {
|
|
159
158
|
defaultMessage: string;
|
|
160
159
|
description: string;
|
|
161
|
-
};
|
|
162
|
-
guestUserLozengeTooltip: {
|
|
163
160
|
id: string;
|
|
161
|
+
};
|
|
162
|
+
otherTypeLabel: {
|
|
164
163
|
defaultMessage: string;
|
|
165
164
|
description: string;
|
|
166
|
-
};
|
|
167
|
-
guestGroupLozengeTooltip: {
|
|
168
165
|
id: string;
|
|
166
|
+
};
|
|
167
|
+
placeholder: {
|
|
169
168
|
defaultMessage: string;
|
|
170
169
|
description: string;
|
|
171
|
-
};
|
|
172
|
-
archivedLozenge: {
|
|
173
170
|
id: string;
|
|
171
|
+
};
|
|
172
|
+
plus50MembersWithoutYou: {
|
|
174
173
|
defaultMessage: string;
|
|
175
174
|
description: string;
|
|
176
|
-
};
|
|
177
|
-
userTypeLabel: {
|
|
178
175
|
id: string;
|
|
176
|
+
};
|
|
177
|
+
plus50MembersWithYou: {
|
|
179
178
|
defaultMessage: string;
|
|
180
179
|
description: string;
|
|
181
|
-
};
|
|
182
|
-
teamTypeLabel: {
|
|
183
180
|
id: string;
|
|
181
|
+
};
|
|
182
|
+
remove: {
|
|
184
183
|
defaultMessage: string;
|
|
185
184
|
description: string;
|
|
186
|
-
};
|
|
187
|
-
emailTypeLabel: {
|
|
188
185
|
id: string;
|
|
186
|
+
};
|
|
187
|
+
selectToAddEmail: {
|
|
189
188
|
defaultMessage: string;
|
|
190
189
|
description: string;
|
|
191
|
-
};
|
|
192
|
-
groupTypeLabel: {
|
|
193
190
|
id: string;
|
|
191
|
+
};
|
|
192
|
+
slackProvider: {
|
|
194
193
|
defaultMessage: string;
|
|
195
194
|
description: string;
|
|
196
|
-
};
|
|
197
|
-
externalUserTypeLabel: {
|
|
198
195
|
id: string;
|
|
196
|
+
};
|
|
197
|
+
teamByline: {
|
|
199
198
|
defaultMessage: string;
|
|
200
199
|
description: string;
|
|
201
|
-
};
|
|
202
|
-
customTypeLabel: {
|
|
203
200
|
id: string;
|
|
201
|
+
};
|
|
202
|
+
teamTypeLabel: {
|
|
204
203
|
defaultMessage: string;
|
|
205
204
|
description: string;
|
|
206
|
-
};
|
|
207
|
-
otherTypeLabel: {
|
|
208
205
|
id: string;
|
|
206
|
+
};
|
|
207
|
+
userTypeLabel: {
|
|
209
208
|
defaultMessage: string;
|
|
210
209
|
description: string;
|
|
210
|
+
id: string;
|
|
211
211
|
};
|
|
212
212
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type StylesConfig } from '@atlaskit/select';
|
|
2
|
+
import { type MemoizedFn } from 'memoize-one';
|
|
2
3
|
export declare const BORDER_PADDING: "var(--ds-space-075)";
|
|
3
4
|
export declare const AVATAR_PADDING = 6;
|
|
4
5
|
export declare const INDICATOR_WIDTH = 39;
|
|
5
|
-
export declare const getStyles:
|
|
6
|
-
export declare const getPopupStyles:
|
|
6
|
+
export declare const getStyles: MemoizedFn<(width: string | number, isMulti?: boolean, isCompact?: boolean, overrideStyles?: StylesConfig, isVisualRefresh?: boolean, isPopupStyles?: boolean, height?: number | string, minHeight?: number | string) => StylesConfig>;
|
|
7
|
+
export declare const getPopupStyles: MemoizedFn<(width: string | number, isMulti?: boolean, overrideStyles?: StylesConfig, isVisualRefresh?: boolean) => StylesConfig>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type MemoizedFn } from 'memoize-one';
|
|
1
2
|
import { type ReactChild, type ReactElement, type ReactNode } from 'react';
|
|
2
3
|
import { type AtlaskitSelectValue, type ExternalUser, type Custom, type Email, type Option, type OptionData, type Promisable, type Team, type Group, type User, type OptionIdentifier, type DefaultValue, type LozengeProps } from '../types';
|
|
3
4
|
export declare const isExternalUser: (option: OptionData) => option is ExternalUser;
|
|
@@ -10,7 +11,7 @@ export declare const isDefaultValuePopulated: (value?: DefaultValue) => boolean;
|
|
|
10
11
|
export declare const optionToSelectableOption: (option: OptionData | OptionIdentifier) => Option;
|
|
11
12
|
export declare const extractOptionValue: (value: AtlaskitSelectValue) => OptionData | OptionData[] | undefined;
|
|
12
13
|
export declare const isIterable: (a: any) => a is Iterable<Promisable<OptionData | OptionData[]>>;
|
|
13
|
-
export declare const getOptions:
|
|
14
|
+
export declare const getOptions: MemoizedFn<(options: OptionData[]) => Option[]>;
|
|
14
15
|
export interface OptionToSelectableOptions {
|
|
15
16
|
(defaultValue: OptionData): Option;
|
|
16
17
|
(defaultValue: OptionData[]): Option[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { type MemoizedFn } from 'memoize-one';
|
|
2
3
|
import type { OptionData, Option, GroupedOptions } from '../../types';
|
|
3
|
-
export declare const groupOptionsByType:
|
|
4
|
+
export declare const groupOptionsByType: MemoizedFn<(options: Option[], groupByTypeOrder: NonNullable<OptionData["type"]>[], customGroupLabels?: Partial<Record<NonNullable<OptionData["type"]>, React.ReactNode>>) => Option[] | GroupedOptions[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/user-picker",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"description": "Fabric component for display a dropdown to select a user from",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"@atlaskit/analytics-next": "^11.2.0",
|
|
47
47
|
"@atlaskit/avatar": "^25.11.0",
|
|
48
48
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
49
|
-
"@atlaskit/icon": "^34.
|
|
49
|
+
"@atlaskit/icon": "^34.2.0",
|
|
50
50
|
"@atlaskit/logo": "^20.0.0",
|
|
51
|
-
"@atlaskit/lozenge": "^13.
|
|
52
|
-
"@atlaskit/people-teams-ui-public": "^
|
|
51
|
+
"@atlaskit/lozenge": "^13.7.0",
|
|
52
|
+
"@atlaskit/people-teams-ui-public": "^4.0.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
54
|
-
"@atlaskit/popper": "^7.
|
|
54
|
+
"@atlaskit/popper": "^7.2.0",
|
|
55
55
|
"@atlaskit/primitives": "^19.0.0",
|
|
56
56
|
"@atlaskit/select": "^21.10.0",
|
|
57
57
|
"@atlaskit/spinner": "^19.1.0",
|
|
58
|
-
"@atlaskit/tag": "^14.
|
|
59
|
-
"@atlaskit/teams-avatar": "^2.
|
|
58
|
+
"@atlaskit/tag": "^14.9.0",
|
|
59
|
+
"@atlaskit/teams-avatar": "^2.5.0",
|
|
60
60
|
"@atlaskit/tokens": "^13.0.0",
|
|
61
61
|
"@atlaskit/tooltip": "^21.1.0",
|
|
62
62
|
"@atlaskit/ufo": "^0.4.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"react": "^18.2.0",
|
|
72
72
|
"react-dom": "^18.2.0",
|
|
73
|
-
"react-intl
|
|
73
|
+
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@af/integration-testing": "workspace:^",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"enzyme": "^3.10.0",
|
|
90
90
|
"mock-apollo-client": "^0.1.0",
|
|
91
91
|
"react-beautiful-dnd": "^12.2.0",
|
|
92
|
-
"react-intl
|
|
92
|
+
"react-intl": "^6.6.2",
|
|
93
93
|
"react-select-event": "^5.5.0"
|
|
94
94
|
},
|
|
95
95
|
"techstack": {
|
package/report.api.md
CHANGED