@atlaskit/code 17.1.0 → 17.1.2

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,21 @@
1
1
  # @atlaskit/code
2
2
 
3
+ ## 17.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#152825](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152825)
8
+ [`5e38d365c6154`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5e38d365c6154) -
9
+ Reverts addition of tab index to code block
10
+
11
+ ## 17.1.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#152049](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152049)
16
+ [`a2bdf059329e8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a2bdf059329e8) -
17
+ Add support for Gherkin language to code
18
+
3
19
  ## 17.1.0
4
20
 
5
21
  ### Minor Changes
@@ -338,6 +338,10 @@ var SUPPORTED_LANGUAGES = exports.SUPPORTED_LANGUAGES = [{
338
338
  name: 'Handlebars',
339
339
  alias: ['handlebars', 'mustache'],
340
340
  value: 'handlebars'
341
+ }, {
342
+ name: 'Gherkin',
343
+ alias: ['gherkin', 'cucumber'],
344
+ value: 'gherkin'
341
345
  }, {
342
346
  name: 'ABAP',
343
347
  alias: ['abap'],
@@ -325,6 +325,10 @@ export const SUPPORTED_LANGUAGES = [{
325
325
  name: 'Handlebars',
326
326
  alias: ['handlebars', 'mustache'],
327
327
  value: 'handlebars'
328
+ }, {
329
+ name: 'Gherkin',
330
+ alias: ['gherkin', 'cucumber'],
331
+ value: 'gherkin'
328
332
  }, {
329
333
  name: 'ABAP',
330
334
  alias: ['abap'],
@@ -325,6 +325,10 @@ export var SUPPORTED_LANGUAGES = [{
325
325
  name: 'Handlebars',
326
326
  alias: ['handlebars', 'mustache'],
327
327
  value: 'handlebars'
328
+ }, {
329
+ name: 'Gherkin',
330
+ alias: ['gherkin', 'cucumber'],
331
+ value: 'gherkin'
328
332
  }, {
329
333
  name: 'ABAP',
330
334
  alias: ['abap'],
@@ -322,6 +322,10 @@ export declare const SUPPORTED_LANGUAGES: readonly [{
322
322
  readonly name: "Handlebars";
323
323
  readonly alias: readonly ["handlebars", "mustache"];
324
324
  readonly value: "handlebars";
325
+ }, {
326
+ readonly name: "Gherkin";
327
+ readonly alias: readonly ["gherkin", "cucumber"];
328
+ readonly value: "gherkin";
325
329
  }, {
326
330
  readonly name: "ABAP";
327
331
  readonly alias: readonly ["abap"];
@@ -649,6 +649,14 @@ export declare const SUPPORTED_LANGUAGES: readonly [
649
649
  ];
650
650
  readonly value: "handlebars";
651
651
  },
652
+ {
653
+ readonly name: "Gherkin";
654
+ readonly alias: readonly [
655
+ "gherkin",
656
+ "cucumber"
657
+ ];
658
+ readonly value: "gherkin";
659
+ },
652
660
  {
653
661
  readonly name: "ABAP";
654
662
  readonly alias: readonly [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/code",
3
- "version": "17.1.0",
3
+ "version": "17.1.2",
4
4
  "description": "Code highlights short strings of code snippets inline with body text.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -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.4.0",
53
+ "@atlaskit/primitives": "^14.7.0",
54
54
  "@atlaskit/section-message": "^8.2.0",
55
55
  "@atlaskit/ssr": "workspace:^",
56
56
  "@atlaskit/theme": "^18.0.0",