@atlaskit/code 16.2.0 → 16.3.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/code
2
2
 
3
+ ## 16.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#135906](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/135906)
8
+ [`bf6acb8983b3c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bf6acb8983b3c) -
9
+ CodeBlock now supports syntax highlighting for the Handlebars templating language.
10
+
3
11
  ## 16.2.0
4
12
 
5
13
  ### Minor Changes
@@ -334,6 +334,10 @@ var SUPPORTED_LANGUAGES = exports.SUPPORTED_LANGUAGES = [{
334
334
  name: 'Protocol Buffers',
335
335
  alias: ['protobuf', 'proto'],
336
336
  value: 'protobuf'
337
+ }, {
338
+ name: 'Handlebars',
339
+ alias: ['handlebars', 'mustache'],
340
+ value: 'handlebars'
337
341
  }, {
338
342
  name: 'ABAP',
339
343
  alias: ['abap'],
@@ -321,6 +321,10 @@ export const SUPPORTED_LANGUAGES = [{
321
321
  name: 'Protocol Buffers',
322
322
  alias: ['protobuf', 'proto'],
323
323
  value: 'protobuf'
324
+ }, {
325
+ name: 'Handlebars',
326
+ alias: ['handlebars', 'mustache'],
327
+ value: 'handlebars'
324
328
  }, {
325
329
  name: 'ABAP',
326
330
  alias: ['abap'],
@@ -321,6 +321,10 @@ export var SUPPORTED_LANGUAGES = [{
321
321
  name: 'Protocol Buffers',
322
322
  alias: ['protobuf', 'proto'],
323
323
  value: 'protobuf'
324
+ }, {
325
+ name: 'Handlebars',
326
+ alias: ['handlebars', 'mustache'],
327
+ value: 'handlebars'
324
328
  }, {
325
329
  name: 'ABAP',
326
330
  alias: ['abap'],
@@ -318,6 +318,10 @@ export declare const SUPPORTED_LANGUAGES: readonly [{
318
318
  readonly name: "Protocol Buffers";
319
319
  readonly alias: readonly ["protobuf", "proto"];
320
320
  readonly value: "protobuf";
321
+ }, {
322
+ readonly name: "Handlebars";
323
+ readonly alias: readonly ["handlebars", "mustache"];
324
+ readonly value: "handlebars";
321
325
  }, {
322
326
  readonly name: "ABAP";
323
327
  readonly alias: readonly ["abap"];
@@ -641,6 +641,14 @@ export declare const SUPPORTED_LANGUAGES: readonly [
641
641
  ];
642
642
  readonly value: "protobuf";
643
643
  },
644
+ {
645
+ readonly name: "Handlebars";
646
+ readonly alias: readonly [
647
+ "handlebars",
648
+ "mustache"
649
+ ];
650
+ readonly value: "handlebars";
651
+ },
644
652
  {
645
653
  readonly name: "ABAP";
646
654
  readonly alias: readonly [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/code",
3
- "version": "16.2.0",
3
+ "version": "16.3.0",
4
4
  "description": "Code highlights short strings of code snippets inline with body text.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@atlaskit/codemod-utils": "^4.2.0",
32
32
  "@atlaskit/theme": "^18.0.0",
33
- "@atlaskit/tokens": "^4.5.0",
33
+ "@atlaskit/tokens": "^4.6.0",
34
34
  "@atlaskit/tooltip": "^20.0.0",
35
35
  "@atlaskit/visually-hidden": "^3.0.0",
36
36
  "@babel/runtime": "^7.0.0",
@@ -50,7 +50,7 @@
50
50
  "@atlaskit/ds-lib": "^4.0.0",
51
51
  "@atlaskit/form": "^12.0.0",
52
52
  "@atlaskit/link": "^3.1.0",
53
- "@atlaskit/primitives": "^14.2.0",
53
+ "@atlaskit/primitives": "^14.3.0",
54
54
  "@atlaskit/section-message": "^8.2.0",
55
55
  "@atlaskit/ssr": "^0.4.0",
56
56
  "@atlaskit/toggle": "^15.0.0",