@atlaskit/tmp-editor-statsig 17.10.1 → 17.12.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`d39135b9aecb7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d39135b9aecb7) -
8
+ Adds a fix to avoid initialising the bridge if the ai plugin is unavailable.
9
+
10
+ ## 17.11.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`4de30defb09c5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4de30defb09c5) -
15
+ Fix overflow of table inside multi-column layouts.
16
+
3
17
  ## 17.10.1
4
18
 
5
19
  ### Patch Changes
@@ -54,5 +54,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
54
54
  platform_editor_toggle_expand_on_match_found: false,
55
55
  platform_editor_reduce_noisy_steps_ncs: false,
56
56
  platform_editor_text_highlight_padding: false,
57
- confluence_compact_text_format: false
57
+ confluence_compact_text_format: false,
58
+ confluence_ttvc_inline_extensions: false
58
59
  };
@@ -605,6 +605,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
605
605
  param: 'isEnabled',
606
606
  defaultValue: false
607
607
  }),
608
+ // Added 2026-01-27
609
+ platform_editor_table_excerpts_fix: (0, _experimentBuilders.createBooleanExperiment)({
610
+ productKeys: {
611
+ confluence: 'platform_editor_table_excerpts_fix'
612
+ },
613
+ param: 'isEnabled',
614
+ defaultValue: false
615
+ }),
608
616
  // Added 2026-01-10
609
617
  platform_editor_task_item_styles: (0, _experimentBuilders.createBooleanExperiment)({
610
618
  productKeys: {
@@ -1174,6 +1182,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1174
1182
  param: 'isEnabled',
1175
1183
  defaultValue: false
1176
1184
  }),
1185
+ // Added 2026-02-02
1186
+ platform_editor_ai_disable_bridge_without_ai: (0, _experimentBuilders.createBooleanExperiment)({
1187
+ productKeys: {
1188
+ confluence: 'platform_editor_ai_disable_bridge_without_ai'
1189
+ },
1190
+ param: 'isEnabled',
1191
+ defaultValue: false
1192
+ }),
1177
1193
  // Added 2025-01-15
1178
1194
  platform_editor_table_toolbar_icon_ext_fix_exp: (0, _experimentBuilders.createBooleanExperiment)({
1179
1195
  productKeys: {
@@ -1303,5 +1319,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1303
1319
  },
1304
1320
  param: 'isEnabled',
1305
1321
  defaultValue: false
1322
+ }),
1323
+ confluence_ttvc_inline_extensions: (0, _experimentBuilders.createBooleanExperiment)({
1324
+ productKeys: {
1325
+ confluence: 'confluence_ttvc_inline_extensions'
1326
+ },
1327
+ param: 'isEnabled',
1328
+ defaultValue: false
1306
1329
  })
1307
1330
  };
@@ -48,5 +48,6 @@ export const testBooleanOverrides = {
48
48
  platform_editor_toggle_expand_on_match_found: false,
49
49
  platform_editor_reduce_noisy_steps_ncs: false,
50
50
  platform_editor_text_highlight_padding: false,
51
- confluence_compact_text_format: false
51
+ confluence_compact_text_format: false,
52
+ confluence_ttvc_inline_extensions: false
52
53
  };
@@ -599,6 +599,14 @@ export const editorExperimentsConfig = {
599
599
  param: 'isEnabled',
600
600
  defaultValue: false
601
601
  }),
602
+ // Added 2026-01-27
603
+ platform_editor_table_excerpts_fix: createBooleanExperiment({
604
+ productKeys: {
605
+ confluence: 'platform_editor_table_excerpts_fix'
606
+ },
607
+ param: 'isEnabled',
608
+ defaultValue: false
609
+ }),
602
610
  // Added 2026-01-10
603
611
  platform_editor_task_item_styles: createBooleanExperiment({
604
612
  productKeys: {
@@ -1168,6 +1176,14 @@ export const editorExperimentsConfig = {
1168
1176
  param: 'isEnabled',
1169
1177
  defaultValue: false
1170
1178
  }),
1179
+ // Added 2026-02-02
1180
+ platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
1181
+ productKeys: {
1182
+ confluence: 'platform_editor_ai_disable_bridge_without_ai'
1183
+ },
1184
+ param: 'isEnabled',
1185
+ defaultValue: false
1186
+ }),
1171
1187
  // Added 2025-01-15
1172
1188
  platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
1173
1189
  productKeys: {
@@ -1297,5 +1313,12 @@ export const editorExperimentsConfig = {
1297
1313
  },
1298
1314
  param: 'isEnabled',
1299
1315
  defaultValue: false
1316
+ }),
1317
+ confluence_ttvc_inline_extensions: createBooleanExperiment({
1318
+ productKeys: {
1319
+ confluence: 'confluence_ttvc_inline_extensions'
1320
+ },
1321
+ param: 'isEnabled',
1322
+ defaultValue: false
1300
1323
  })
1301
1324
  };
