@atlaskit/emoji 67.3.0 → 67.3.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,11 @@
1
1
  # @atlaskit/emoji
2
2
 
3
+ ## 67.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`0a30e729c1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a30e729c1d) - fix styling issue of headings in uploader screen and delete emoji screen of emoji picker
8
+
3
9
  ## 67.3.0
4
10
 
5
11
  ### Minor Changes
@@ -265,7 +265,9 @@ var emojiUploadTop = (0, _react.css)({
265
265
  });
266
266
  exports.emojiUploadTop = emojiUploadTop;
267
267
  var uploadChooseFileMessage = (0, _react.css)({
268
- color: "var(--ds-text-subtle, ".concat(_colors.N300, ")")
268
+ '&&': {
269
+ color: "var(--ds-text-subtle, ".concat(_colors.N300, ")")
270
+ }
269
271
  });
270
272
  exports.uploadChooseFileMessage = uploadChooseFileMessage;
271
273
  var closeEmojiUploadButton = (0, _react.css)({
@@ -371,10 +373,12 @@ var deleteText = (0, _react.css)({
371
373
  });
372
374
  exports.deleteText = deleteText;
373
375
  var headingH5 = (0, _react.css)({
374
- fontSize: "var(--ds-font-size-075, 12px)",
375
- fontWeight: "var(--ds-font-weight-semibold, 600)",
376
- letterSpacing: '-0.003em',
377
- lineHeight: "var(--ds-font-lineHeight-100, 16px)"
376
+ '&&': {
377
+ fontSize: "var(--ds-font-size-075, 12px)",
378
+ fontWeight: "var(--ds-font-weight-semibold, 600)",
379
+ letterSpacing: '-0.003em',
380
+ lineHeight: "var(--ds-font-lineHeight-100, 16px)"
381
+ }
378
382
  });
379
383
  exports.headingH5 = headingH5;
380
384
  var requiredSymbol = (0, _react.css)({
@@ -53,7 +53,7 @@ var messages = (0, _reactIntlNext.defineMessages)({
53
53
  },
54
54
  emojiChooseFileScreenReaderDescription: {
55
55
  id: 'fabric.emoji.choose.file.screenReaderDescription',
56
- defaultMessage: 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB.',
56
+ defaultMessage: 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB',
57
57
  description: 'Message indicating the purpose of choosing the file and requirements for the file'
58
58
  },
59
59
  emojiSelectSkinToneButtonAriaLabelText: {
@@ -218,7 +218,7 @@ var messages = (0, _reactIntlNext.defineMessages)({
218
218
  },
219
219
  emojiPickerGrid: {
220
220
  id: 'fabric.emoji.pickerlist.grid',
221
- defaultMessage: '{showSearchResults, select, true{Search results} other{Emojis}}.',
221
+ defaultMessage: '{showSearchResults, select, true{Search results} other{Emojis}}',
222
222
  description: "Aria label for emoji picker grid, showSearchResults is a boolean variable, message will be \"Entering Emojis table\", or \"Leaving Emojis\""
223
223
  },
224
224
  emojiButtonRoleDescription: {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/emoji",
3
- "version": "67.3.0",
3
+ "version": "67.3.1",
4
4
  "sideEffects": false
5
5
  }
@@ -258,7 +258,9 @@ export const emojiUploadTop = css({
258
258
  fontSize: '12px'
259
259
  });
260
260
  export const uploadChooseFileMessage = css({
261
- color: `var(--ds-text-subtle, ${N300})`
261
+ '&&': {
262
+ color: `var(--ds-text-subtle, ${N300})`
263
+ }
262
264
  });
263
265
  export const closeEmojiUploadButton = css({
264
266
  display: 'flex'
@@ -352,10 +354,12 @@ export const deleteText = css({
352
354
  }
353
355
  });
354
356
  export const headingH5 = css({
355
- fontSize: "var(--ds-font-size-075, 12px)",
356
- fontWeight: "var(--ds-font-weight-semibold, 600)",
357
- letterSpacing: '-0.003em',
358
- lineHeight: "var(--ds-font-lineHeight-100, 16px)"
357
+ '&&': {
358
+ fontSize: "var(--ds-font-size-075, 12px)",
359
+ fontWeight: "var(--ds-font-weight-semibold, 600)",
360
+ letterSpacing: '-0.003em',
361
+ lineHeight: "var(--ds-font-lineHeight-100, 16px)"
362
+ }
359
363
  });
360
364
  export const requiredSymbol = css({
361
365
  paddingLeft: `${getGridSize() / 4}px`,
@@ -47,7 +47,7 @@ export const messages = defineMessages({
47
47
  },
48
48
  emojiChooseFileScreenReaderDescription: {
49
49
  id: 'fabric.emoji.choose.file.screenReaderDescription',
50
- defaultMessage: 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB.',
50
+ defaultMessage: 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB',
51
51
  description: 'Message indicating the purpose of choosing the file and requirements for the file'
52
52
  },
53
53
  emojiSelectSkinToneButtonAriaLabelText: {
@@ -212,7 +212,7 @@ export const messages = defineMessages({
212
212
  },
213
213
  emojiPickerGrid: {
214
214
  id: 'fabric.emoji.pickerlist.grid',
215
- defaultMessage: '{showSearchResults, select, true{Search results} other{Emojis}}.',
215
+ defaultMessage: '{showSearchResults, select, true{Search results} other{Emojis}}',
216
216
  description: `Aria label for emoji picker grid, showSearchResults is a boolean variable, message will be "Entering Emojis table", or "Leaving Emojis"`
217
217
  },
218
218
  emojiButtonRoleDescription: {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/emoji",
3
- "version": "67.3.0",
3
+ "version": "67.3.1",
4
4
  "sideEffects": false
5
5
  }
@@ -233,7 +233,9 @@ export var emojiUploadTop = css({
233
233
  fontSize: '12px'
234
234
  });
235
235
  export var uploadChooseFileMessage = css({
236
- color: "var(--ds-text-subtle, ".concat(N300, ")")
236
+ '&&': {
237
+ color: "var(--ds-text-subtle, ".concat(N300, ")")
238
+ }
237
239
  });
238
240
  export var closeEmojiUploadButton = css({
239
241
  display: 'flex'
@@ -325,10 +327,12 @@ export var deleteText = css({
325
327
  }
326
328
  });
327
329
  export var headingH5 = css({
328
- fontSize: "var(--ds-font-size-075, 12px)",
329
- fontWeight: "var(--ds-font-weight-semibold, 600)",
330
- letterSpacing: '-0.003em',
331
- lineHeight: "var(--ds-font-lineHeight-100, 16px)"
330
+ '&&': {
331
+ fontSize: "var(--ds-font-size-075, 12px)",
332
+ fontWeight: "var(--ds-font-weight-semibold, 600)",
333
+ letterSpacing: '-0.003em',
334
+ lineHeight: "var(--ds-font-lineHeight-100, 16px)"
335
+ }
332
336
  });
333
337
  export var requiredSymbol = css({
334
338
  paddingLeft: "".concat(getGridSize() / 4, "px"),
@@ -47,7 +47,7 @@ export var messages = defineMessages({
47
47
  },
48
48
  emojiChooseFileScreenReaderDescription: {
49
49
  id: 'fabric.emoji.choose.file.screenReaderDescription',
50
- defaultMessage: 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB.',
50
+ defaultMessage: 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB',
51
51
  description: 'Message indicating the purpose of choosing the file and requirements for the file'
52
52
  },
53
53
  emojiSelectSkinToneButtonAriaLabelText: {
@@ -212,7 +212,7 @@ export var messages = defineMessages({
212
212
  },
213
213
  emojiPickerGrid: {
214
214
  id: 'fabric.emoji.pickerlist.grid',
215
- defaultMessage: '{showSearchResults, select, true{Search results} other{Emojis}}.',
215
+ defaultMessage: '{showSearchResults, select, true{Search results} other{Emojis}}',
216
216
  description: "Aria label for emoji picker grid, showSearchResults is a boolean variable, message will be \"Entering Emojis table\", or \"Leaving Emojis\""
217
217
  },
218
218
  emojiButtonRoleDescription: {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/emoji",
3
- "version": "67.3.0",
3
+ "version": "67.3.1",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/emoji",
3
- "version": "67.3.0",
3
+ "version": "67.3.1",
4
4
  "description": "Fabric emoji React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"