@atlaskit/tmp-editor-statsig 13.33.0 → 13.35.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.35.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`f79abec64be13`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f79abec64be13) -
8
+ [EDITOR-2624] Add max width mode for ultra wide monitors to the Editor and Renderer
9
+
10
+ ## 13.34.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`83b11ab9079a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/83b11ab9079a9) -
15
+ EDITOR-2480 Enabled ADF prompts for all products behind new fg.
16
+
3
17
  ## 13.33.0
4
18
 
5
19
  ### Minor Changes
@@ -34,6 +34,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
34
34
  param: 'isEnabled',
35
35
  defaultValue: false
36
36
  }),
37
+ // Added 2025-11-03
38
+ editor_tinymce_full_width_mode: (0, _experimentBuilders.createBooleanExperiment)({
39
+ productKeys: {
40
+ confluence: 'editor_tinymce_full_width_mode'
41
+ },
42
+ param: 'isEnabled',
43
+ defaultValue: false
44
+ }),
37
45
  cc_editor_insm_doc_size_stats: (0, _experimentBuilders.createBooleanExperiment)({
38
46
  productKeys: {
39
47
  confluence: 'cc_editor_insm_doc_size_stats'
@@ -441,14 +449,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
441
449
  values: ['control', 'adf_gemini25flash', 'adf_gpt41mini'],
442
450
  defaultValue: 'control'
443
451
  }),
444
- // Added 2025-06-18
445
- platform_editor_ai_ct_sg_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
446
- productKeys: {
447
- confluence: 'platform_editor_ai_ct_sg_adf_streaming'
448
- },
449
- param: 'isEnabled',
450
- defaultValue: false
451
- }),
452
452
  // Added 2025-08-20
453
453
  platform_editor_ai_non_iw_adf_streaming: (0, _experimentBuilders.createMultivariateExperiment)({
454
454
  productKeys: {
@@ -28,6 +28,14 @@ export const editorExperimentsConfig = {
28
28
  param: 'isEnabled',
29
29
  defaultValue: false
30
30
  }),
31
+ // Added 2025-11-03
32
+ editor_tinymce_full_width_mode: createBooleanExperiment({
33
+ productKeys: {
34
+ confluence: 'editor_tinymce_full_width_mode'
35
+ },
36
+ param: 'isEnabled',
37
+ defaultValue: false
38
+ }),
31
39
  cc_editor_insm_doc_size_stats: createBooleanExperiment({
32
40
  productKeys: {
33
41
  confluence: 'cc_editor_insm_doc_size_stats'
@@ -435,14 +443,6 @@ export const editorExperimentsConfig = {
435
443
  values: ['control', 'adf_gemini25flash', 'adf_gpt41mini'],
436
444
  defaultValue: 'control'
437
445
  }),
438
- // Added 2025-06-18
439
- platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
440
- productKeys: {
441
- confluence: 'platform_editor_ai_ct_sg_adf_streaming'
442
- },
443
- param: 'isEnabled',
444
- defaultValue: false
445
- }),
446
446
  // Added 2025-08-20
447
447
  platform_editor_ai_non_iw_adf_streaming: createMultivariateExperiment({
448
448
  productKeys: {
@@ -28,6 +28,14 @@ export var editorExperimentsConfig = {
28
28
  param: 'isEnabled',
29
29
  defaultValue: false
30
30
  }),
31
+ // Added 2025-11-03
32
+ editor_tinymce_full_width_mode: createBooleanExperiment({
33
+ productKeys: {
34
+ confluence: 'editor_tinymce_full_width_mode'
35
+ },
36
+ param: 'isEnabled',
37
+ defaultValue: false
38
+ }),
31
39
  cc_editor_insm_doc_size_stats: createBooleanExperiment({
32
40
  productKeys: {
33
41
  confluence: 'cc_editor_insm_doc_size_stats'
@@ -435,14 +443,6 @@ export var editorExperimentsConfig = {
435
443
  values: ['control', 'adf_gemini25flash', 'adf_gpt41mini'],
436
444
  defaultValue: 'control'
437
445
  }),
438
- // Added 2025-06-18
439
- platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
440
- productKeys: {
441
- confluence: 'platform_editor_ai_ct_sg_adf_streaming'
442
- },
443
- param: 'isEnabled',
444
- defaultValue: false
445
- }),
446
446
  // Added 2025-08-20
447
447
  platform_editor_ai_non_iw_adf_streaming: createMultivariateExperiment({
448
448
  productKeys: {
@@ -17,6 +17,12 @@ export declare const editorExperimentsConfig: {
17
17
  param: string;
18
18
  productKeys?: import("./types").ProductKeys;
19
19
  };
20
+ editor_tinymce_full_width_mode: {
21
+ typeGuard: typeof import("./type-guards").isBoolean;
22
+ defaultValue: boolean;
23
+ param: string;
24
+ productKeys?: import("./types").ProductKeys;
25
+ };
20
26
  cc_editor_insm_doc_size_stats: {
21
27
  typeGuard: typeof import("./type-guards").isBoolean;
22
28
  defaultValue: boolean;
@@ -319,12 +325,6 @@ export declare const editorExperimentsConfig: {
319
325
  param: string;
320
326
  productKeys?: import("./types").ProductKeys;
321
327
  };
322
- platform_editor_ai_ct_sg_adf_streaming: {
323
- typeGuard: typeof import("./type-guards").isBoolean;
324
- defaultValue: boolean;
325
- param: string;
326
- productKeys?: import("./types").ProductKeys;
327
- };
328
328
  platform_editor_ai_non_iw_adf_streaming: {
329
329
  values: ("control" | "adf_gemini25flash" | "adf_gpt41mini")[];
330
330
  typeGuard: (value: unknown) => value is "control" | "adf_gemini25flash" | "adf_gpt41mini";
@@ -17,6 +17,12 @@ export declare const editorExperimentsConfig: {
17
17
  param: string;
18
18
  productKeys?: import("./types").ProductKeys;
19
19
  };
20
+ editor_tinymce_full_width_mode: {
21
+ typeGuard: typeof import("./type-guards").isBoolean;
22
+ defaultValue: boolean;
23
+ param: string;
24
+ productKeys?: import("./types").ProductKeys;
25
+ };
20
26
  cc_editor_insm_doc_size_stats: {
21
27
  typeGuard: typeof import("./type-guards").isBoolean;
22
28
  defaultValue: boolean;
@@ -319,12 +325,6 @@ export declare const editorExperimentsConfig: {
319
325
  param: string;
320
326
  productKeys?: import("./types").ProductKeys;
321
327
  };
322
- platform_editor_ai_ct_sg_adf_streaming: {
323
- typeGuard: typeof import("./type-guards").isBoolean;
324
- defaultValue: boolean;
325
- param: string;
326
- productKeys?: import("./types").ProductKeys;
327
- };
328
328
  platform_editor_ai_non_iw_adf_streaming: {
329
329
  values: ("control" | "adf_gemini25flash" | "adf_gpt41mini")[];
330
330
  typeGuard: (value: unknown) => value is "control" | "adf_gemini25flash" | "adf_gpt41mini";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.33.0",
3
+ "version": "13.35.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",