@atlaskit/emoji 71.5.3 → 71.5.5

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,18 @@
1
1
  # @atlaskit/emoji
2
2
 
3
+ ## 71.5.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [`1388b698b0ad1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1388b698b0ad1) -
8
+ Add a public entry point for rendering unicode emoji to image URLs.
9
+
10
+ ## 71.5.4
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
3
16
  ## 71.5.3
4
17
 
5
18
  ### Patch Changes
@@ -10,9 +10,7 @@ exports.default = exports.UnicodeEmoji = exports.SpriteEmoji = exports.ImageEmoj
10
10
  require("./Emoji.compiled.css");
11
11
  var _runtime = require("@compiled/react/runtime");
12
12
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
13
- var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
14
13
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
15
- var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
16
14
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
17
15
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
18
16
  var _react = _interopRequireWildcard(require("react"));
@@ -35,6 +33,7 @@ var _browserApis = require("@atlaskit/browser-apis");
35
33
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
36
34
  var _i18n = require("../i18n");
37
35
  var _isSsr = require("../../util/is-ssr");
36
+ var _renderUnicodeEmojiToImagePath = require("../../util/renderUnicodeEmojiToImagePath");
38
37
  var _EmojiPlaceholder = _interopRequireDefault(require("./EmojiPlaceholder"));
39
38
  var _excluded = ["emoji", "fitToHeight", "selected", "selectOnHover", "className", "showTooltip", "showDelete", "shouldBeInteractive", "tabIndex", "onSelected", "onMouseMove", "onFocus", "onDelete", "onLoadError", "onLoadSuccess", "disableLazyLoad", "autoWidth", "children", "type", "editorEmoji", "renderUnicodeEmojiAsImage"];
40
39
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
@@ -46,6 +45,7 @@ var emojiImageContainer = null;
46
45
  // Unicode emojis render as text inside a <span>, not an <img>, so they do not need
47
46
  // borderRadius (which would clip a background on hover) or the img { display: block } rule.
48
47
  var emojiUnicodeContainer = null;
48
+ var unicodeEmojiCanvasSize = 128;
49
49
  var handleMouseDown = function handleMouseDown(props, event) {
50
50
  // Clicked emoji delete button
51
51
  if (event.target instanceof Element && event.target.getAttribute('aria-label') === _constants.deleteEmojiLabel) {
@@ -158,52 +158,6 @@ var SpriteEmoji = exports.SpriteEmoji = function SpriteEmoji(props) {
158
158
  }))
159
159
  );
160
160
  };
