@atlaskit/tmp-editor-statsig 84.3.0 → 84.3.2

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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 84.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`cf6977530a136`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cf6977530a136) -
8
+ Support fullwidth slash / (U+FF0F) as a quick insert trigger for Japanese/CJK keyboard users.
9
+ Japanese keyboards produce the fullwidth slash when pressing the / key, which previously did not
10
+ open the quick insert menu. The fix adds a `customRegex` to the quick-insert typeahead handler
11
+ that matches both ASCII slash `/` and fullwidth slash `/`, and extends the trigger cleanup logic
12
+ in `openTypeAheadAtCursor` to handle `customRegex` alternatives.
13
+
14
+ ## 84.3.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [`60d28e13ab1a3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/60d28e13ab1a3) -
19
+ [ux] Position free generation prompt bar to its relative position when the maui app is side a
20
+ layout behind an experiment
21
+
3
22
  ## 84.3.0
4
23
 
5
24
  ### Minor Changes
@@ -467,6 +467,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
467
467
  param: 'isEnabled',
468
468
  defaultValue: false
469
469
  }),
470
+ // Added 2026-05-26
471
+ platform_editor_agent_mentions: (0, _experimentBuilders.createBooleanExperiment)({
472
+ productKeys: {
473
+ confluence: 'platform_editor_agent_mentions',
474
+ jira: 'platform_editor_agent_mentions'
475
+ },
476
+ param: 'isEnabled',
477
+ defaultValue: false
478
+ }),
470
479
  // Added 2025-10-31
471
480
  platform_editor_lovability_suppress_toolbar_event: (0, _experimentBuilders.createBooleanExperiment)({
472
481
  productKeys: {
@@ -2250,6 +2259,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2250
2259
  param: 'isEnabled',
2251
2260
  defaultValue: false
2252
2261
  }),
2262
+ platform_rovo_support_create_inline_comment: (0, _experimentBuilders.createBooleanExperiment)({
2263
+ productKeys: {
2264
+ confluence: 'platform_rovo_support_create_inline_comment'
2265
+ },
2266
+ param: 'isEnabled',
2267
+ defaultValue: false
2268
+ }),
2253
2269
  // Added 2026-05-15
2254
2270
  platform_editor_fix_sticky_header_malfunction: (0, _experimentBuilders.createBooleanExperiment)({
2255
2271
  productKeys: {
@@ -2266,6 +2282,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2266
2282
  param: 'isEnabled',
2267
2283
  defaultValue: false
2268
2284
  }),
2285
+ // Added 2026-05-21
2286
+ fix_free_gen_prompt_bar_position: (0, _experimentBuilders.createBooleanExperiment)({
2287
+ productKeys: {
2288
+ confluence: 'fix_free_gen_prompt_bar_position'
2289
+ },
2290
+ param: 'isEnabled',
2291
+ defaultValue: false
2292
+ }),
2269
2293
  // Added 2026-05-25
2270
2294
  // HTML+ v2 incremental tool-call streaming contract — gates the new
2271
2295
  // PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
@@ -2278,5 +2302,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2278
2302
  },
2279
2303
  param: 'isEnabled',
2280
2304
  defaultValue: false
2305
+ }),
2306
+ platform_editor_wide_slash_trigger: (0, _experimentBuilders.createBooleanExperiment)({
2307
+ productKeys: {
2308
+ confluence: 'platform_editor_wide_slash_trigger'
2309
+ },
2310
+ param: 'isEnabled',
2311
+ defaultValue: false
2281
2312
  })
2282
2313
  };
@@ -461,6 +461,15 @@ export const editorExperimentsConfig = {
461
461
  param: 'isEnabled',
462
462
  defaultValue: false
463
463
  }),
464
+ // Added 2026-05-26
465
+ platform_editor_agent_mentions: createBooleanExperiment({
466
+ productKeys: {
467
+ confluence: 'platform_editor_agent_mentions',
468
+ jira: 'platform_editor_agent_mentions'
469
+ },
470
+ param: 'isEnabled',
471
+ defaultValue: false
472
+ }),
464
473
  // Added 2025-10-31
465
474
  platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
