@atlaskit/tmp-editor-statsig 74.6.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 +9 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
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
|
+
|
|
3
12
|
## 74.6.0
|
|
4
13
|
|
|
5
14
|
### 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
|
};
|
|
@@ -503,6 +503,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
503
503
|
param: 'isEnabled',
|
|
504
504
|
defaultValue: false
|
|
505
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
|
+
}),
|
|
506
515
|
// Added 2025-07-14
|
|
507
516
|
platform_editor_debounce_portal_provider: (0, _experimentBuilders.createBooleanExperiment)({
|
|
508
517
|
productKeys: {
|
|
@@ -1991,6 +2000,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1991
2000
|
param: 'isEnabled',
|
|
1992
2001
|
defaultValue: false
|
|
1993
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
|
+
}),
|
|
1994
2011
|
// Added 2026-04-30
|
|
1995
2012
|
platform_editor_renderer_static_css: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1996
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
|
};
|
|
@@ -497,6 +497,15 @@ export const editorExperimentsConfig = {
|
|
|
497
497
|
param: 'isEnabled',
|
|
498
498
|
defaultValue: false
|
|
499
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
|
+
}),
|
|
500
509
|
// Added 2025-07-14
|
|
501
510
|
platform_editor_debounce_portal_provider: createBooleanExperiment({
|
|
502
511
|
productKeys: {
|
|
@@ -1985,6 +1994,14 @@ export const editorExperimentsConfig = {
|
|
|
1985
1994
|
param: 'isEnabled',
|
|
1986
1995
|
defaultValue: false
|
|
1987
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
|
+
}),
|
|
1988
2005
|
// Added 2026-04-30
|
|
1989
2006
|
platform_editor_renderer_static_css: createBooleanExperiment({
|
|
1990
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
|
};
|
|
@@ -497,6 +497,15 @@ export var editorExperimentsConfig = {
|
|
|
497
497
|
param: 'isEnabled',
|
|
498
498
|
defaultValue: false
|
|
499
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
|
+
}),
|
|
500
509
|
// Added 2025-07-14
|
|
501
510
|
platform_editor_debounce_portal_provider: createBooleanExperiment({
|
|
502
511
|
productKeys: {
|
|
@@ -1985,6 +1994,14 @@ export var editorExperimentsConfig = {
|
|
|
1985
1994
|
param: 'isEnabled',
|
|
1986
1995
|
defaultValue: false
|
|
1987
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
|
+
}),
|
|
1988
2005
|
// Added 2026-04-30
|
|
1989
2006
|
platform_editor_renderer_static_css: createBooleanExperiment({
|
|
1990
2007
|
productKeys: {
|
|
@@ -148,6 +148,12 @@ export declare const editorExperimentsConfig: {
|
|
|
148
148
|
productKeys?: ProductKeys;
|
|
149
149
|
typeGuard: IsBooleanType;
|
|
150
150
|
};
|
|
151
|
+
platform_editor_code_block_q4_lovability: {
|
|
152
|
+
defaultValue: boolean;
|
|
153
|
+
param: string;
|
|
154
|
+
productKeys?: ProductKeys;
|
|
155
|
+
typeGuard: IsBooleanType;
|
|
156
|
+
};
|
|
151
157
|
platform_editor_render_bodied_extension_as_inline: {
|
|
152
158
|
defaultValue: boolean;
|
|
153
159
|
param: string;
|
|
@@ -1428,6 +1434,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1428
1434
|
productKeys?: ProductKeys;
|
|
1429
1435
|
typeGuard: IsBooleanType;
|
|
1430
1436
|
};
|
|
1437
|
+
platform_editor_core_static_css: {
|
|
1438
|
+
defaultValue: boolean;
|
|
1439
|
+
param: string;
|
|
1440
|
+
productKeys?: ProductKeys;
|
|
1441
|
+
typeGuard: IsBooleanType;
|
|
1442
|
+
};
|
|
1431
1443
|
platform_editor_renderer_static_css: {
|
|
1432
1444
|
defaultValue: boolean;
|
|
1433
1445
|
param: string;
|
|
@@ -148,6 +148,12 @@ export declare const editorExperimentsConfig: {
|
|
|
148
148
|
productKeys?: ProductKeys;
|
|
149
149
|
typeGuard: IsBooleanType;
|
|
150
150
|
};
|
|
151
|
+
platform_editor_code_block_q4_lovability: {
|
|
152
|
+
defaultValue: boolean;
|
|
153
|
+
param: string;
|
|
154
|
+
productKeys?: ProductKeys;
|
|
155
|
+
typeGuard: IsBooleanType;
|
|
156
|
+
};
|
|
151
157
|
platform_editor_render_bodied_extension_as_inline: {
|
|
152
158
|
defaultValue: boolean;
|
|
153
159
|
param: string;
|
|
@@ -1428,6 +1434,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1428
1434
|
productKeys?: ProductKeys;
|
|
1429
1435
|
typeGuard: IsBooleanType;
|
|
1430
1436
|
};
|
|
1437
|
+
platform_editor_core_static_css: {
|
|
1438
|
+
defaultValue: boolean;
|
|
1439
|
+
param: string;
|
|
1440
|
+
productKeys?: ProductKeys;
|
|
1441
|
+
typeGuard: IsBooleanType;
|
|
1442
|
+
};
|
|
1431
1443
|
platform_editor_renderer_static_css: {
|
|
1432
1444
|
defaultValue: boolean;
|
|
1433
1445
|
param: string;
|
package/package.json
CHANGED