@atlaskit/tmp-editor-statsig 74.5.0 → 74.7.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 74.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`fbd4e856632eb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fbd4e856632eb) -
8
+ migrate few styles in EditorContentContainer from emotion to compiled
9
+ - [`2fb1c8a74a856`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2fb1c8a74a856) -
10
+ ADF Change 101: Add wrap and hideLineNumbers attributes to codeBlock stage-0 variants
11
+
12
+ ## 74.6.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`2bc197b19a9da`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2bc197b19a9da) -
17
+ [ux] Auto-finalize only when the default space supports the content type being created. When space
18
+ does not support said content type, defaultSpaceOption will be { label: undefined, value:
19
+ undefined }, so we explicitly check for its value before determining whether auto finalize should
20
+ be allowed
21
+
3
22
  ## 74.5.0
4
23
 
5
24
  ### Minor Changes
@@ -54,5 +54,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
54
54
  platform_editor_ai_rename_add_polish: false,
55
55
  platform_editor_table_fit_to_content_on_demand: false,
56
56
  platform_editor_table_fit_to_content_auto_convert: false,
57
- platform_editor_table_q4_loveability: false
57
+ platform_editor_table_q4_loveability: false,
58
+ platform_editor_core_static_css: false
58
59
  };
@@ -46,6 +46,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
46
46
  param: 'isEnabled',
47
47
  defaultValue: false
48
48
  }),
49
+ // Added 2026-04-21
50
+ cwr_page_tree_auto_finalize: (0, _experimentBuilders.createBooleanExperiment)({
51
+ productKeys: {
52
+ confluence: 'cwr_page_tree_auto_finalize'
53
+ },
54
+ param: 'isEnabled',
55
+ defaultValue: false
56
+ }),
49
57
  // Added 22-12-2025
50
58
  confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
51
59
  productKeys: {
@@ -495,6 +503,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
495
503
  param: 'isEnabled',
496
504
  defaultValue: false
497
505
  }),
506
+ // Added 2026-04-30
507
+ platform_editor_code_block_q4_lovability: (0, _experimentBuilders.createBooleanExperiment)({
508
+ productKeys: {
509
+ confluence: 'platform_editor_code_block_q4_lovability',
510
+ jira: 'platform_editor_code_block_q4_lovability'
511
+ },
512
+ param: 'isEnabled',
513
+ defaultValue: false
514
+ }),
498
515
  // Added 2025-07-14
499
516
  platform_editor_debounce_portal_provider: (0, _experimentBuilders.createBooleanExperiment)({
500
517
  productKeys: {
@@ -1983,6 +2000,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1983
2000
  param: 'isEnabled',
1984
2001
  defaultValue: false
1985
2002
  }),
2003
+ // Added 2026-05-01
2004
+ platform_editor_core_static_css: (0, _experimentBuilders.createBooleanExperiment)({
2005
+ productKeys: {
2006
+ confluence: 'platform_editor_core_static_css'
2007
+ },
2008
+ param: 'isEnabled',
2009
+ defaultValue: false
2010
+ }),
1986
2011
  // Added 2026-04-30
1987
2012
  platform_editor_renderer_static_css: (0, _experimentBuilders.createBooleanExperiment)({
1988
2013
  productKeys: {
@@ -48,5 +48,6 @@ export const testBooleanOverrides = {
48
48
  platform_editor_ai_rename_add_polish: false,
49
49
  platform_editor_table_fit_to_content_on_demand: false,
50
50
  platform_editor_table_fit_to_content_auto_convert: false,
51
- platform_editor_table_q4_loveability: false
51
+ platform_editor_table_q4_loveability: false,
52
+ platform_editor_core_static_css: false
52
53
  };
@@ -40,6 +40,14 @@ export const editorExperimentsConfig = {
40
40
  param: 'isEnabled',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 2026-04-21
44
+ cwr_page_tree_auto_finalize: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'cwr_page_tree_auto_finalize'
47
+ },
48
+ param: 'isEnabled',
49
+ defaultValue: false
50
+ }),
43
51
  // Added 22-12-2025
44
52
  confluence_load_editor_title_on_transition: createBooleanExperiment({
45
53
  productKeys: {
@@ -489,6 +497,15 @@ export const editorExperimentsConfig = {
489
497
  param: 'isEnabled',
490
498
  defaultValue: false
491
499
  }),
500
+ // Added 2026-04-30
501
+ platform_editor_code_block_q4_lovability: createBooleanExperiment({
502
+ productKeys: {
503
+ confluence: 'platform_editor_code_block_q4_lovability',
504
+ jira: 'platform_editor_code_block_q4_lovability'
505
+ },
506
+ param: 'isEnabled',
507
+ defaultValue: false
508
+ }),
492
509
  // Added 2025-07-14
493
510
  platform_editor_debounce_portal_provider: createBooleanExperiment({
494
511
  productKeys: {
@@ -1977,6 +1994,14 @@ export const editorExperimentsConfig = {
1977
1994
  param: 'isEnabled',
1978
1995
  defaultValue: false
1979
1996
  }),
1997
+ // Added 2026-05-01
1998
+ platform_editor_core_static_css: createBooleanExperiment({
1999
+ productKeys: {
2000
+ confluence: 'platform_editor_core_static_css'
2001
+ },
2002
+ param: 'isEnabled',
2003
+ defaultValue: false
2004
+ }),
1980
2005
  // Added 2026-04-30
1981
2006
  platform_editor_renderer_static_css: createBooleanExperiment({
1982
2007
  productKeys: {
@@ -48,5 +48,6 @@ export var testBooleanOverrides = {
48
48
  platform_editor_ai_rename_add_polish: false,
49
49
  platform_editor_table_fit_to_content_on_demand: false,
50
50
  platform_editor_table_fit_to_content_auto_convert: false,
51
- platform_editor_table_q4_loveability: false
51
+ platform_editor_table_q4_loveability: false,
52
+ platform_editor_core_static_css: false
52
53
  };
@@ -40,6 +40,14 @@ export var editorExperimentsConfig = {
40
40
  param: 'isEnabled',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 2026-04-21
44
+ cwr_page_tree_auto_finalize: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'cwr_page_tree_auto_finalize'
47
+ },
48
+ param: 'isEnabled',
49
+ defaultValue: false
50
+ }),
43
51
  // Added 22-12-2025
44
52
  confluence_load_editor_title_on_transition: createBooleanExperiment({
45
53
  productKeys: {
@@ -489,6 +497,15 @@ export var editorExperimentsConfig = {
489
497
  param: 'isEnabled',
490
498
  defaultValue: false
491
499
  }),
500
+ // Added 2026-04-30
501
+ platform_editor_code_block_q4_lovability: createBooleanExperiment({
502
+ productKeys: {
503
+ confluence: 'platform_editor_code_block_q4_lovability',
504
+ jira: 'platform_editor_code_block_q4_lovability'
505
+ },
506
+ param: 'isEnabled',
507
+ defaultValue: false
508
+ }),
492
509
  // Added 2025-07-14
493
510
  platform_editor_debounce_portal_provider: createBooleanExperiment({
494
511
  productKeys: {
@@ -1977,6 +1994,14 @@ export var editorExperimentsConfig = {
1977
1994
  param: 'isEnabled',
1978
1995
  defaultValue: false
1979
1996
  }),
1997
+ // Added 2026-05-01
1998
+ platform_editor_core_static_css: createBooleanExperiment({
1999
+ productKeys: {
2000
+ confluence: 'platform_editor_core_static_css'
2001
+ },
2002
+ param: 'isEnabled',
2003
+ defaultValue: false
2004
+ }),
1980
2005
  // Added 2026-04-30
1981
2006
  platform_editor_renderer_static_css: createBooleanExperiment({
1982
2007
  productKeys: {
@@ -32,6 +32,12 @@ export declare const editorExperimentsConfig: {
32
32
  productKeys?: ProductKeys;
33
33
  typeGuard: IsBooleanType;
34
34
  };
35
+ cwr_page_tree_auto_finalize: {
36
+ defaultValue: boolean;
37
+ param: string;
38
+ productKeys?: ProductKeys;
39
+ typeGuard: IsBooleanType;
40
+ };
35
41
  cc_editor_ai_content_mode: {
36
42
  defaultValue: 'control' | 'test';
37
43
  param: string;
@@ -142,6 +148,12 @@ export declare const editorExperimentsConfig: {
142
148
  productKeys?: ProductKeys;
143
149
  typeGuard: IsBooleanType;
144
150
  };
151
+ platform_editor_code_block_q4_lovability: {
152
+ defaultValue: boolean;
153
+ param: string;
154
+ productKeys?: ProductKeys;
155
+ typeGuard: IsBooleanType;
156
+ };
145
157
  platform_editor_render_bodied_extension_as_inline: {
146
158
  defaultValue: boolean;
147
159
  param: string;
@@ -1422,6 +1434,12 @@ export declare const editorExperimentsConfig: {
1422
1434
  productKeys?: ProductKeys;
1423
1435
  typeGuard: IsBooleanType;
1424
1436
  };
1437
+ platform_editor_core_static_css: {
1438
+ defaultValue: boolean;
1439
+ param: string;
1440
+ productKeys?: ProductKeys;
1441
+ typeGuard: IsBooleanType;
1442
+ };
1425
1443
  platform_editor_renderer_static_css: {
1426
1444
  defaultValue: boolean;
1427
1445
  param: string;
@@ -32,6 +32,12 @@ export declare const editorExperimentsConfig: {
32
32
  productKeys?: ProductKeys;
33
33
  typeGuard: IsBooleanType;
34
34
  };
35
+ cwr_page_tree_auto_finalize: {
36
+ defaultValue: boolean;
37
+ param: string;
38
+ productKeys?: ProductKeys;
39
+ typeGuard: IsBooleanType;
40
+ };
35
41
  cc_editor_ai_content_mode: {
36
42
  defaultValue: 'control' | 'test';
37
43
  param: string;
@@ -142,6 +148,12 @@ export declare const editorExperimentsConfig: {
142
148
  productKeys?: ProductKeys;
143
149
  typeGuard: IsBooleanType;
144
150
  };
151
+ platform_editor_code_block_q4_lovability: {
152
+ defaultValue: boolean;
153
+ param: string;
154
+ productKeys?: ProductKeys;
155
+ typeGuard: IsBooleanType;
156
+ };
145
157
  platform_editor_render_bodied_extension_as_inline: {
146
158
  defaultValue: boolean;
147
159
  param: string;
@@ -1422,6 +1434,12 @@ export declare const editorExperimentsConfig: {
1422
1434
  productKeys?: ProductKeys;
1423
1435
  typeGuard: IsBooleanType;
1424
1436
  };
1437
+ platform_editor_core_static_css: {
1438
+ defaultValue: boolean;
1439
+ param: string;
1440
+ productKeys?: ProductKeys;
1441
+ typeGuard: IsBooleanType;
1442
+ };
1425
1443
  platform_editor_renderer_static_css: {
1426
1444
  defaultValue: boolean;
1427
1445
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "74.5.0",
3
+ "version": "74.7.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",