@atlaskit/tmp-editor-statsig 17.5.0 → 17.7.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`fe3cbbba3c6d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fe3cbbba3c6d6) -
8
+ [EDITOR-4877](https://hello.jira.atlassian.cloud/browse/EDITOR-4877) - remove
9
+ queryCommandSupported from TableComponent
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 17.6.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [`26a5ec6dab84e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/26a5ec6dab84e) -
20
+ Adjust vertical spacing for inline extensions in the renderer
21
+
3
22
  ## 17.5.0
4
23
 
5
24
  ### Minor Changes
@@ -13,7 +13,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
13
13
  confluence_whiteboards_quick_insert_localised_aa: 'control',
14
14
  cc_editor_ai_content_mode: 'control',
15
15
  platform_hover_card_preview_panel: 'control',
16
- platform_hover_card_preview_panel_modal: 'control',
17
16
  smart_link_confluence_short_link_analytics: 'control',
18
17
  platform_inline_smartcard_connect_button_exp: 'control',
19
18
  cc_editor_insm_outlier_events: 'test',
@@ -524,6 +524,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
524
524
  param: 'isEnabled',
525
525
  defaultValue: false
526
526
  }),
527
+ platform_editor_disable_query_command_supported: (0, _experimentBuilders.createBooleanExperiment)({
528
+ productKeys: {
529
+ confluence: 'platform_editor_disable_query_command_supported'
530
+ },
531
+ param: 'isEnabled',
532
+ defaultValue: false
533
+ }),
527
534
  // Added 2025-06-24
528
535
  confluence_whiteboards_quick_insert: (0, _experimentBuilders.createMultivariateExperiment)({
529
536
  productKeys: {
@@ -610,15 +617,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
610
617
  defaultValue: 'control'
611
618
  }),
612
619
  // Added 2025-09-17
613
- platform_hover_card_preview_panel_modal: (0, _experimentBuilders.createMultivariateExperiment)({
614
- productKeys: {
615
- confluence: 'platform_hover_card_preview_panel_modal',
616
- jira: 'platform_hover_card_preview_panel_modal'
617
- },
618
- param: 'cohort',
619
- values: ['control', 'test'],
620
- defaultValue: 'control'
621
- }),
622
620
  // Added 2025-11-25
623
621
  smart_link_confluence_short_link_analytics: (0, _experimentBuilders.createMultivariateExperiment)({
624
622
  productKeys: {
@@ -1258,5 +1256,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1258
1256
  },
1259
1257
  param: 'isEnabled',
1260
1258
  defaultValue: false
1259
+ }),
1260
+ confluence_insert_excerpt_inline_vertical_align: (0, _experimentBuilders.createBooleanExperiment)({
1261
+ productKeys: {
1262
+ confluence: 'confluence_insert_excerpt_inline_vertical_align'
1263
+ },
1264
+ param: 'isEnabled',
1265
+ defaultValue: false
1261
1266
  })
1262
1267
  };
@@ -7,7 +7,6 @@ export const testMultivariateOverrides = {
7
7
  confluence_whiteboards_quick_insert_localised_aa: 'control',
8
8
  cc_editor_ai_content_mode: 'control',
9
9
  platform_hover_card_preview_panel: 'control',
10
- platform_hover_card_preview_panel_modal: 'control',
11
10
  smart_link_confluence_short_link_analytics: 'control',
12
11
  platform_inline_smartcard_connect_button_exp: 'control',
13
12
  cc_editor_insm_outlier_events: 'test',
@@ -518,6 +518,13 @@ export const editorExperimentsConfig = {
518
518
  param: 'isEnabled',
519
519
  defaultValue: false
520
520
  }),
521
+ platform_editor_disable_query_command_supported: createBooleanExperiment({
522
+ productKeys: {
523
+ confluence: 'platform_editor_disable_query_command_supported'
524
+ },
525
+ param: 'isEnabled',
526
+ defaultValue: false
527
+ }),
521
528
  // Added 2025-06-24
