@atlaskit/tmp-editor-statsig 16.8.0 → 16.10.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
+ ## 16.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`acd81a73a9a20`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acd81a73a9a20) -
8
+ [ux] EDITOR-4259 Set table ref when table is rendered
9
+
10
+ ## 16.9.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`8c24728c97456`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c24728c97456) -
15
+ EDITOR-3638 Exclude zero intersection entries when scroll is detected
16
+
3
17
  ## 16.8.0
4
18
 
5
19
  ### Minor Changes
@@ -101,6 +101,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
101
101
  param: 'isEnabled',
102
102
  defaultValue: false
103
103
  }),
104
+ // Added 2026-01-7
105
+ platform_editor_table_sticky_header_patch_10: (0, _experimentBuilders.createBooleanExperiment)({
106
+ productKeys: {
107
+ confluence: 'platform_editor_table_sticky_header_patch_10'
108
+ },
109
+ param: 'isEnabled',
110
+ defaultValue: false
111
+ }),
104
112
  // Added 2025-11-17
105
113
  platform_editor_renderer_extension_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
106
114
  productKeys: {
@@ -586,6 +594,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
586
594
  values: ['control', 'css_changes_only', 'css_js_changes'],
587
595
  defaultValue: 'control'
588
596
  }),
597
+ // Added 2026-01-05
598
+ platform_editor_table_update_table_ref: (0, _experimentBuilders.createBooleanExperiment)({
599
+ productKeys: {
600
+ confluence: 'platform_editor_table_update_table_ref'
601
+ },
602
+ param: 'isEnabled',
603
+ defaultValue: false
604
+ }),
589
605
  // Added 2025-08-17
590
606
  platform_hover_card_preview_panel: (0, _experimentBuilders.createMultivariateExperiment)({
591
607
  productKeys: {
@@ -95,6 +95,14 @@ export const editorExperimentsConfig = {
95
95
  param: 'isEnabled',
96
96
  defaultValue: false
97
97
  }),
98
+ // Added 2026-01-7
99
+ platform_editor_table_sticky_header_patch_10: createBooleanExperiment({
100
+ productKeys: {
101
+ confluence: 'platform_editor_table_sticky_header_patch_10'
102
+ },
103
+ param: 'isEnabled',
104
+ defaultValue: false
105
+ }),
98
106
  // Added 2025-11-17
99
107
  platform_editor_renderer_extension_width_fix: createBooleanExperiment({
100
108
  productKeys: {
@@ -580,6 +588,14 @@ export const editorExperimentsConfig = {
580
588
  values: ['control', 'css_changes_only', 'css_js_changes'],
581
589
  defaultValue: 'control'
582
590
  }),
591
+ // Added 2026-01-05
592
+ platform_editor_table_update_table_ref: createBooleanExperiment({
593
+ productKeys: {
594
+ confluence: 'platform_editor_table_update_table_ref'
595
+ },
596
+ param: 'isEnabled',
597
+ defaultValue: false
598
+ }),
583
599
  // Added 2025-08-17
584
600
  platform_hover_card_preview_panel: createMultivariateExperiment({
585
601
  productKeys: {
@@ -95,6 +95,14 @@ export var editorExperimentsConfig = {
95
95
  param: 'isEnabled',
96
96
  defaultValue: false
97
97
  }),
98
+ // Added 2026-01-7
99
+ platform_editor_table_sticky_header_patch_10: createBooleanExperiment({
100
+ productKeys: {
101
+ confluence: 'platform_editor_table_sticky_header_patch_10'
102
+ },
103
+ param: 'isEnabled',
104
+ defaultValue: false
105
+ }),
98
106
  // Added 2025-11-17
99
107
  platform_editor_renderer_extension_width_fix: createBooleanExperiment({
100
108
  productKeys: {
@@ -580,6 +588,14 @@ export var editorExperimentsConfig = {
580
588
  values: ['control', 'css_changes_only', 'css_js_changes'],
581
589
  defaultValue: 'control'
582
590
  }),
591
+ // Added 2026-01-05
592
+ platform_editor_table_update_table_ref: createBooleanExperiment({
593
+ productKeys: {
594
+ confluence: 'platform_editor_table_update_table_ref'
595
+ },
596
+ param: 'isEnabled',
597
+ defaultValue: false
598
+ }),
583
599
  // Added 2025-08-17
584
600
  platform_hover_card_preview_panel: createMultivariateExperiment({
585
601
  productKeys: {
@@ -706,6 +706,12 @@ export declare const editorExperimentsConfig: {
706
706
  productKeys?: ProductKeys;
707
707
  typeGuard: IsBooleanType;
708
708
  };
709
+ platform_editor_table_update_table_ref: {
710
+ defaultValue: boolean;
711
+ param: string;
712
+ productKeys?: ProductKeys;
713
+ typeGuard: IsBooleanType;
714
+ };
709
715
  platform_editor_wait_for_space_after_ascii_emoji: {
710
716
  defaultValue: boolean;
711
717
  param: string;
@@ -782,6 +788,12 @@ export declare const editorExperimentsConfig: {
782
788
  productKeys?: ProductKeys;
783
789
  typeGuard: IsBooleanType;
784
790
  };
791
+ platform_editor_table_sticky_header_patch_10: {
792
+ defaultValue: boolean;
793
+ param: string;
794
+ productKeys?: ProductKeys;
795
+ typeGuard: IsBooleanType;
796
+ };
785
797
  smart_link_confluence_short_link_analytics: {
786
798
  defaultValue: 'control' | 'test';
787
799
  param: string;
@@ -706,6 +706,12 @@ export declare const editorExperimentsConfig: {
706
706
  productKeys?: ProductKeys;
707
707
  typeGuard: IsBooleanType;
708
708
  };
709
+ platform_editor_table_update_table_ref: {
710
+ defaultValue: boolean;
711
+ param: string;
712
+ productKeys?: ProductKeys;
713
+ typeGuard: IsBooleanType;
714
+ };
709
715
  platform_editor_wait_for_space_after_ascii_emoji: {
710
716
  defaultValue: boolean;
711
717
  param: string;
@@ -782,6 +788,12 @@ export declare const editorExperimentsConfig: {
782
788
  productKeys?: ProductKeys;
783
789
  typeGuard: IsBooleanType;
784
790
  };
791
+ platform_editor_table_sticky_header_patch_10: {
792
+ defaultValue: boolean;
793
+ param: string;
794
+ productKeys?: ProductKeys;
795
+ typeGuard: IsBooleanType;
796
+ };
785
797
  smart_link_confluence_short_link_analytics: {
786
798
  defaultValue: 'control' | 'test';
787
799
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "16.8.0",
3
+ "version": "16.10.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",