@atlaskit/editor-plugin-code-block 5.0.8 → 5.0.9

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
+ ## 5.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 5.0.8
4
10
 
5
11
  ### Patch Changes
@@ -318,6 +318,10 @@ export declare const DEFAULT_LANGUAGES: ({
318
318
  readonly name: "Protocol Buffers";
319
319
  readonly alias: readonly ["protobuf", "proto"];
320
320
  readonly value: "protobuf";
321
+ } | {
322
+ readonly name: "TOML";
323
+ readonly alias: readonly ["toml"];
324
+ readonly value: "toml";
321
325
  } | {
322
326
  readonly name: "Handlebars";
323
327
  readonly alias: readonly ["handlebars", "mustache"];
@@ -656,6 +660,10 @@ export declare function findMatchedLanguage(supportedLanguages: Language[], lang
656
660
  readonly name: "Protocol Buffers";
657
661
  readonly alias: readonly ["protobuf", "proto"];
658
662
  readonly value: "protobuf";
663
+ } | {
664
+ readonly name: "TOML";
665
+ readonly alias: readonly ["toml"];
666
+ readonly value: "toml";
659
667
  } | {
660
668
  readonly name: "Handlebars";
661
669
  readonly alias: readonly ["handlebars", "mustache"];
@@ -995,6 +1003,10 @@ export declare function createLanguageList(supportedLanguages: Language[]): ({
995
1003
  readonly name: "Protocol Buffers";
996
1004
  readonly alias: readonly ["protobuf", "proto"];
997
1005
  readonly value: "protobuf";
1006
+ } | {
1007
+ readonly name: "TOML";
1008
+ readonly alias: readonly ["toml"];
1009
+ readonly value: "toml";
998
1010
  } | {
999
1011
  readonly name: "Handlebars";
1000
1012
  readonly alias: readonly ["handlebars", "mustache"];
@@ -560,6 +560,12 @@ export declare const DEFAULT_LANGUAGES: ({
560
560
  "proto"
561
561
  ];
562
562
  readonly value: "protobuf";
563
+ } | {
564
+ readonly name: "TOML";
565
+ readonly alias: readonly [
566
+ "toml"
567
+ ];
568
+ readonly value: "toml";
563
569
  } | {
564
570
  readonly name: "Handlebars";
565
571
  readonly alias: readonly [
@@ -1148,6 +1154,12 @@ export declare function findMatchedLanguage(supportedLanguages: Language[], lang
1148
1154
  "proto"
1149
1155
  ];
1150
1156
  readonly value: "protobuf";
1157
+ } | {
1158
+ readonly name: "TOML";
1159
+ readonly alias: readonly [
1160
+ "toml"
1161
+ ];
1162
+ readonly value: "toml";
1151
1163
  } | {
1152
1164
  readonly name: "Handlebars";
1153
1165
  readonly alias: readonly [
@@ -1737,6 +1749,12 @@ export declare function createLanguageList(supportedLanguages: Language[]): ({
1737
1749
  "proto"
1738
1750
  ];
1739
1751
  readonly value: "protobuf";
1752
+ } | {
1753
+ readonly name: "TOML";
1754
+ readonly alias: readonly [
1755
+ "toml"
1756
+ ];
1757
+ readonly value: "toml";
1740
1758
  } | {
1741
1759
  readonly name: "Handlebars";
1742
1760
  readonly alias: readonly [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-code-block",
3
- "version": "5.0.8",
3
+ "version": "5.0.9",
4
4
  "description": "Code block plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,14 +39,14 @@
39
39
  "@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
40
40
  "@atlaskit/editor-plugin-interaction": "^5.0.0",
41
41
  "@atlaskit/editor-prosemirror": "7.0.0",
42
- "@atlaskit/icon": "^27.11.0",
42
+ "@atlaskit/icon": "^27.12.0",
43
43
  "@atlaskit/platform-feature-flags": "^1.1.0",
44
44
  "@atlaskit/prosemirror-input-rules": "^3.4.0",
45
- "@atlaskit/tmp-editor-statsig": "^9.27.0",
45
+ "@atlaskit/tmp-editor-statsig": "^10.0.0",
46
46
  "@babel/runtime": "^7.0.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "@atlaskit/editor-common": "^107.20.0",
49
+ "@atlaskit/editor-common": "^107.25.0",
50
50
  "react": "^18.2.0",
51
51
  "react-intl-next": "npm:react-intl@^5.18.1"
52
52
  },