@atlaskit/tmp-editor-statsig 77.1.0 → 77.3.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
+ ## 77.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2023cac0fd36f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2023cac0fd36f) -
8
+ Add column drag handle context menu placeholder, gated behind the
9
+ platform_editor_layout_column_menu experiment flag.
10
+
11
+ ## 77.2.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`c8e93040b12a0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c8e93040b12a0) -
16
+ Infrastructure for snap-to-row in database native embeds
17
+
3
18
  ## 77.1.0
4
19
 
5
20
  ### Minor Changes
@@ -169,6 +169,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
169
169
  param: 'isEnabled',
170
170
  defaultValue: false
171
171
  }),
172
+ // Added 2026-04-28
173
+ 'agent-managed_blocks_mvp': (0, _experimentBuilders.createBooleanExperiment)({
174
+ productKeys: {
175
+ confluence: 'agent-managed_blocks_mvp'
176
+ },
177
+ param: 'isEnabled',
178
+ defaultValue: false
179
+ }),
180
+ // Added 2026-05-05
181
+ 'databases-native-embeds-v2': (0, _experimentBuilders.createBooleanExperiment)({
182
+ productKeys: {
183
+ confluence: 'databases-native-embeds-v2'
184
+ },
185
+ param: 'isEnabled',
186
+ defaultValue: false
187
+ }),
172
188
  // Added 2025-09-30
