@atlaskit/tmp-editor-statsig 16.14.0 → 16.16.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,20 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 16.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`87da29e26abe0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87da29e26abe0) -
8
+ Refactoring company hub carousel navigation thumbnails to remove nested interactive elements
9
+
10
+ ## 16.15.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`9ee3f2262dfcf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9ee3f2262dfcf) -
15
+ improve performance of table floating toolbar when determine the disabled state of distribute
16
+ column button
17
+
3
18
  ## 16.14.0
4
19
 
5
20
  ### Minor Changes
@@ -232,6 +232,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
232
232
  param: 'isEnabled',
233
233
  defaultValue: false
234
234
  }),
235
+ // Added 2026-01-05
236
+ 'company_hub_carousel_thumbnails-refactor': (0, _experimentBuilders.createBooleanExperiment)({
237
+ productKeys: {
238
+ confluence: 'company_hub_carousel_thumbnails-refactor'
239
+ },
240
+ param: 'isEnabled',
241
+ defaultValue: false
242
+ }),
235
243
  // Added 2025-10-10
236
244
  platform_editor_experience_tracking: (0, _experimentBuilders.createBooleanExperiment)({
237
245
  productKeys: {
@@ -855,6 +863,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
855
863
  param: 'isEnabled',
856
864
  defaultValue: false
857
865
  }),
866
+ // Added 2026-01-08
867
+ platform_editor_table_toolbar_perf_fix: (0, _experimentBuilders.createBooleanExperiment)({
868
+ productKeys: {
869
+ confluence: 'platform_editor_table_toolbar_perf_fix'
870
+ },
871
+ param: 'isEnabled',
872
+ defaultValue: false
873
+ }),
858
874
  // Added 2025-09-01
859
875
  cc_editor_ai_content_mode: (0, _experimentBuilders.createMultivariateExperiment)({
860
876
  productKeys: {
@@ -226,6 +226,14 @@ export const editorExperimentsConfig = {
226
226
  param: 'isEnabled',
227
227
  defaultValue: false
228
228
  }),
229
+ // Added 2026-01-05
230
+ 'company_hub_carousel_thumbnails-refactor': createBooleanExperiment({
231
+ productKeys: {
232
+ confluence: 'company_hub_carousel_thumbnails-refactor'
233
+ },
234
+ param: 'isEnabled',
235
+ defaultValue: false
236
+ }),
229
237
  // Added 2025-10-10
230
238
  platform_editor_experience_tracking: createBooleanExperiment({
231
239
  productKeys: {
@@ -849,6 +857,14 @@ export const editorExperimentsConfig = {
849
857
  param: 'isEnabled',
850
858
  defaultValue: false
851
859
  }),
860
+ // Added 2026-01-08
861
+ platform_editor_table_toolbar_perf_fix: createBooleanExperiment({
862
+ productKeys: {
863
+ confluence: 'platform_editor_table_toolbar_perf_fix'
864
+ },
865
+ param: 'isEnabled',
866
+ defaultValue: false
867
+ }),
852
868
  // Added 2025-09-01
853
869
  cc_editor_ai_content_mode: createMultivariateExperiment({
854
870
  productKeys: {
@@ -226,6 +226,14 @@ export var editorExperimentsConfig = {
226
226
  param: 'isEnabled',
227
227
  defaultValue: false
228
228
  }),
229
+ // Added 2026-01-05
230
+ 'company_hub_carousel_thumbnails-refactor': createBooleanExperiment({
231
+ productKeys: {
232
+ confluence: 'company_hub_carousel_thumbnails-refactor'
233
+ },
234
+ param: 'isEnabled',
235
+ defaultValue: false
236
+ }),
229
237
  // Added 2025-10-10
230
238
  platform_editor_experience_tracking: createBooleanExperiment({
231
239
  productKeys: {
@@ -849,6 +857,14 @@ export var editorExperimentsConfig = {
849
857
  param: 'isEnabled',
850
858
  defaultValue: false
851
859
  }),
860
+ // Added 2026-01-08
861
+ platform_editor_table_toolbar_perf_fix: createBooleanExperiment({
862
+ productKeys: {
863
+ confluence: 'platform_editor_table_toolbar_perf_fix'
864
+ },
865
+ param: 'isEnabled',
866
+ defaultValue: false
867
+ }),
852
868
  // Added 2025-09-01
853
869
  cc_editor_ai_content_mode: createMultivariateExperiment({
854
870
  productKeys: {
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
118
118
  productKeys?: ProductKeys;
119
119
  typeGuard: IsBooleanType;
120
120
  };
121
+ 'company_hub_carousel_thumbnails-refactor': {
122
+ defaultValue: boolean;
123
+ param: string;
124
+ productKeys?: ProductKeys;
125
+ typeGuard: IsBooleanType;
126
+ };
121
127
  confluence_whiteboards_quick_insert: {
122
128
  defaultValue: 'control' | 'test_blank' | 'test_diagram';
123
129
  param: string;
@@ -723,6 +729,12 @@ export declare const editorExperimentsConfig: {
723
729
  productKeys?: ProductKeys;
724
730
  typeGuard: IsBooleanType;
725
731
  };
732
+ platform_editor_table_toolbar_perf_fix: {
733
+ defaultValue: boolean;
734
+ param: string;
735
+ productKeys?: ProductKeys;
736
+ typeGuard: IsBooleanType;
737
+ };
726
738
  platform_hover_card_preview_panel: {
727
739
  defaultValue: 'control' | 'test';
728
740
  param: string;
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
118
118
  productKeys?: ProductKeys;
119
119
  typeGuard: IsBooleanType;
120
120
  };
121
+ 'company_hub_carousel_thumbnails-refactor': {
122
+ defaultValue: boolean;
123
+ param: string;
124
+ productKeys?: ProductKeys;
125
+ typeGuard: IsBooleanType;
126
+ };
121
127
  confluence_whiteboards_quick_insert: {
122
128
  defaultValue: 'control' | 'test_blank' | 'test_diagram';
123
129
  param: string;
@@ -723,6 +729,12 @@ export declare const editorExperimentsConfig: {
723
729
  productKeys?: ProductKeys;
724
730
  typeGuard: IsBooleanType;
725
731
  };
732
+ platform_editor_table_toolbar_perf_fix: {
733
+ defaultValue: boolean;
734
+ param: string;
735
+ productKeys?: ProductKeys;
736
+ typeGuard: IsBooleanType;
737
+ };
726
738
  platform_hover_card_preview_panel: {
727
739
  defaultValue: 'control' | 'test';
728
740
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "16.14.0",
3
+ "version": "16.16.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",