@atlaskit/tmp-editor-statsig 72.1.1 → 72.2.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +16 -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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 72.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e790234874a2a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e790234874a2a) -
|
|
8
|
+
[ux] The page selector dropdown in the "Create Confluence page comment" message action was not
|
|
9
|
+
stretching to fill the available width. The fix wraps the ConfluencePageSelector in a
|
|
10
|
+
MaybeContainer component that, when the platform_rovo_page_comment_selector_full_width experiment
|
|
11
|
+
is enabled, applies flexGrow: 1 to the wrapper box — causing the selector to expand and fill the
|
|
12
|
+
remaining horizontal space in its Inline container.
|
|
13
|
+
- [`7f1df88caac2a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f1df88caac2a) -
|
|
14
|
+
Add active cell highlight to table cells - highlights the current table cell when cursor is inside
|
|
15
|
+
it
|
|
16
|
+
|
|
3
17
|
## 72.1.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -53,5 +53,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
53
53
|
platform_editor_preserve_node_identity: false,
|
|
54
54
|
platform_editor_ai_rename_add_polish: false,
|
|
55
55
|
platform_editor_table_fit_to_content_on_demand: false,
|
|
56
|
-
platform_editor_table_fit_to_content_auto_convert: false
|
|
56
|
+
platform_editor_table_fit_to_content_auto_convert: false,
|
|
57
|
+
platform_editor_table_q4_loveability: false
|
|
57
58
|
};
|
|
@@ -1316,6 +1316,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1316
1316
|
param: 'isEnabled',
|
|
1317
1317
|
defaultValue: false
|
|
1318
1318
|
}),
|
|
1319
|
+
// Added 2026-04-24
|
|
1320
|
+
platform_rovo_page_comment_selector_full_width: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1321
|
+
productKeys: {
|
|
1322
|
+
confluence: 'platform_rovo_page_comment_selector_full_width'
|
|
1323
|
+
},
|
|
1324
|
+
param: 'isEnabled',
|
|
1325
|
+
defaultValue: false
|
|
1326
|
+
}),
|
|
1319
1327
|
// Added 2026-02-12
|
|
1320
1328
|
platform_editor_bodiedextension_layoutshift_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1321
1329
|
productKeys: {
|
|
@@ -1985,6 +1993,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1985
1993
|
param: 'isEnabled',
|
|
1986
1994
|
defaultValue: false
|
|
1987
1995
|
}),
|
|
1996
|
+
platform_editor_table_q4_loveability: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1997
|
+
productKeys: {
|
|
1998
|
+
confluence: 'platform_editor_table_q4_loveability',
|
|
1999
|
+
jira: 'platform_editor_table_q4_loveability'
|
|
2000
|
+
},
|
|
2001
|
+
param: 'isEnabled',
|
|
2002
|
+
defaultValue: false
|
|
2003
|
+
}),
|
|
1988
2004
|
// Added 2026-04-14
|
|
1989
2005
|
platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1990
2006
|
productKeys: {
|
|
@@ -47,5 +47,6 @@ export const testBooleanOverrides = {
|
|
|
47
47
|
platform_editor_preserve_node_identity: false,
|
|
48
48
|
platform_editor_ai_rename_add_polish: false,
|
|
49
49
|
platform_editor_table_fit_to_content_on_demand: false,
|
|
50
|
-
platform_editor_table_fit_to_content_auto_convert: false
|
|
50
|
+
platform_editor_table_fit_to_content_auto_convert: false,
|
|
51
|
+
platform_editor_table_q4_loveability: false
|
|
51
52
|
};
|
|
@@ -1310,6 +1310,14 @@ export const editorExperimentsConfig = {
|
|
|
1310
1310
|
param: 'isEnabled',
|
|
1311
1311
|
defaultValue: false
|
|
1312
1312
|
}),
|
|
1313
|
+
// Added 2026-04-24
|
|
1314
|
+
platform_rovo_page_comment_selector_full_width: createBooleanExperiment({
|
|
1315
|
+
productKeys: {
|
|
1316
|
+
confluence: 'platform_rovo_page_comment_selector_full_width'
|
|
1317
|
+
},
|
|
1318
|
+
param: 'isEnabled',
|
|
1319
|
+
defaultValue: false
|
|
1320
|
+
}),
|
|
1313
1321
|
// Added 2026-02-12
|
|
1314
1322
|
platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
|
|
1315
1323
|
productKeys: {
|
|
@@ -1979,6 +1987,14 @@ export const editorExperimentsConfig = {
|
|
|
1979
1987
|
param: 'isEnabled',
|
|
1980
1988
|
defaultValue: false
|
|
1981
1989
|
}),
|
|
1990
|
+
platform_editor_table_q4_loveability: createBooleanExperiment({
|
|
1991
|
+
productKeys: {
|
|
1992
|
+
confluence: 'platform_editor_table_q4_loveability',
|
|
1993
|
+
jira: 'platform_editor_table_q4_loveability'
|
|
1994
|
+
},
|
|
1995
|
+
param: 'isEnabled',
|
|
1996
|
+
defaultValue: false
|
|
1997
|
+
}),
|
|
1982
1998
|
// Added 2026-04-14
|
|
1983
1999
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
1984
2000
|
productKeys: {
|
|
@@ -47,5 +47,6 @@ export var testBooleanOverrides = {
|
|
|
47
47
|
platform_editor_preserve_node_identity: false,
|
|
48
48
|
platform_editor_ai_rename_add_polish: false,
|
|
49
49
|
platform_editor_table_fit_to_content_on_demand: false,
|
|
50
|
-
platform_editor_table_fit_to_content_auto_convert: false
|
|
50
|
+
platform_editor_table_fit_to_content_auto_convert: false,
|
|
51
|
+
platform_editor_table_q4_loveability: false
|
|
51
52
|
};
|
|
@@ -1310,6 +1310,14 @@ export var editorExperimentsConfig = {
|
|
|
1310
1310
|
param: 'isEnabled',
|
|
1311
1311
|
defaultValue: false
|
|
1312
1312
|
}),
|
|
1313
|
+
// Added 2026-04-24
|
|
1314
|
+
platform_rovo_page_comment_selector_full_width: createBooleanExperiment({
|
|
1315
|
+
productKeys: {
|
|
1316
|
+
confluence: 'platform_rovo_page_comment_selector_full_width'
|
|
1317
|
+
},
|
|
1318
|
+
param: 'isEnabled',
|
|
1319
|
+
defaultValue: false
|
|
1320
|
+
}),
|
|
1313
1321
|
// Added 2026-02-12
|
|
1314
1322
|
platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
|
|
1315
1323
|
productKeys: {
|
|
@@ -1979,6 +1987,14 @@ export var editorExperimentsConfig = {
|
|
|
1979
1987
|
param: 'isEnabled',
|
|
1980
1988
|
defaultValue: false
|
|
1981
1989
|
}),
|
|
1990
|
+
platform_editor_table_q4_loveability: createBooleanExperiment({
|
|
1991
|
+
productKeys: {
|
|
1992
|
+
confluence: 'platform_editor_table_q4_loveability',
|
|
1993
|
+
jira: 'platform_editor_table_q4_loveability'
|
|
1994
|
+
},
|
|
1995
|
+
param: 'isEnabled',
|
|
1996
|
+
defaultValue: false
|
|
1997
|
+
}),
|
|
1982
1998
|
// Added 2026-04-14
|
|
1983
1999
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
1984
2000
|
productKeys: {
|
|
@@ -972,6 +972,12 @@ export declare const editorExperimentsConfig: {
|
|
|
972
972
|
productKeys?: ProductKeys;
|
|
973
973
|
typeGuard: IsBooleanType;
|
|
974
974
|
};
|
|
975
|
+
platform_rovo_page_comment_selector_full_width: {
|
|
976
|
+
defaultValue: boolean;
|
|
977
|
+
param: string;
|
|
978
|
+
productKeys?: ProductKeys;
|
|
979
|
+
typeGuard: IsBooleanType;
|
|
980
|
+
};
|
|
975
981
|
platform_editor_bodiedextension_layoutshift_fix: {
|
|
976
982
|
defaultValue: boolean;
|
|
977
983
|
param: string;
|
|
@@ -1452,6 +1458,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1452
1458
|
productKeys?: ProductKeys;
|
|
1453
1459
|
typeGuard: IsBooleanType;
|
|
1454
1460
|
};
|
|
1461
|
+
platform_editor_table_q4_loveability: {
|
|
1462
|
+
defaultValue: boolean;
|
|
1463
|
+
param: string;
|
|
1464
|
+
productKeys?: ProductKeys;
|
|
1465
|
+
typeGuard: IsBooleanType;
|
|
1466
|
+
};
|
|
1455
1467
|
platform_editor_ai_rename_add_polish: {
|
|
1456
1468
|
defaultValue: boolean;
|
|
1457
1469
|
param: string;
|
|
@@ -972,6 +972,12 @@ export declare const editorExperimentsConfig: {
|
|
|
972
972
|
productKeys?: ProductKeys;
|
|
973
973
|
typeGuard: IsBooleanType;
|
|
974
974
|
};
|
|
975
|
+
platform_rovo_page_comment_selector_full_width: {
|
|
976
|
+
defaultValue: boolean;
|
|
977
|
+
param: string;
|
|
978
|
+
productKeys?: ProductKeys;
|
|
979
|
+
typeGuard: IsBooleanType;
|
|
980
|
+
};
|
|
975
981
|
platform_editor_bodiedextension_layoutshift_fix: {
|
|
976
982
|
defaultValue: boolean;
|
|
977
983
|
param: string;
|
|
@@ -1452,6 +1458,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1452
1458
|
productKeys?: ProductKeys;
|
|
1453
1459
|
typeGuard: IsBooleanType;
|
|
1454
1460
|
};
|
|
1461
|
+
platform_editor_table_q4_loveability: {
|
|
1462
|
+
defaultValue: boolean;
|
|
1463
|
+
param: string;
|
|
1464
|
+
productKeys?: ProductKeys;
|
|
1465
|
+
typeGuard: IsBooleanType;
|
|
1466
|
+
};
|
|
1455
1467
|
platform_editor_ai_rename_add_polish: {
|
|
1456
1468
|
defaultValue: boolean;
|
|
1457
1469
|
param: string;
|
package/package.json
CHANGED