173
189
  cc_editor_insm_outlier_events: (0, _experimentBuilders.createMultivariateExperiment)({
174
190
  productKeys: {
@@ -1922,6 +1938,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1922
1938
  param: 'isEnabled',
1923
1939
  defaultValue: false
1924
1940
  }),
1941
+ // Added 2026-05-07
1942
+ platform_editor_layout_column_menu: (0, _experimentBuilders.createBooleanExperiment)({
1943
+ productKeys: {
1944
+ confluence: 'platform_editor_layout_column_menu'
1945
+ },
1946
+ param: 'isEnabled',
1947
+ defaultValue: false
1948
+ }),
1925
1949
  // Added 2026-03-31
1926
1950
  platform_editor_lovability_distribute_column_fix: (0, _experimentBuilders.createBooleanExperiment)({
1927
1951
  productKeys: {
@@ -163,6 +163,22 @@ export const editorExperimentsConfig = {
163
163
  param: 'isEnabled',
164
164
  defaultValue: false
165
165
  }),
166
+ // Added 2026-04-28
167
+ 'agent-managed_blocks_mvp': createBooleanExperiment({
168
+ productKeys: {
169
+ confluence: 'agent-managed_blocks_mvp'
170
+ },
171
+ param: 'isEnabled',
172
+ defaultValue: false
173
+ }),
174
+ // Added 2026-05-05
175
+ 'databases-native-embeds-v2': createBooleanExperiment({
176
+ productKeys: {
177
+ confluence: 'databases-native-embeds-v2'
178
+ },
179
+ param: 'isEnabled',
180
+ defaultValue: false
181
+ }),
166
182
  // Added 2025-09-30
167
183
  cc_editor_insm_outlier_events: createMultivariateExperiment({
168
184
  productKeys: {
@@ -1916,6 +1932,14 @@ export const editorExperimentsConfig = {
1916
1932
  param: 'isEnabled',
1917
1933
  defaultValue: false
1918
1934
  }),
1935
+ // Added 2026-05-07
1936
+ platform_editor_layout_column_menu: createBooleanExperiment({
1937
+ productKeys: {
1938
+ confluence: 'platform_editor_layout_column_menu'
1939
+ },
1940
+ param: 'isEnabled',
1941
+ defaultValue: false
1942
+ }),
1919
1943
  // Added 2026-03-31
1920
1944
  platform_editor_lovability_distribute_column_fix: createBooleanExperiment({
1921
1945
  productKeys: {
@@ -163,6 +163,22 @@ export var editorExperimentsConfig = {
163
163
  param: 'isEnabled',
164
164
  defaultValue: false
165
165
  }),
166
+ // Added 2026-04-28
167
+ 'agent-managed_blocks_mvp': createBooleanExperiment({
168
+ productKeys: {
169
+ confluence: 'agent-managed_blocks_mvp'
170
+ },
171
+ param: 'isEnabled',
172
+ defaultValue: false
173
+ }),
174
+ // Added 2026-05-05
175
+ 'databases-native-embeds-v2': createBooleanExperiment({
176
+ productKeys: {
177
+ confluence: 'databases-native-embeds-v2'
178
+ },
179
+ param: 'isEnabled',
180
+ defaultValue: false
181
+ }),
166
182
  // Added 2025-09-30
167
183
  cc_editor_insm_outlier_events: createMultivariateExperiment({
168
184
  productKeys: {
@@ -1916,6 +1932,14 @@ export var editorExperimentsConfig = {
1916
1932
  param: 'isEnabled',
1917
1933
  defaultValue: false
1918
1934
  }),
1935
+ // Added 2026-05-07
1936
+ platform_editor_layout_column_menu: createBooleanExperiment({
1937
+ productKeys: {
1938
+ confluence: 'platform_editor_layout_column_menu'
1939
+ },
1940
+ param: 'isEnabled',
1941
+ defaultValue: false
1942
+ }),
1919
1943
  // Added 2026-03-31
1920
1944
  platform_editor_lovability_distribute_column_fix: createBooleanExperiment({
1921
1945
  productKeys: {
@@ -33,12 +33,24 @@ export declare const editorExperimentsConfig: {
33
33
  productKeys?: ProductKeys;
34
34
  typeGuard: IsBooleanType;
35
35
  };
36
+ 'databases-native-embeds-v2': {
37
+ defaultValue: boolean;
38
+ param: string;
39
+ productKeys?: ProductKeys;
40
+ typeGuard: IsBooleanType;
41
+ };
36
42
  cwr_page_tree_auto_finalize: {
37
43
  defaultValue: boolean;
38
44
  param: string;
39
45
  productKeys?: ProductKeys;
40
46
  typeGuard: IsBooleanType;
41
47
  };
48
+ 'agent-managed_blocks_mvp': {
49
+ defaultValue: boolean;
50
+ param: string;
51
+ productKeys?: ProductKeys;
52
+ typeGuard: IsBooleanType;
53
+ };
42
54
  cc_editor_ai_content_mode: {
43
55
  defaultValue: 'control' | 'test';
44
56
  param: string;
@@ -1021,6 +1033,12 @@ export declare const editorExperimentsConfig: {
1021
1033
  productKeys?: ProductKeys;
1022
1034
  typeGuard: IsBooleanType;
1023
1035
  };
1036
+ platform_editor_layout_column_menu: {
1037
+ defaultValue: boolean;
1038
+ param: string;
1039
+ productKeys?: ProductKeys;
1040
+ typeGuard: IsBooleanType;
1041
+ };
1024
1042
  platform_editor_perf_lint_cleanup: {
1025
1043
  defaultValue: boolean;
1026
1044
  param: string;
@@ -33,12 +33,24 @@ export declare const editorExperimentsConfig: {
33
33
  productKeys?: ProductKeys;
34
34
  typeGuard: IsBooleanType;
35
35
  };
36
+ 'databases-native-embeds-v2': {
37
+ defaultValue: boolean;
38
+ param: string;
39
+ productKeys?: ProductKeys;
40
+ typeGuard: IsBooleanType;
41
+ };
36
42
  cwr_page_tree_auto_finalize: {
37
43
  defaultValue: boolean;
38
44
  param: string;
39
45
  productKeys?: ProductKeys;
40
46
  typeGuard: IsBooleanType;
41
47
  };
48
+ 'agent-managed_blocks_mvp': {
49
+ defaultValue: boolean;
50
+ param: string;
51
+ productKeys?: ProductKeys;
52
+ typeGuard: IsBooleanType;
53
+ };
42
54
  cc_editor_ai_content_mode: {
43
55
  defaultValue: 'control' | 'test';
44
56
  param: string;
@@ -1021,6 +1033,12 @@ export declare const editorExperimentsConfig: {
1021
1033
  productKeys?: ProductKeys;
1022
1034
  typeGuard: IsBooleanType;
1023
1035
  };
1036
+ platform_editor_layout_column_menu: {
1037
+ defaultValue: boolean;
1038
+ param: string;
1039
+ productKeys?: ProductKeys;
1040
+ typeGuard: IsBooleanType;
1041
+ };
1024
1042
  platform_editor_perf_lint_cleanup: {
1025
1043
  defaultValue: boolean;
1026
1044
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "77.1.0",
3
+ "version": "77.3.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",
@@ -44,7 +44,7 @@
44
44
  }
45
45
  },
46
46
  "devDependencies": {
47
- "@atlassian/feature-flags-test-utils": "^1.0.0"
47
+ "@atlassian/feature-flags-test-utils": "^1.1.0"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "react": "^18.2.0"