466
475
  productKeys: {
@@ -2244,6 +2253,13 @@ export const editorExperimentsConfig = {
2244
2253
  param: 'isEnabled',
2245
2254
  defaultValue: false
2246
2255
  }),
2256
+ platform_rovo_support_create_inline_comment: createBooleanExperiment({
2257
+ productKeys: {
2258
+ confluence: 'platform_rovo_support_create_inline_comment'
2259
+ },
2260
+ param: 'isEnabled',
2261
+ defaultValue: false
2262
+ }),
2247
2263
  // Added 2026-05-15
2248
2264
  platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
2249
2265
  productKeys: {
@@ -2260,6 +2276,14 @@ export const editorExperimentsConfig = {
2260
2276
  param: 'isEnabled',
2261
2277
  defaultValue: false
2262
2278
  }),
2279
+ // Added 2026-05-21
2280
+ fix_free_gen_prompt_bar_position: createBooleanExperiment({
2281
+ productKeys: {
2282
+ confluence: 'fix_free_gen_prompt_bar_position'
2283
+ },
2284
+ param: 'isEnabled',
2285
+ defaultValue: false
2286
+ }),
2263
2287
  // Added 2026-05-25
2264
2288
  // HTML+ v2 incremental tool-call streaming contract — gates the new
2265
2289
  // PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
@@ -2272,5 +2296,12 @@ export const editorExperimentsConfig = {
2272
2296
  },
2273
2297
  param: 'isEnabled',
2274
2298
  defaultValue: false
2299
+ }),
2300
+ platform_editor_wide_slash_trigger: createBooleanExperiment({
2301
+ productKeys: {
2302
+ confluence: 'platform_editor_wide_slash_trigger'
2303
+ },
2304
+ param: 'isEnabled',
2305
+ defaultValue: false
2275
2306
  })
2276
2307
  };
@@ -461,6 +461,15 @@ export var editorExperimentsConfig = {
461
461
  param: 'isEnabled',
462
462
  defaultValue: false
463
463
  }),
464
+ // Added 2026-05-26
465
+ platform_editor_agent_mentions: createBooleanExperiment({
466
+ productKeys: {
467
+ confluence: 'platform_editor_agent_mentions',
468
+ jira: 'platform_editor_agent_mentions'
469
+ },
470
+ param: 'isEnabled',
471
+ defaultValue: false
472
+ }),
464
473
  // Added 2025-10-31
465
474
  platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
466
475
  productKeys: {
@@ -2244,6 +2253,13 @@ export var editorExperimentsConfig = {
2244
2253
  param: 'isEnabled',
2245
2254
  defaultValue: false
2246
2255
  }),
2256
+ platform_rovo_support_create_inline_comment: createBooleanExperiment({
2257
+ productKeys: {
2258
+ confluence: 'platform_rovo_support_create_inline_comment'
2259
+ },
2260
+ param: 'isEnabled',
2261
+ defaultValue: false
2262
+ }),
2247
2263
  // Added 2026-05-15
2248
2264
  platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
2249
2265
  productKeys: {
@@ -2260,6 +2276,14 @@ export var editorExperimentsConfig = {
2260
2276
  param: 'isEnabled',
2261
2277
  defaultValue: false
2262
2278
  }),
2279
+ // Added 2026-05-21
2280
+ fix_free_gen_prompt_bar_position: createBooleanExperiment({
2281
+ productKeys: {
2282
+ confluence: 'fix_free_gen_prompt_bar_position'
2283
+ },
2284
+ param: 'isEnabled',
2285
+ defaultValue: false
2286
+ }),
2263
2287
  // Added 2026-05-25
2264
2288
  // HTML+ v2 incremental tool-call streaming contract — gates the new
2265
2289
  // PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
@@ -2272,5 +2296,12 @@ export var editorExperimentsConfig = {
2272
2296
  },
2273
2297
  param: 'isEnabled',
2274
2298
  defaultValue: false
2299
+ }),
2300
+ platform_editor_wide_slash_trigger: createBooleanExperiment({
2301
+ productKeys: {
2302
+ confluence: 'platform_editor_wide_slash_trigger'
2303
+ },
2304
+ param: 'isEnabled',
2305
+ defaultValue: false
2275
2306
  })
2276
2307
  };
