@atlaskit/tmp-editor-statsig 136.0.0 → 136.2.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,34 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 136.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`509b29022dde2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/509b29022dde2) -
8
+ cleanup platform_editor_table_display_mode_in_to_dom
9
+ - [`399ca50adb668`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/399ca50adb668) -
10
+ [ux] [EDITOR-8377] Fix the table cell background colour palette so the current colour is shown as
11
+ selected.
12
+
13
+ ## 136.1.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [`269b5c3095949`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/269b5c3095949) -
18
+ [ux] Add experiment `cwr_publish_flow_live_doc_toggle_exp` to the CWR "Add to Confluence" finalize
19
+ popup. The experiment controls how the live doc / page content type selector is presented:
20
+ - **control**: existing toggle buttons (Live Doc / Page) are shown as before
21
+ - **variantA**: toggle replaced by a dropdown pill next to the "Add" heading
22
+ - **variantB**: toggle hidden, content type defaults to `'livedoc'`
23
+ - **variantC**: toggle hidden, content type defaults to `'page'`
24
+
25
+ The `defaultContentType` prop passed by consumers always wins over the experiment-driven default:
26
+
27
+ ```tsx
28
+ // defaultContentType takes precedence regardless of experiment cohort
29
+ <ConfluenceObjectFinalizePopup defaultContentType="page" ... />
30
+ ```
31
+
3
32
  ## 136.0.0
4
33
 
5
34
  ### Major Changes
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.testMultivariateOverrides = exports.testBooleanOverrides = void 0;
7
7
  var testMultivariateOverrides = exports.testMultivariateOverrides = {
8
+ cwr_publish_flow_live_doc_toggle_exp: 'control',
8
9
  'example-multivariate': 'one',
9
10
  'platform_editor_ai-prompts-placeholder': 'control',
10
11
  platform_editor_controls: 'control',
@@ -637,13 +637,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
637
637
  param: 'isEnabled',
638
638
  defaultValue: false
639
639
  }),
640
- platform_editor_table_display_mode_in_to_dom: (0, _experimentBuilders.createBooleanExperiment)({
641
- productKeys: {
642
- confluence: 'platform_editor_table_display_mode_in_to_dom'
643
- },
644
- param: 'isEnabled',
645
- defaultValue: false
646
- }),
647
640
  // Added 2025-04-23
648
641
  platform_renderer_fix_analytics_memo_callback: (0, _experimentBuilders.createBooleanExperiment)({
649
642
  productKeys: {
@@ -2625,5 +2618,23 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2625
2618
  },
2626
2619
  param: 'value',
2627
2620
  defaultValue: false
2621
+ }),
2622
+ // Added 2026-07-31
2623
+ platform_editor_table_menu_updates_patch_3: (0, _experimentBuilders.createBooleanExperiment)({
2624
+ productKeys: {
2625
+ confluence: 'platform_editor_table_menu_updates_patch_3',
2626
+ jira: 'platform_editor_table_menu_updates_patch_3'
2627
+ },
2628
+ param: 'isEnabled',
2629
+ defaultValue: false
2630
+ }),
2631
+ // Added 2026-07-28
2632
+ cwr_publish_flow_live_doc_toggle_exp: (0, _experimentBuilders.createMultivariateExperiment)({
2633
+ productKeys: {
2634
+ confluence: 'cwr_publish_flow_live_doc_toggle_exp'
2635
+ },
2636
+ param: 'cohort',
2637
+ defaultValue: 'control',
2638
+ values: ['control', 'variantA', 'variantB', 'variantC']
2628
2639
  })
2629
2640
  };
@@ -1,4 +1,5 @@
1
1
  export const testMultivariateOverrides = {
2
+ cwr_publish_flow_live_doc_toggle_exp: 'control',
2
3
  'example-multivariate': 'one',
3
4
  'platform_editor_ai-prompts-placeholder': 'control',
4
5
  platform_editor_controls: 'control',
@@ -631,13 +631,6 @@ export const editorExperimentsConfig = {
631
631
  param: 'isEnabled',
632
632
  defaultValue: false
633
633
  }),
634
- platform_editor_table_display_mode_in_to_dom: createBooleanExperiment({
635
- productKeys: {
636
- confluence: 'platform_editor_table_display_mode_in_to_dom'
637
- },
638
- param: 'isEnabled',
639
- defaultValue: false
640
- }),
641
634
  // Added 2025-04-23
642
635
  platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
643
636
  productKeys: {
@@ -2619,5 +2612,23 @@ export const editorExperimentsConfig = {
2619
2612
  },
2620
2613
  param: 'value',
2621
2614
  defaultValue: false
2615
+ }),
2616
+ // Added 2026-07-31
2617
+ platform_editor_table_menu_updates_patch_3: createBooleanExperiment({
2618
+ productKeys: {
2619
+ confluence: 'platform_editor_table_menu_updates_patch_3',
2620
+ jira: 'platform_editor_table_menu_updates_patch_3'
2621
+ },
2622
+ param: 'isEnabled',
2623
+ defaultValue: false
2624
+ }),
2625
+ // Added 2026-07-28
2626
+ cwr_publish_flow_live_doc_toggle_exp: createMultivariateExperiment({
2627
+ productKeys: {
2628
+ confluence: 'cwr_publish_flow_live_doc_toggle_exp'
2629
+ },
2630
+ param: 'cohort',
2631
+ defaultValue: 'control',
2632
+ values: ['control', 'variantA', 'variantB', 'variantC']
2622
2633
  })
2623
2634
  };
@@ -1,4 +1,5 @@
1
1
  export var testMultivariateOverrides = {
2
+ cwr_publish_flow_live_doc_toggle_exp: 'control',
2
3
  'example-multivariate': 'one',
3
4
  'platform_editor_ai-prompts-placeholder': 'control',
4
5
  platform_editor_controls: 'control',
@@ -631,13 +631,6 @@ export var editorExperimentsConfig = {
631
631
  param: 'isEnabled',
632
632
  defaultValue: false
633
633
  }),
634
- platform_editor_table_display_mode_in_to_dom: createBooleanExperiment({
635
- productKeys: {
636
- confluence: 'platform_editor_table_display_mode_in_to_dom'
637
- },
638
- param: 'isEnabled',
639
- defaultValue: false
640
- }),
641
634
  // Added 2025-04-23
642
635
  platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
643
636
  productKeys: {
@@ -2619,5 +2612,23 @@ export var editorExperimentsConfig = {
2619
2612
  },
2620
2613
  param: 'value',
2621
2614
  defaultValue: false
2615
+ }),
2616
+ // Added 2026-07-31
2617
+ platform_editor_table_menu_updates_patch_3: createBooleanExperiment({
2618
+ productKeys: {
2619
+ confluence: 'platform_editor_table_menu_updates_patch_3',
2620
+ jira: 'platform_editor_table_menu_updates_patch_3'
2621
+ },
2622
+ param: 'isEnabled',
2623
+ defaultValue: false
2624
+ }),
2625
+ // Added 2026-07-28
2626
+ cwr_publish_flow_live_doc_toggle_exp: createMultivariateExperiment({
2627
+ productKeys: {
2628
+ confluence: 'cwr_publish_flow_live_doc_toggle_exp'
2629
+ },
2630
+ param: 'cohort',
2631
+ defaultValue: 'control',
2632
+ values: ['control', 'variantA', 'variantB', 'variantC']
2622
2633
  })
2623
2634
  };
@@ -743,12 +743,6 @@ export declare const editorExperimentsConfig: {
743
743
  productKeys?: ProductKeys;
744
744
  typeGuard: IsBooleanType;
745
745
  };
746
- platform_editor_table_display_mode_in_to_dom: {
747
- defaultValue: boolean;
748
- param: string;
749
- productKeys?: ProductKeys;
750
- typeGuard: IsBooleanType;
751
- };
752
746
  platform_editor_table_ref_optimisation: {
753
747
  defaultValue: boolean;
754
748
  param: string;
@@ -1913,5 +1907,18 @@ export declare const editorExperimentsConfig: {
1913
1907
  typeGuard: (value: unknown) => value is 'control' | 'variant_a' | 'variant_b';
1914
1908
  values: ('control' | 'variant_a' | 'variant_b')[];
1915
1909
  };
1910
+ platform_editor_table_menu_updates_patch_3: {
1911
+ defaultValue: boolean;
1912
+ param: string;
1913
+ productKeys?: ProductKeys;
1914
+ typeGuard: IsBooleanType;
1915
+ };
1916
+ cwr_publish_flow_live_doc_toggle_exp: {
1917
+ defaultValue: 'control' | 'variantA' | 'variantB' | 'variantC';
1918
+ param: string;
1919
+ productKeys?: ProductKeys;
1920
+ typeGuard: (value: unknown) => value is 'control' | 'variantA' | 'variantB' | 'variantC';
1921
+ values: ('control' | 'variantA' | 'variantB' | 'variantC')[];
1922
+ };
1916
1923
  };
1917
1924
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "136.0.0",
3
+ "version": "136.2.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",