@atlaskit/tmp-editor-statsig 108.3.0 → 109.0.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,32 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 109.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`49f682f5edc7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/49f682f5edc7b) -
8
+ Clean up experiment `cc_editor_ttvc_media_hold_fix`
9
+
10
+ ### Minor Changes
11
+
12
+ - [`c3f49a97737db`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c3f49a97737db) -
13
+ Generate localIds for nodes inserted when a template replaces the whole document (e.g. applying a
14
+ template to a blank page), gated behind the experiment `platform_editor_ai_template_localids`.
15
+
16
+ Such replacements are delivered by NCS as a remote `OverrideDocumentStep`, which has no `slice`
17
+ and so was skipped by the localId plugin's slice-based scan. When the experiment is enabled,
18
+ remote transactions containing an `OverrideDocumentStep` are now processed so the freshly inserted
19
+ template nodes receive localIds. Ordinary remote collaborator edits remain skipped, and nodes that
20
+ already have a localId are never overwritten.
21
+
22
+ ## 108.4.0
23
+
24
+ ### Minor Changes
25
+
26
+ - [`298f9a506cb5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/298f9a506cb5f) -
27
+ [EDITOR-6790] Allow inserting a column to the left of the first column, behind the
28
+ platform_editor_table_col_insert experiment
29
+
3
30
  ## 108.3.0
4
31
 
5
32
  ### Minor Changes
@@ -233,6 +233,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
233
233
  param: 'isEnabled',
234
234
  defaultValue: false
235
235
  }),
236
+ // Added 2026-06-16
237
+ platform_editor_table_col_insert: (0, _experimentBuilders.createBooleanExperiment)({
238
+ productKeys: {
239
+ confluence: 'platform_editor_table_col_insert'
240
+ },
241
+ param: 'isEnabled',
242
+ defaultValue: false
243
+ }),
236
244
  // Added 2026-03-06