522
529
  confluence_whiteboards_quick_insert: createMultivariateExperiment({
523
530
  productKeys: {
@@ -604,15 +611,6 @@ export const editorExperimentsConfig = {
604
611
  defaultValue: 'control'
605
612
  }),
606
613
  // Added 2025-09-17
607
- platform_hover_card_preview_panel_modal: createMultivariateExperiment({
608
- productKeys: {
609
- confluence: 'platform_hover_card_preview_panel_modal',
610
- jira: 'platform_hover_card_preview_panel_modal'
611
- },
612
- param: 'cohort',
613
- values: ['control', 'test'],
614
- defaultValue: 'control'
615
- }),
616
614
  // Added 2025-11-25
617
615
  smart_link_confluence_short_link_analytics: createMultivariateExperiment({
618
616
  productKeys: {
@@ -1252,5 +1250,12 @@ export const editorExperimentsConfig = {
1252
1250
  },
1253
1251
  param: 'isEnabled',
1254
1252
  defaultValue: false
1253
+ }),
1254
+ confluence_insert_excerpt_inline_vertical_align: createBooleanExperiment({
1255
+ productKeys: {
1256
+ confluence: 'confluence_insert_excerpt_inline_vertical_align'
1257
+ },
1258
+ param: 'isEnabled',
1259
+ defaultValue: false
1255
1260
  })
1256
1261
  };
@@ -7,7 +7,6 @@ export var testMultivariateOverrides = {
7
7
  confluence_whiteboards_quick_insert_localised_aa: 'control',
8
8
  cc_editor_ai_content_mode: 'control',
9
9
  platform_hover_card_preview_panel: 'control',
10
- platform_hover_card_preview_panel_modal: 'control',
11
10
  smart_link_confluence_short_link_analytics: 'control',
12
11
  platform_inline_smartcard_connect_button_exp: 'control',
13
12
  cc_editor_insm_outlier_events: 'test',
@@ -518,6 +518,13 @@ export var editorExperimentsConfig = {
518
518
  param: 'isEnabled',
519
519
  defaultValue: false
520
520
  }),
521
+ platform_editor_disable_query_command_supported: createBooleanExperiment({
522
+ productKeys: {
523
+ confluence: 'platform_editor_disable_query_command_supported'
524
+ },
525
+ param: 'isEnabled',
526
+ defaultValue: false
527
+ }),
521
528
  // Added 2025-06-24
522
529
  confluence_whiteboards_quick_insert: createMultivariateExperiment({
523
530
  productKeys: {
@@ -604,15 +611,6 @@ export var editorExperimentsConfig = {
604
611
  defaultValue: 'control'
605
612
  }),
606
613
  // Added 2025-09-17
607
- platform_hover_card_preview_panel_modal: createMultivariateExperiment({
608
- productKeys: {
609
- confluence: 'platform_hover_card_preview_panel_modal',
610
- jira: 'platform_hover_card_preview_panel_modal'
611
- },
612
- param: 'cohort',
613
- values: ['control', 'test'],
614
- defaultValue: 'control'
615
- }),
616
614
  // Added 2025-11-25
617
615
  smart_link_confluence_short_link_analytics: createMultivariateExperiment({
618
616
  productKeys: {
@@ -1252,5 +1250,12 @@ export var editorExperimentsConfig = {
1252
1250
  },
1253
1251
  param: 'isEnabled',
1254
1252
  defaultValue: false
1253
+ }),
1254
+ confluence_insert_excerpt_inline_vertical_align: createBooleanExperiment({
1255
+ productKeys: {
1256
+ confluence: 'confluence_insert_excerpt_inline_vertical_align'
1257
+ },
1258
+ param: 'isEnabled',
1259
+ defaultValue: false
1255
1260
  })
1256
1261
  };
@@ -236,6 +236,12 @@ export declare const editorExperimentsConfig: {
236
236
  productKeys?: ProductKeys;
237
237
  typeGuard: IsBooleanType;
238
238
  };
239
+ platform_editor_disable_query_command_supported: {
240
+ defaultValue: boolean;
241
+ param: string;
242
+ productKeys?: ProductKeys;
243
+ typeGuard: IsBooleanType;
244
+ };
239
245
  platform_editor_ai_unsplash_page_header: {
240
246
  defaultValue: boolean;
241
247
  param: string;
@@ -691,13 +697,6 @@ export declare const editorExperimentsConfig: {
691
697
  typeGuard: (value: unknown) => value is 'control' | 'test';
692
698
  values: ('control' | 'test')[];
693
699
  };
694
- platform_hover_card_preview_panel_modal: {
695
- defaultValue: 'control' | 'test';
696
- param: string;
697
- productKeys?: ProductKeys;
698
- typeGuard: (value: unknown) => value is 'control' | 'test';
699
- values: ('control' | 'test')[];
700
- };
701
700
  platform_inline_smartcard_connect_button_exp: {
702
701
  defaultValue: 'control' | 'test1' | 'test2';
703
702
  param: string;
@@ -929,5 +928,11 @@ export declare const editorExperimentsConfig: {
929
928
  productKeys?: ProductKeys;
930
929
  typeGuard: IsBooleanType;
931
930
  };
931
+ confluence_insert_excerpt_inline_vertical_align: {
932
+ defaultValue: boolean;
933
+ param: string;
934
+ productKeys?: ProductKeys;
935
+ typeGuard: IsBooleanType;
936
+ };
932
937
  };
933
938
  export {};
@@ -236,6 +236,12 @@ export declare const editorExperimentsConfig: {
236
236
  productKeys?: ProductKeys;
237
237
  typeGuard: IsBooleanType;
238
238
  };
239
+ platform_editor_disable_query_command_supported: {
240
+ defaultValue: boolean;
241
+ param: string;
242
+ productKeys?: ProductKeys;
243
+ typeGuard: IsBooleanType;
244
+ };
239
245
  platform_editor_ai_unsplash_page_header: {
240
246
  defaultValue: boolean;
241
247
  param: string;
@@ -691,13 +697,6 @@ export declare const editorExperimentsConfig: {
691
697
  typeGuard: (value: unknown) => value is 'control' | 'test';
692
698
  values: ('control' | 'test')[];
693
699
  };
694
- platform_hover_card_preview_panel_modal: {
695
- defaultValue: 'control' | 'test';
696
- param: string;
697
- productKeys?: ProductKeys;
698
- typeGuard: (value: unknown) => value is 'control' | 'test';
699
- values: ('control' | 'test')[];
700
- };
701
700
  platform_inline_smartcard_connect_button_exp: {
702
701
  defaultValue: 'control' | 'test1' | 'test2';
703
702
  param: string;
@@ -929,5 +928,11 @@ export declare const editorExperimentsConfig: {
929
928
  productKeys?: ProductKeys;
930
929
  typeGuard: IsBooleanType;
931
930
  };
931
+ confluence_insert_excerpt_inline_vertical_align: {
932
+ defaultValue: boolean;
933
+ param: string;
934
+ productKeys?: ProductKeys;
935
+ typeGuard: IsBooleanType;
936
+ };
932
937
  };
933
938
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.5.0",
3
+ "version": "17.7.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",