@@ -48,5 +48,6 @@ export var testBooleanOverrides = {
48
48
  platform_editor_toggle_expand_on_match_found: false,
49
49
  platform_editor_reduce_noisy_steps_ncs: false,
50
50
  platform_editor_text_highlight_padding: false,
51
- confluence_compact_text_format: false
51
+ confluence_compact_text_format: false,
52
+ confluence_ttvc_inline_extensions: false
52
53
  };
@@ -599,6 +599,14 @@ export var editorExperimentsConfig = {
599
599
  param: 'isEnabled',
600
600
  defaultValue: false
601
601
  }),
602
+ // Added 2026-01-27
603
+ platform_editor_table_excerpts_fix: createBooleanExperiment({
604
+ productKeys: {
605
+ confluence: 'platform_editor_table_excerpts_fix'
606
+ },
607
+ param: 'isEnabled',
608
+ defaultValue: false
609
+ }),
602
610
  // Added 2026-01-10
603
611
  platform_editor_task_item_styles: createBooleanExperiment({
604
612
  productKeys: {
@@ -1168,6 +1176,14 @@ export var editorExperimentsConfig = {
1168
1176
  param: 'isEnabled',
1169
1177
  defaultValue: false
1170
1178
  }),
1179
+ // Added 2026-02-02
1180
+ platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
1181
+ productKeys: {
1182
+ confluence: 'platform_editor_ai_disable_bridge_without_ai'
1183
+ },
1184
+ param: 'isEnabled',
1185
+ defaultValue: false
1186
+ }),
1171
1187
  // Added 2025-01-15
1172
1188
  platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
1173
1189
  productKeys: {
@@ -1297,5 +1313,12 @@ export var editorExperimentsConfig = {
1297
1313
  },
1298
1314
  param: 'isEnabled',
1299
1315
  defaultValue: false
1316
+ }),
1317
+ confluence_ttvc_inline_extensions: createBooleanExperiment({
1318
+ productKeys: {
1319
+ confluence: 'confluence_ttvc_inline_extensions'
1320
+ },
1321
+ param: 'isEnabled',
1322
+ defaultValue: false
1300
1323
  })
1301
1324
  };
@@ -623,6 +623,12 @@ export declare const editorExperimentsConfig: {
623
623
  productKeys?: ProductKeys;
624
624
  typeGuard: IsBooleanType;
625
625
  };
626
+ platform_editor_table_excerpts_fix: {
627
+ defaultValue: boolean;
628
+ param: string;
629
+ productKeys?: ProductKeys;
630
+ typeGuard: IsBooleanType;
631
+ };
626
632
  platform_editor_table_sticky_header_improvements: {
627
633
  defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
628
634
  param: string;
@@ -820,6 +826,12 @@ export declare const editorExperimentsConfig: {
820
826
  productKeys?: ProductKeys;
821
827
  typeGuard: IsBooleanType;
822
828
  };
829
+ platform_editor_ai_disable_bridge_without_ai: {
830
+ defaultValue: boolean;
831
+ param: string;
832
+ productKeys?: ProductKeys;
833
+ typeGuard: IsBooleanType;
834
+ };
823
835
  platform_editor_ai_exp_suggestion_date_comma_delim: {
824
836
  defaultValue: boolean;
825
837
  param: string;
@@ -964,5 +976,11 @@ export declare const editorExperimentsConfig: {
964
976
  productKeys?: ProductKeys;
965
977
  typeGuard: IsBooleanType;
966
978
  };
979
+ confluence_ttvc_inline_extensions: {
980
+ defaultValue: boolean;
981
+ param: string;
982
+ productKeys?: ProductKeys;
983
+ typeGuard: IsBooleanType;
984
+ };
967
985
  };
968
986
  export {};
@@ -623,6 +623,12 @@ export declare const editorExperimentsConfig: {
623
623
  productKeys?: ProductKeys;
624
624
  typeGuard: IsBooleanType;
625
625
  };
626
+ platform_editor_table_excerpts_fix: {
627
+ defaultValue: boolean;
628
+ param: string;
629
+ productKeys?: ProductKeys;
630
+ typeGuard: IsBooleanType;
631
+ };
626
632
  platform_editor_table_sticky_header_improvements: {
627
633
  defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
628
634
  param: string;
@@ -820,6 +826,12 @@ export declare const editorExperimentsConfig: {
820
826
  productKeys?: ProductKeys;
821
827
  typeGuard: IsBooleanType;
822
828
  };
829
+ platform_editor_ai_disable_bridge_without_ai: {
830
+ defaultValue: boolean;
831
+ param: string;
832
+ productKeys?: ProductKeys;
833
+ typeGuard: IsBooleanType;
834
+ };
823
835
  platform_editor_ai_exp_suggestion_date_comma_delim: {
824
836
  defaultValue: boolean;
825
837
  param: string;
@@ -964,5 +976,11 @@ export declare const editorExperimentsConfig: {
964
976
  productKeys?: ProductKeys;
965
977
  typeGuard: IsBooleanType;
966
978
  };
979
+ confluence_ttvc_inline_extensions: {
980
+ defaultValue: boolean;
981
+ param: string;
982
+ productKeys?: ProductKeys;
983
+ typeGuard: IsBooleanType;
984
+ };
967
985
  };
968
986
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.10.1",
3
+ "version": "17.12.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",