161
- var unicodeEmojiCanvasSize = 128;
162
- var unicodeEmojiCanvasFontSize = 124;
163
- var unicodeEmojiCanvasTopPadding = 8;
164
- var renderUnicodeEmojiToImagePath = /*#__PURE__*/function () {
165
- var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(unicodeEmoji) {
166
- var OffscreenCanvasCtor, canvas, context, blob;
167
- return _regenerator.default.wrap(function (_context) {
168
- while (1) switch (_context.prev = _context.next) {
169
- case 0:
170
- OffscreenCanvasCtor = globalThis['OffscreenCanvas'];
171
- if (!((0, _isSsr.isSSR)() || !OffscreenCanvasCtor || typeof URL === 'undefined')) {
172
- _context.next = 1;
173
- break;
174
- }
175
- return _context.abrupt("return", undefined);
176
- case 1:
177
- canvas = new OffscreenCanvasCtor(unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
178
- context = canvas.getContext('2d');
179
- if (context) {
180
- _context.next = 2;
181
- break;
182
- }
183
- return _context.abrupt("return", undefined);
184
- case 2:
185
- context.clearRect(0, 0, unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
186
- context.textAlign = 'center';
187
- context.textBaseline = 'middle';
188
- context.font = "".concat(unicodeEmojiCanvasFontSize, "px sans-serif");
189
- context.fillText(unicodeEmoji, unicodeEmojiCanvasSize / 2, unicodeEmojiCanvasSize / 2 + unicodeEmojiCanvasTopPadding);
190
- _context.next = 3;
191
- return canvas.convertToBlob({
192
- type: 'image/png'
193
- });
194
- case 3:
195
- blob = _context.sent;
196
- return _context.abrupt("return", URL.createObjectURL(blob));
197
- case 4:
198
- case "end":
199
- return _context.stop();
200
- }
201
- }, _callee);
202
- }));
203
- return function renderUnicodeEmojiToImagePath(_x) {
204
- return _ref.apply(this, arguments);
205
- };
206
- }();
207
161
  var useUnicodeEmojiImage = function useUnicodeEmojiImage(unicodeEmoji) {
208
162
  var _useState = (0, _react.useState)({
209
163
  status: 'loading'
@@ -218,7 +172,7 @@ var useUnicodeEmojiImage = function useUnicodeEmojiImage(unicodeEmoji) {
218
172
  status: 'loading',
219
173
  unicodeEmoji: unicodeEmoji
220
174
  });
221
- void renderUnicodeEmojiToImagePath(unicodeEmoji).then(function (imagePath) {
175
+ void (0, _renderUnicodeEmojiToImagePath.renderUnicodeEmojiToImagePath)(unicodeEmoji).then(function (imagePath) {
222
176
  if (cancelled) {
223
177
  if (imagePath) {
224
178
  URL.revokeObjectURL(imagePath);
@@ -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: "71.5.2"
23
+ packageVersion: "71.5.4"
24
24
  }, attributes)
25
25
  };
26
26
  };
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.renderUnicodeEmojiToImagePath = void 0;
8
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
9
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
10
+ var _isSsr = require("./is-ssr");
11
+ var unicodeEmojiCanvasSize = 128;
12
+ var unicodeEmojiCanvasFontSize = 124;
13
+ var unicodeEmojiCanvasTopPadding = 8;
14
+ var renderUnicodeEmojiToImagePath = exports.renderUnicodeEmojiToImagePath = /*#__PURE__*/function () {
15
+ var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(unicodeEmoji) {
16
+ var OffscreenCanvasCtor, canvas, context, blob;
17
+ return _regenerator.default.wrap(function (_context) {
18
+ while (1) switch (_context.prev = _context.next) {
19
+ case 0:
20
+ OffscreenCanvasCtor = globalThis['OffscreenCanvas'];
21
+ if (!((0, _isSsr.isSSR)() || !OffscreenCanvasCtor || typeof URL === 'undefined')) {
22
+ _context.next = 1;
23
+ break;
24
+ }
25
+ return _context.abrupt("return", undefined);
26
+ case 1:
27
+ canvas = new OffscreenCanvasCtor(unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
28
+ context = canvas.getContext('2d');
29
+ if (context) {
30
+ _context.next = 2;
31
+ break;
32
+ }
33
+ return _context.abrupt("return", undefined);
34
+ case 2:
35
+ context.clearRect(0, 0, unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
36
+ context.textAlign = 'center';
37
+ context.textBaseline = 'middle';
38
+ context.font = "".concat(unicodeEmojiCanvasFontSize, "px sans-serif");
39
+ context.fillText(unicodeEmoji, unicodeEmojiCanvasSize / 2, unicodeEmojiCanvasSize / 2 + unicodeEmojiCanvasTopPadding);
40
+ _context.next = 3;
41
+ return canvas.convertToBlob({
42
+ type: 'image/png'
43
+ });
44
+ case 3:
45
+ blob = _context.sent;
46
+ return _context.abrupt("return", URL.createObjectURL(blob));
47
+ case 4:
48
+ case "end":
49
+ return _context.stop();
50
+ }
51
+ }, _callee);
52
+ }));
53
+ return function renderUnicodeEmojiToImagePath(_x) {
54
+ return _ref.apply(this, arguments);
55
+ };
56
+ }();
@@ -22,6 +22,7 @@ import { getDocument } from '@atlaskit/browser-apis';
22
22
  import { fg } from '@atlaskit/platform-feature-flags';
23
23
  import { messages } from '../i18n';
24
24
  import { isSSR } from '../../util/is-ssr';
25
+ import { renderUnicodeEmojiToImagePath } from '../../util/renderUnicodeEmojiToImagePath';
25
26
  import EmojiPlaceholder from './EmojiPlaceholder';
26
27
  const emojiSpriteContainer = null;
27
28
  const emojiImageContainer = null;
@@ -29,6 +30,7 @@ const emojiImageContainer = null;
29
30
  // Unicode emojis render as text inside a <span>, not an <img>, so they do not need
30
31
  // borderRadius (which would clip a background on hover) or the img { display: block } rule.
31
32
  const emojiUnicodeContainer = null;
33
+ const unicodeEmojiCanvasSize = 128;
32
34
  const handleMouseDown = (props, event) => {
33
35
  // Clicked emoji delete button
34
36
  if (event.target instanceof Element && event.target.getAttribute('aria-label') === deleteEmojiLabel) {
@@ -156,29 +158,6 @@ export const SpriteEmoji = props => {
156
158
  }))
157
159
  );
158
160
  };
159
- const unicodeEmojiCanvasSize = 128;
160
- const unicodeEmojiCanvasFontSize = 124;
161
- const unicodeEmojiCanvasTopPadding = 8;
162
- const renderUnicodeEmojiToImagePath = async unicodeEmoji => {
163
- const OffscreenCanvasCtor = globalThis['OffscreenCanvas'];
164
- if (isSSR() || !OffscreenCanvasCtor || typeof URL === 'undefined') {
165
- return undefined;
166
- }
167
- const canvas = new OffscreenCanvasCtor(unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
168
- const context = canvas.getContext('2d');
169
- if (!context) {
170
- return undefined;
171
- }
172
- context.clearRect(0, 0, unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
173
- context.textAlign = 'center';
174
- context.textBaseline = 'middle';
175
- context.font = `${unicodeEmojiCanvasFontSize}px sans-serif`;
176
- context.fillText(unicodeEmoji, unicodeEmojiCanvasSize / 2, unicodeEmojiCanvasSize / 2 + unicodeEmojiCanvasTopPadding);
177
- const blob = await canvas.convertToBlob({
178
- type: 'image/png'
179
- });
180
- return URL.createObjectURL(blob);
181
- };
182
161
  const useUnicodeEmojiImage = unicodeEmoji => {
183
162
  const [state, setState] = useState({
184
163
  status: 'loading'
@@ -9,7 +9,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
9
9
  actionSubjectId,
10
10
  attributes: {
11
11
  packageName: "@atlaskit/emoji",
12
- packageVersion: "71.5.2",
12
+ packageVersion: "71.5.4",
13
13
  ...attributes
14
14
  }
15
15
  });
@@ -0,0 +1,24 @@
1
+ import { isSSR } from './is-ssr';
2
+ const unicodeEmojiCanvasSize = 128;
3
+ const unicodeEmojiCanvasFontSize = 124;
4
+ const unicodeEmojiCanvasTopPadding = 8;
5
+ export const renderUnicodeEmojiToImagePath = async unicodeEmoji => {
6
+ const OffscreenCanvasCtor = globalThis['OffscreenCanvas'];
7
+ if (isSSR() || !OffscreenCanvasCtor || typeof URL === 'undefined') {
8
+ return undefined;
9
+ }
10
+ const canvas = new OffscreenCanvasCtor(unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
11
+ const context = canvas.getContext('2d');
12
+ if (!context) {
13
+ return undefined;
14
+ }
15
+ context.clearRect(0, 0, unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
16
+ context.textAlign = 'center';
17
+ context.textBaseline = 'middle';
18
+ context.font = `${unicodeEmojiCanvasFontSize}px sans-serif`;
19
+ context.fillText(unicodeEmoji, unicodeEmojiCanvasSize / 2, unicodeEmojiCanvasSize / 2 + unicodeEmojiCanvasTopPadding);
20
+ const blob = await canvas.convertToBlob({
21
+ type: 'image/png'
22
+ });
23
+ return URL.createObjectURL(blob);
24
+ };
@@ -1,13 +1,11 @@
1
1
  /* Emoji.tsx generated by @compiled/babel-plugin v0.39.1 */
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
4
- import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
5
4
  import _extends from "@babel/runtime/helpers/extends";
6
5
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
7
6
  var _excluded = ["emoji", "fitToHeight", "selected", "selectOnHover", "className", "showTooltip", "showDelete", "shouldBeInteractive", "tabIndex", "onSelected", "onMouseMove", "onFocus", "onDelete", "onLoadError", "onLoadSuccess", "disableLazyLoad", "autoWidth", "children", "type", "editorEmoji", "renderUnicodeEmojiAsImage"];
8
7
  import "./Emoji.compiled.css";
9
8
  import { ax, ix } from "@compiled/react/runtime";
10
- import _regeneratorRuntime from "@babel/runtime/regenerator";
11
9
  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; }
12
10
  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) { _defineProperty(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; }
13
11
  import React, { useEffect, useCallback, useContext, useMemo, useState, forwardRef } from 'react';
@@ -30,6 +28,7 @@ import { getDocument } from '@atlaskit/browser-apis';
30
28
  import { fg } from '@atlaskit/platform-feature-flags';
31
29
  import { messages } from '../i18n';
32
30
  import { isSSR } from '../../util/is-ssr';
31
+ import { renderUnicodeEmojiToImagePath } from '../../util/renderUnicodeEmojiToImagePath';
33
32
  import EmojiPlaceholder from './EmojiPlaceholder';
34
33
  var emojiSpriteContainer = null;
35
34
  var emojiImageContainer = null;
@@ -37,6 +36,7 @@ var emojiImageContainer = null;
37
36
  // Unicode emojis render as text inside a <span>, not an <img>, so they do not need
38
37
  // borderRadius (which would clip a background on hover) or the img { display: block } rule.
39
38
  var emojiUnicodeContainer = null;
39
+ var unicodeEmojiCanvasSize = 128;
40
40
  var handleMouseDown = function handleMouseDown(props, event) {
41
41
  // Clicked emoji delete button
42
42
  if (event.target instanceof Element && event.target.getAttribute('aria-label') === deleteEmojiLabel) {
@@ -149,52 +149,6 @@ export var SpriteEmoji = function SpriteEmoji(props) {
149
149
  }))
150
150
  );
151
151
  };
152
- var unicodeEmojiCanvasSize = 128;
153
- var unicodeEmojiCanvasFontSize = 124;
154
- var unicodeEmojiCanvasTopPadding = 8;
155
- var renderUnicodeEmojiToImagePath = /*#__PURE__*/function () {
156
- var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(unicodeEmoji) {
157
- var OffscreenCanvasCtor, canvas, context, blob;
158
- return _regeneratorRuntime.wrap(function (_context) {
159
- while (1) switch (_context.prev = _context.next) {
160
- case 0:
161
- OffscreenCanvasCtor = globalThis['OffscreenCanvas'];
162
- if (!(isSSR() || !OffscreenCanvasCtor || typeof URL === 'undefined')) {
163
- _context.next = 1;
164
- break;
165
- }
166
- return _context.abrupt("return", undefined);
167
- case 1:
168
- canvas = new OffscreenCanvasCtor(unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
169
- context = canvas.getContext('2d');
170
- if (context) {
171
- _context.next = 2;
172
- break;
173
- }
174
- return _context.abrupt("return", undefined);
175
- case 2:
176
- context.clearRect(0, 0, unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
177
- context.textAlign = 'center';
178
- context.textBaseline = 'middle';
179
- context.font = "".concat(unicodeEmojiCanvasFontSize, "px sans-serif");
180
- context.fillText(unicodeEmoji, unicodeEmojiCanvasSize / 2, unicodeEmojiCanvasSize / 2 + unicodeEmojiCanvasTopPadding);
181
- _context.next = 3;
182
- return canvas.convertToBlob({
183
- type: 'image/png'
184
- });
185
- case 3:
186
- blob = _context.sent;
187
- return _context.abrupt("return", URL.createObjectURL(blob));
188
- case 4:
189
- case "end":
190
- return _context.stop();
191
- }
192
- }, _callee);
193
- }));
194
- return function renderUnicodeEmojiToImagePath(_x) {
195
- return _ref.apply(this, arguments);
196
- };
197
- }();
198
152
  var useUnicodeEmojiImage = function useUnicodeEmojiImage(unicodeEmoji) {
199
153
  var _useState = useState({
200
154
  status: 'loading'
@@ -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: "71.5.2"
17
+ packageVersion: "71.5.4"
18
18
  }, attributes)
19
19
  };
20
20
  };
@@ -0,0 +1,49 @@
1
+ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
2
+ import _regeneratorRuntime from "@babel/runtime/regenerator";
3
+ import { isSSR } from './is-ssr';
4
+ var unicodeEmojiCanvasSize = 128;
5
+ var unicodeEmojiCanvasFontSize = 124;
6
+ var unicodeEmojiCanvasTopPadding = 8;
7
+ export var renderUnicodeEmojiToImagePath = /*#__PURE__*/function () {
8
+ var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(unicodeEmoji) {
9
+ var OffscreenCanvasCtor, canvas, context, blob;
10
+ return _regeneratorRuntime.wrap(function (_context) {
11
+ while (1) switch (_context.prev = _context.next) {
12
+ case 0:
13
+ OffscreenCanvasCtor = globalThis['OffscreenCanvas'];
14
+ if (!(isSSR() || !OffscreenCanvasCtor || typeof URL === 'undefined')) {
15
+ _context.next = 1;
16
+ break;
17
+ }
18
+ return _context.abrupt("return", undefined);
19
+ case 1:
20
+ canvas = new OffscreenCanvasCtor(unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
21
+ context = canvas.getContext('2d');
22
+ if (context) {
23
+ _context.next = 2;
24
+ break;
25
+ }
26
+ return _context.abrupt("return", undefined);
27
+ case 2:
28
+ context.clearRect(0, 0, unicodeEmojiCanvasSize, unicodeEmojiCanvasSize);
29
+ context.textAlign = 'center';
30
+ context.textBaseline = 'middle';
31
+ context.font = "".concat(unicodeEmojiCanvasFontSize, "px sans-serif");
32
+ context.fillText(unicodeEmoji, unicodeEmojiCanvasSize / 2, unicodeEmojiCanvasSize / 2 + unicodeEmojiCanvasTopPadding);
33
+ _context.next = 3;
34
+ return canvas.convertToBlob({
35
+ type: 'image/png'
36
+ });
37
+ case 3:
38
+ blob = _context.sent;
39
+ return _context.abrupt("return", URL.createObjectURL(blob));
40
+ case 4:
41
+ case "end":
42
+ return _context.stop();
43
+ }
44
+ }, _callee);
45
+ }));
46
+ return function renderUnicodeEmojiToImagePath(_x) {
47
+ return _ref.apply(this, arguments);
48
+ };
49
+ }();
@@ -0,0 +1 @@
1
+ export declare const renderUnicodeEmojiToImagePath: (unicodeEmoji: string) => Promise<string | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/emoji",
3
- "version": "71.5.3",
3
+ "version": "71.5.5",
4
4
  "description": "Fabric emoji React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -49,7 +49,7 @@
49
49
  "@atlaskit/spinner": "^20.0.0",
50
50
  "@atlaskit/textfield": "^9.0.0",
51
51
  "@atlaskit/theme": "^26.0.0",
52
- "@atlaskit/tmp-editor-statsig": "^113.0.0",
52
+ "@atlaskit/tmp-editor-statsig": "^114.0.0",
53
53
  "@atlaskit/tokens": "^15.0.0",
54
54
  "@atlaskit/tooltip": "^23.0.0",
55
55
  "@atlaskit/ufo": "^1.0.0",
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@atlaskit/emoji/unicode-emoji-image",
3
+ "main": "../dist/cjs/util/renderUnicodeEmojiToImagePath.js",
4
+ "module": "../dist/esm/util/renderUnicodeEmojiToImagePath.js",
5
+ "module:es2019": "../dist/es2019/util/renderUnicodeEmojiToImagePath.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/util/renderUnicodeEmojiToImagePath.d.ts"
10
+ }