@atlaskit/editor-plugin-code-block 4.4.2 → 4.4.3

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/editor-plugin-code-block
2
2
 
3
+ ## 4.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 4.4.2
4
10
 
5
11
  ### Patch Changes
@@ -322,6 +322,10 @@ export declare const DEFAULT_LANGUAGES: ({
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"];
@@ -656,6 +660,10 @@ export declare function findMatchedLanguage(supportedLanguages: Language[], lang
656
660
  readonly name: "Handlebars";
657
661
  readonly alias: readonly ["handlebars", "mustache"];
658
662
  readonly value: "handlebars";
663
+ } | {
664
+ readonly name: "Gherkin";
665
+ readonly alias: readonly ["gherkin", "cucumber"];
666
+ readonly value: "gherkin";
659
667
  } | {
660
668
  readonly name: "ABAP";
661
669
  readonly alias: readonly ["abap"];
@@ -991,6 +999,10 @@ export declare function createLanguageList(supportedLanguages: Language[]): ({
991
999
  readonly name: "Handlebars";
992
1000
  readonly alias: readonly ["handlebars", "mustache"];
993
1001
  readonly value: "handlebars";
1002
+ } | {
1003
+ readonly name: "Gherkin";
1004
+ readonly alias: readonly ["gherkin", "cucumber"];
1005
+ readonly value: "gherkin";
994
1006
  } | {
995
1007
  readonly name: "ABAP";
996
1008
  readonly alias: readonly ["abap"];
@@ -567,6 +567,13 @@ export declare const DEFAULT_LANGUAGES: ({
567
567
  "mustache"
568
568
  ];
569
569
  readonly value: "handlebars";
570
+ } | {
571
+ readonly name: "Gherkin";
572
+ readonly alias: readonly [
573
+ "gherkin",
574
+ "cucumber"
575
+ ];
576
+ readonly value: "gherkin";
570
577
  } | {
571
578
  readonly name: "ABAP";
572
579
  readonly alias: readonly [
@@ -1148,6 +1155,13 @@ export declare function findMatchedLanguage(supportedLanguages: Language[], lang
1148
1155
  "mustache"
1149
1156
  ];
1150
1157
  readonly value: "handlebars";
1158
+ } | {
1159
+ readonly name: "Gherkin";
1160
+ readonly alias: readonly [
1161
+ "gherkin",
1162
+ "cucumber"
1163
+ ];
1164
+ readonly value: "gherkin";
1151
1165
  } | {
1152
1166
  readonly name: "ABAP";
1153
1167
  readonly alias: readonly [
@@ -1730,6 +1744,13 @@ export declare function createLanguageList(supportedLanguages: Language[]): ({
1730
1744
  "mustache"
1731
1745
  ];
1732
1746
  readonly value: "handlebars";
1747
+ } | {
1748
+ readonly name: "Gherkin";
1749
+ readonly alias: readonly [
1750
+ "gherkin",
1751
+ "cucumber"
1752
+ ];
1753
+ readonly value: "gherkin";
1733
1754
  } | {
1734
1755
  readonly name: "ABAP";
1735
1756
  readonly alias: readonly [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-code-block",
3
- "version": "4.4.2",
3
+ "version": "4.4.3",
4
4
  "description": "Code block plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^47.6.0",
35
35
  "@atlaskit/code": "^17.1.0",
36
- "@atlaskit/editor-common": "^104.1.0",
36
+ "@atlaskit/editor-common": "^105.0.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^2.2.0",
38
38
  "@atlaskit/editor-plugin-composition": "^1.3.0",
39
39
  "@atlaskit/editor-plugin-decorations": "^2.0.0",