237
245
  platform_editor_media_reliability_observability: (0, _experimentBuilders.createBooleanExperiment)({
238
246
  productKeys: {
@@ -1592,13 +1600,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1592
1600
  param: 'isEnabled',
1593
1601
  defaultValue: false
1594
1602
  }),
1595
- cc_editor_ttvc_media_hold_fix: (0, _experimentBuilders.createBooleanExperiment)({
1596
- productKeys: {
1597
- confluence: 'cc_editor_ttvc_media_hold_fix'
1598
- },
1599
- param: 'isEnabled',
1600
- defaultValue: false
1601
- }),
1602
1603
  // Added 2026-03-06
1603
1604
  platform_editor_single_player_expand: (0, _experimentBuilders.createBooleanExperiment)({
1604
1605
  productKeys: {
@@ -2044,6 +2045,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2044
2045
  param: 'isEnabled',
2045
2046
  defaultValue: false
2046
2047
  }),
2048
+ // Added 2026-06-17
2049
+ platform_editor_ai_template_localids: (0, _experimentBuilders.createBooleanExperiment)({
2050
+ productKeys: {
2051
+ confluence: 'platform_editor_ai_template_localids'
2052
+ },
2053
+ param: 'isEnabled',
2054
+ defaultValue: false
2055
+ }),
2047
2056
  // Added 2026-05-20
2048
2057
  platform_editor_ai_tablecell_localids: (0, _experimentBuilders.createBooleanExperiment)({
2049
2058
  productKeys: {
@@ -227,6 +227,14 @@ export const editorExperimentsConfig = {
227
227
  param: 'isEnabled',
228
228
  defaultValue: false
229
229
  }),
230
+ // Added 2026-06-16
231
+ platform_editor_table_col_insert: createBooleanExperiment({
232
+ productKeys: {
233
+ confluence: 'platform_editor_table_col_insert'
234
+ },
235
+ param: 'isEnabled',
236
+ defaultValue: false
237
+ }),
230
238
  // Added 2026-03-06
231
239
  platform_editor_media_reliability_observability: createBooleanExperiment({
232
240
  productKeys: {
@@ -1586,13 +1594,6 @@ export const editorExperimentsConfig = {
1586
1594
  param: 'isEnabled',
1587
1595
  defaultValue: false
1588
1596
  }),
1589
- cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
1590
- productKeys: {
1591
- confluence: 'cc_editor_ttvc_media_hold_fix'
1592
- },
1593
- param: 'isEnabled',
1594
- defaultValue: false
1595
- }),
1596
1597
  // Added 2026-03-06
1597
1598
  platform_editor_single_player_expand: createBooleanExperiment({
1598
1599
  productKeys: {
@@ -2038,6 +2039,14 @@ export const editorExperimentsConfig = {
2038
2039
  param: 'isEnabled',
2039
2040
  defaultValue: false
2040
2041
  }),
2042
+ // Added 2026-06-17
2043
+ platform_editor_ai_template_localids: createBooleanExperiment({
2044
+ productKeys: {
2045
+ confluence: 'platform_editor_ai_template_localids'
2046
+ },
2047
+ param: 'isEnabled',
2048
+ defaultValue: false
2049
+ }),
2041
2050
  // Added 2026-05-20
2042
2051
  platform_editor_ai_tablecell_localids: createBooleanExperiment({
2043
2052
  productKeys: {
@@ -227,6 +227,14 @@ export var editorExperimentsConfig = {
227
227
  param: 'isEnabled',
228
228
  defaultValue: false
229
229
  }),
230
+ // Added 2026-06-16
231
+ platform_editor_table_col_insert: createBooleanExperiment({
232
+ productKeys: {
233
+ confluence: 'platform_editor_table_col_insert'
234
+ },
235
+ param: 'isEnabled',
236
+ defaultValue: false
237
+ }),
230
238
  // Added 2026-03-06
231
239
  platform_editor_media_reliability_observability: createBooleanExperiment({
232
240
  productKeys: {
@@ -1586,13 +1594,6 @@ export var editorExperimentsConfig = {
1586
1594
  param: 'isEnabled',
1587
1595
  defaultValue: false
1588
1596
  }),
1589
- cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
1590
- productKeys: {
1591
- confluence: 'cc_editor_ttvc_media_hold_fix'
1592
- },
1593
- param: 'isEnabled',
1594
- defaultValue: false
1595
- }),
1596
1597
  // Added 2026-03-06
1597
1598
  platform_editor_single_player_expand: createBooleanExperiment({
1598
1599
  productKeys: {
@@ -2038,6 +2039,14 @@ export var editorExperimentsConfig = {
2038
2039
  param: 'isEnabled',
2039
2040
  defaultValue: false
2040
2041
  }),
2042
+ // Added 2026-06-17
2043
+ platform_editor_ai_template_localids: createBooleanExperiment({
2044
+ productKeys: {
2045
+ confluence: 'platform_editor_ai_template_localids'
2046
+ },
2047
+ param: 'isEnabled',
2048
+ defaultValue: false
2049
+ }),
2041
2050
  // Added 2026-05-20
2042
2051
  platform_editor_ai_tablecell_localids: createBooleanExperiment({
2043
2052
  productKeys: {
@@ -616,6 +616,12 @@ export declare const editorExperimentsConfig: {
616
616
  productKeys?: ProductKeys;
617
617
  typeGuard: IsBooleanType;
618
618
  };
619
+ platform_editor_table_col_insert: {
620
+ defaultValue: boolean;
621
+ param: string;
622
+ productKeys?: ProductKeys;
623
+ typeGuard: IsBooleanType;
624
+ };
619
625
  platform_editor_tables_table_selector: {
620
626
  defaultValue: boolean;
621
627
  param: string;
@@ -1232,12 +1238,6 @@ export declare const editorExperimentsConfig: {
1232
1238
  productKeys?: ProductKeys;
1233
1239
  typeGuard: IsBooleanType;
1234
1240
  };
1235
- cc_editor_ttvc_media_hold_fix: {
1236
- defaultValue: boolean;
1237
- param: string;
1238
- productKeys?: ProductKeys;
1239
- typeGuard: IsBooleanType;
1240
- };
1241
1241
  platform_editor_single_player_expand: {
1242
1242
  defaultValue: boolean;
1243
1243
  param: string;
@@ -1478,6 +1478,12 @@ export declare const editorExperimentsConfig: {
1478
1478
  productKeys?: ProductKeys;
1479
1479
  typeGuard: IsBooleanType;
1480
1480
  };
1481
+ platform_editor_ai_template_localids: {
1482
+ defaultValue: boolean;
1483
+ param: string;
1484
+ productKeys?: ProductKeys;
1485
+ typeGuard: IsBooleanType;
1486
+ };
1481
1487
  platform_editor_ai_tablecell_localids: {
1482
1488
  defaultValue: boolean;
1483
1489
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "108.3.0",
3
+ "version": "109.0.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",