@atlaskit/emoji 70.16.0 → 70.16.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,12 @@
1
1
  # @atlaskit/emoji
2
2
 
3
+ ## 70.16.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`0cc0348368042`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0cc0348368042) -
8
+ Update Atlassian emoji types to include color, color group data, subcategories + hidden properties
9
+
3
10
  ## 70.16.0
4
11
 
5
12
  ### Minor Changes
@@ -20,7 +20,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
20
20
  actionSubjectId: actionSubjectId,
21
21
  attributes: _objectSpread({
22
22
  packageName: "@atlaskit/emoji",
23
- packageVersion: "70.15.3"
23
+ packageVersion: "70.16.0"
24
24
  }, attributes)
25
25
  };
26
26
  };
@@ -9,7 +9,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
9
9
  actionSubjectId,
10
10
  attributes: {
11
11
  packageName: "@atlaskit/emoji",
12
- packageVersion: "70.15.3",
12
+ packageVersion: "70.16.0",
13
13
  ...attributes
14
14
  }
15
15
  });
@@ -14,7 +14,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
14
14
  actionSubjectId: actionSubjectId,
15
15
  attributes: _objectSpread({
16
16
  packageName: "@atlaskit/emoji",
17
- packageVersion: "70.15.3"
17
+ packageVersion: "70.16.0"
18
18
  }, attributes)
19
19
  };
20
20
  };
@@ -246,16 +246,22 @@ export interface EmojiServiceDescription {
246
246
  altRepresentations?: AltRepresentations;
247
247
  ascii?: string[];
248
248
  category: string;
249
+ color?: string;
249
250
  createdDate?: string;
250
251
  creatorUserId?: string;
251
252
  fallback?: string;
253
+ hidden?: boolean;
252
254
  id: string;
255
+ keywords?: string[];
253
256
  name?: string;
254
257
  order?: number;
255
258
  representation: EmojiServiceRepresentation;
256
259
  searchable: boolean;
257
260
  shortName: string;
258
261
  type: string;
262
+ variantBase?: boolean;
263
+ variantChildren?: string[];
264
+ variantParent?: string;
259
265
  }
260
266
  export interface EmojiServiceDescriptionWithVariations extends EmojiServiceDescription {
261
267
  skinVariations?: EmojiServiceDescription[];
@@ -246,16 +246,22 @@ export interface EmojiServiceDescription {
246
246
  altRepresentations?: AltRepresentations;
247
247
  ascii?: string[];
248
248
  category: string;
249
+ color?: string;
249
250
  createdDate?: string;
250
251
  creatorUserId?: string;
251
252
  fallback?: string;
253
+ hidden?: boolean;
252
254
  id: string;
255
+ keywords?: string[];
253
256
  name?: string;
254
257
  order?: number;
255
258
  representation: EmojiServiceRepresentation;
256
259
  searchable: boolean;
257
260
  shortName: string;
258
261
  type: string;
262
+ variantBase?: boolean;
263
+ variantChildren?: string[];
264
+ variantParent?: string;
259
265
  }
260
266
  export interface EmojiServiceDescriptionWithVariations extends EmojiServiceDescription {
261
267
  skinVariations?: EmojiServiceDescription[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/emoji",
3
- "version": "70.16.0",
3
+ "version": "70.16.1",
4
4
  "description": "Fabric emoji React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"