@@ -566,6 +566,12 @@ export declare const editorExperimentsConfig: {
566
566
  productKeys?: ProductKeys;
567
567
  typeGuard: IsBooleanType;
568
568
  };
569
+ platform_editor_agent_mentions: {
570
+ defaultValue: boolean;
571
+ param: string;
572
+ productKeys?: ProductKeys;
573
+ typeGuard: IsBooleanType;
574
+ };
569
575
  platform_editor_pasting_text_in_panel: {
570
576
  defaultValue: boolean;
571
577
  param: string;
@@ -1658,17 +1664,35 @@ export declare const editorExperimentsConfig: {
1658
1664
  productKeys?: ProductKeys;
1659
1665
  typeGuard: IsBooleanType;
1660
1666
  };
1667
+ platform_rovo_support_create_inline_comment: {
1668
+ defaultValue: boolean;
1669
+ param: string;
1670
+ productKeys?: ProductKeys;
1671
+ typeGuard: IsBooleanType;
1672
+ };
1661
1673
  platform_editor_ai_improve_formatting_toolbar: {
1662
1674
  defaultValue: boolean;
1663
1675
  param: string;
1664
1676
  productKeys?: ProductKeys;
1665
1677
  typeGuard: IsBooleanType;
1666
1678
  };
1679
+ fix_free_gen_prompt_bar_position: {
1680
+ defaultValue: boolean;
1681
+ param: string;
1682
+ productKeys?: ProductKeys;
1683
+ typeGuard: IsBooleanType;
1684
+ };
1667
1685
  platform_editor_use_html_plus_streaming_parser: {
1668
1686
  defaultValue: boolean;
1669
1687
  param: string;
1670
1688
  productKeys?: ProductKeys;
1671
1689
  typeGuard: IsBooleanType;
1672
1690
  };
1691
+ platform_editor_wide_slash_trigger: {
1692
+ defaultValue: boolean;
1693
+ param: string;
1694
+ productKeys?: ProductKeys;
1695
+ typeGuard: IsBooleanType;
1696
+ };
1673
1697
  };
1674
1698
  export {};
@@ -566,6 +566,12 @@ export declare const editorExperimentsConfig: {
566
566
  productKeys?: ProductKeys;
567
567
  typeGuard: IsBooleanType;
568
568
  };
569
+ platform_editor_agent_mentions: {
570
+ defaultValue: boolean;
571
+ param: string;
572
+ productKeys?: ProductKeys;
573
+ typeGuard: IsBooleanType;
574
+ };
569
575
  platform_editor_pasting_text_in_panel: {
570
576
  defaultValue: boolean;
571
577
  param: string;
@@ -1658,17 +1664,35 @@ export declare const editorExperimentsConfig: {
1658
1664
  productKeys?: ProductKeys;
1659
1665
  typeGuard: IsBooleanType;
1660
1666
  };
1667
+ platform_rovo_support_create_inline_comment: {
1668
+ defaultValue: boolean;
1669
+ param: string;
1670
+ productKeys?: ProductKeys;
1671
+ typeGuard: IsBooleanType;
1672
+ };
1661
1673
  platform_editor_ai_improve_formatting_toolbar: {
1662
1674
  defaultValue: boolean;
1663
1675
  param: string;
1664
1676
  productKeys?: ProductKeys;
1665
1677
  typeGuard: IsBooleanType;
1666
1678
  };
1679
+ fix_free_gen_prompt_bar_position: {
1680
+ defaultValue: boolean;
1681
+ param: string;
1682
+ productKeys?: ProductKeys;
1683
+ typeGuard: IsBooleanType;
1684
+ };
1667
1685
  platform_editor_use_html_plus_streaming_parser: {
1668
1686
  defaultValue: boolean;
1669
1687
  param: string;
1670
1688
  productKeys?: ProductKeys;
1671
1689
  typeGuard: IsBooleanType;
1672
1690
  };
1691
+ platform_editor_wide_slash_trigger: {
1692
+ defaultValue: boolean;
1693
+ param: string;
1694
+ productKeys?: ProductKeys;
1695
+ typeGuard: IsBooleanType;
1696
+ };
1673
1697
  };
1674
1698
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "84.3.0",
3
+ "version": "84.3.2",
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",