@atlaskit/tmp-editor-statsig 126.2.0 → 126.4.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,22 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 126.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`8bdbc5ba79617`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8bdbc5ba79617) -
8
+ [ux] Gate the table active cell decoration behind `platform_editor_table_q4_patch_3` so it is not
9
+ calculated or rendered until the editor has had its first interaction. Fix row control
10
+ mis-alignment issues.
11
+
12
+ ## 126.3.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`acacc85e527ff`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acacc85e527ff) -
17
+ [ux] Fixed an issue where the left resize handle of an Editor embed would appear to 'lag' when the
18
+ embed is right-aligned. Gated behind platform_editor_fix_lagging_embed_resize_handle.
19
+
3
20
  ## 126.2.0
4
21
 
5
22
  ### Minor Changes
@@ -1225,6 +1225,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1225
1225
  param: 'isEnabled',
1226
1226
  defaultValue: false
1227
1227
  }),
1228
+ // Added 2026-07-16
1229
+ platform_editor_fix_lagging_embed_resize_handle: (0, _experimentBuilders.createBooleanExperiment)({
1230
+ productKeys: {
1231
+ confluence: 'platform_editor_fix_lagging_embed_resize_handle'
1232
+ },
1233
+ param: 'isEnabled',
1234
+ defaultValue: false
1235
+ }),
1228
1236
  // Added 2026-03-16
1229
1237
  platform_editor_ignore_metadata_connection_errors: (0, _experimentBuilders.createBooleanExperiment)({
1230
1238
  productKeys: {
@@ -2035,6 +2043,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2035
2043
  param: 'isEnabled',
2036
2044
  defaultValue: false
2037
2045
  }),
2046
+ // Added 2026-07-16
2047
+ platform_editor_table_q4_patch_3: (0, _experimentBuilders.createBooleanExperiment)({
2048
+ productKeys: {
2049
+ confluence: 'platform_editor_table_q4_patch_3',
2050
+ jira: 'platform_editor_table_q4_patch_3'
2051
+ },
2052
+ param: 'isEnabled',
2053
+ defaultValue: false
2054
+ }),
2038
2055
  // Added 2026-05-11
2039
2056
  platform_editor_table_menu_updates: (0, _experimentBuilders.createBooleanExperiment)({
2040
2057
  productKeys: {
@@ -1219,6 +1219,14 @@ export const editorExperimentsConfig = {
1219
1219
  param: 'isEnabled',
1220
1220
  defaultValue: false
1221
1221
  }),
1222
+ // Added 2026-07-16
1223
+ platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
1224
+ productKeys: {
1225
+ confluence: 'platform_editor_fix_lagging_embed_resize_handle'
1226
+ },
1227
+ param: 'isEnabled',
1228
+ defaultValue: false
1229
+ }),
1222
1230
  // Added 2026-03-16
1223
1231
  platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
1224
1232
  productKeys: {
@@ -2029,6 +2037,15 @@ export const editorExperimentsConfig = {
2029
2037
  param: 'isEnabled',
2030
2038
  defaultValue: false
2031
2039
  }),
2040
+ // Added 2026-07-16
2041
+ platform_editor_table_q4_patch_3: createBooleanExperiment({
2042
+ productKeys: {
2043
+ confluence: 'platform_editor_table_q4_patch_3',
2044
+ jira: 'platform_editor_table_q4_patch_3'
2045
+ },
2046
+ param: 'isEnabled',
2047
+ defaultValue: false
2048
+ }),
2032
2049
  // Added 2026-05-11
2033
2050
  platform_editor_table_menu_updates: createBooleanExperiment({
2034
2051
  productKeys: {
@@ -1219,6 +1219,14 @@ export var editorExperimentsConfig = {
1219
1219
  param: 'isEnabled',
1220
1220
  defaultValue: false
1221
1221
  }),
1222
+ // Added 2026-07-16
1223
+ platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
1224
+ productKeys: {
1225
+ confluence: 'platform_editor_fix_lagging_embed_resize_handle'
1226
+ },
1227
+ param: 'isEnabled',
1228
+ defaultValue: false
1229
+ }),
1222
1230
  // Added 2026-03-16
1223
1231
  platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
1224
1232
  productKeys: {
@@ -2029,6 +2037,15 @@ export var editorExperimentsConfig = {
2029
2037
  param: 'isEnabled',
2030
2038
  defaultValue: false
2031
2039
  }),
2040
+ // Added 2026-07-16
2041
+ platform_editor_table_q4_patch_3: createBooleanExperiment({
2042
+ productKeys: {
2043
+ confluence: 'platform_editor_table_q4_patch_3',
2044
+ jira: 'platform_editor_table_q4_patch_3'
2045
+ },
2046
+ param: 'isEnabled',
2047
+ defaultValue: false
2048
+ }),
2032
2049
  // Added 2026-05-11
2033
2050
  platform_editor_table_menu_updates: createBooleanExperiment({
2034
2051
  productKeys: {
@@ -1131,6 +1131,12 @@ export declare const editorExperimentsConfig: {
1131
1131
  productKeys?: ProductKeys;
1132
1132
  typeGuard: IsBooleanType;
1133
1133
  };
1134
+ platform_editor_fix_lagging_embed_resize_handle: {
1135
+ defaultValue: boolean;
1136
+ param: string;
1137
+ productKeys?: ProductKeys;
1138
+ typeGuard: IsBooleanType;
1139
+ };
1134
1140
  'cwr-staging-area-close-as-minimize-button': {
1135
1141
  defaultValue: boolean;
1136
1142
  param: string;
@@ -1498,6 +1504,12 @@ export declare const editorExperimentsConfig: {
1498
1504
  productKeys?: ProductKeys;
1499
1505
  typeGuard: IsBooleanType;
1500
1506
  };
1507
+ platform_editor_table_q4_patch_3: {
1508
+ defaultValue: boolean;
1509
+ param: string;
1510
+ productKeys?: ProductKeys;
1511
+ typeGuard: IsBooleanType;
1512
+ };
1501
1513
  platform_editor_table_menu_updates: {
1502
1514
  defaultValue: boolean;
1503
1515
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "126.2.0",
3
+ "version": "126.4.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",