@atlaskit/tmp-editor-statsig 72.1.1 → 73.0.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 +27 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +16 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +16 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +16 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 73.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`b3e797be9eed5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b3e797be9eed5) -
|
|
8
|
+
Clean up platform_editor_floating_toolbar_button_aria_label experiment.
|
|
9
|
+
- Remove expValEquals gate in editor-plugin-floating-toolbar Toolbar.tsx, always pass
|
|
10
|
+
ariaLabel={item?.ariaLabel}
|
|
11
|
+
- Remove expValEquals gate in editor-plugin-ai floating-toolbar-button.tsx, always set ariaLabel
|
|
12
|
+
to formatted message
|
|
13
|
+
- Remove type definition and createBooleanExperiment config entry from tmp-editor-statsig
|
|
14
|
+
experiments-config.ts
|
|
15
|
+
|
|
16
|
+
## 72.2.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [`e790234874a2a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e790234874a2a) -
|
|
21
|
+
[ux] The page selector dropdown in the "Create Confluence page comment" message action was not
|
|
22
|
+
stretching to fill the available width. The fix wraps the ConfluencePageSelector in a
|
|
23
|
+
MaybeContainer component that, when the platform_rovo_page_comment_selector_full_width experiment
|
|
24
|
+
is enabled, applies flexGrow: 1 to the wrapper box — causing the selector to expand and fill the
|
|
25
|
+
remaining horizontal space in its Inline container.
|
|
26
|
+
- [`7f1df88caac2a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f1df88caac2a) -
|
|
27
|
+
Add active cell highlight to table cells - highlights the current table cell when cursor is inside
|
|
28
|
+
it
|
|
29
|
+
|
|
3
30
|
## 72.1.1
|
|
4
31
|
|
|
5
32
|
### 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
|
};
|
|
@@ -680,14 +680,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
680
680
|
param: 'isEnabled',
|
|
681
681
|
defaultValue: false
|
|
682
682
|
}),
|
|
683
|
-
// Added 2025-08-04
|
|
684
|
-
platform_editor_floating_toolbar_button_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
|
|
685
|
-
productKeys: {
|
|
686
|
-
confluence: 'platform_editor_floating_toolbar_button_aria_label'
|
|
687
|
-
},
|
|
688
|
-
param: 'isEnabled',
|
|
689
|
-
defaultValue: false
|
|
690
|
-
}),
|
|
691
683
|
// Added 2025-07-31
|
|
692
684
|
platform_editor_breakout_interaction_rerender: (0, _experimentBuilders.createBooleanExperiment)({
|
|
693
685
|
productKeys: {
|
|
@@ -1316,6 +1308,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1316
1308
|
param: 'isEnabled',
|
|
1317
1309
|
defaultValue: false
|
|
1318
1310
|
}),
|
|
1311
|
+
// Added 2026-04-24
|
|
1312
|
+
platform_rovo_page_comment_selector_full_width: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1313
|
+
productKeys: {
|
|
1314
|
+
confluence: 'platform_rovo_page_comment_selector_full_width'
|
|
1315
|
+
},
|
|
1316
|
+
param: 'isEnabled',
|
|
1317
|
+
defaultValue: false
|
|
1318
|
+
}),
|
|
1319
1319
|
// Added 2026-02-12
|
|
1320
1320
|
platform_editor_bodiedextension_layoutshift_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1321
1321
|
productKeys: {
|
|
@@ -1985,6 +1985,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1985
1985
|
param: 'isEnabled',
|
|
1986
1986
|
defaultValue: false
|
|
1987
1987
|
}),
|
|
1988
|
+
platform_editor_table_q4_loveability: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1989
|
+
productKeys: {
|
|
1990
|
+
confluence: 'platform_editor_table_q4_loveability',
|
|
1991
|
+
jira: 'platform_editor_table_q4_loveability'
|
|
1992
|
+
},
|
|
1993
|
+
param: 'isEnabled',
|
|
1994
|
+
defaultValue: false
|
|
1995
|
+
}),
|
|
1988
1996
|
// Added 2026-04-14
|
|
1989
1997
|
platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1990
1998
|
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
|
};
|
|
@@ -674,14 +674,6 @@ export const editorExperimentsConfig = {
|
|
|
674
674
|
param: 'isEnabled',
|
|
675
675
|
defaultValue: false
|
|
676
676
|
}),
|
|
677
|
-
// Added 2025-08-04
|
|
678
|
-
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
679
|
-
productKeys: {
|
|
680
|
-
confluence: 'platform_editor_floating_toolbar_button_aria_label'
|
|
681
|
-
},
|
|
682
|
-
param: 'isEnabled',
|
|
683
|
-
defaultValue: false
|
|
684
|
-
}),
|
|
685
677
|
// Added 2025-07-31
|
|
686
678
|
platform_editor_breakout_interaction_rerender: createBooleanExperiment({
|
|
687
679
|
productKeys: {
|
|
@@ -1310,6 +1302,14 @@ export const editorExperimentsConfig = {
|
|
|
1310
1302
|
param: 'isEnabled',
|
|
1311
1303
|
defaultValue: false
|
|
1312
1304
|
}),
|
|
1305
|
+
// Added 2026-04-24
|
|
1306
|
+
platform_rovo_page_comment_selector_full_width: createBooleanExperiment({
|
|
1307
|
+
productKeys: {
|
|
1308
|
+
confluence: 'platform_rovo_page_comment_selector_full_width'
|
|
1309
|
+
},
|
|
1310
|
+
param: 'isEnabled',
|
|
1311
|
+
defaultValue: false
|
|
1312
|
+
}),
|
|
1313
1313
|
// Added 2026-02-12
|
|
1314
1314
|
platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
|
|
1315
1315
|
productKeys: {
|
|
@@ -1979,6 +1979,14 @@ export const editorExperimentsConfig = {
|
|
|
1979
1979
|
param: 'isEnabled',
|
|
1980
1980
|
defaultValue: false
|
|
1981
1981
|
}),
|
|
1982
|
+
platform_editor_table_q4_loveability: createBooleanExperiment({
|
|
1983
|
+
productKeys: {
|
|
1984
|
+
confluence: 'platform_editor_table_q4_loveability',
|
|
1985
|
+
jira: 'platform_editor_table_q4_loveability'
|
|
1986
|
+
},
|
|
1987
|
+
param: 'isEnabled',
|
|
1988
|
+
defaultValue: false
|
|
1989
|
+
}),
|
|
1982
1990
|
// Added 2026-04-14
|
|
1983
1991
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
1984
1992
|
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
|
};
|
|
@@ -674,14 +674,6 @@ export var editorExperimentsConfig = {
|
|
|
674
674
|
param: 'isEnabled',
|
|
675
675
|
defaultValue: false
|
|
676
676
|
}),
|
|
677
|
-
// Added 2025-08-04
|
|
678
|
-
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
679
|
-
productKeys: {
|
|
680
|
-
confluence: 'platform_editor_floating_toolbar_button_aria_label'
|
|
681
|
-
},
|
|
682
|
-
param: 'isEnabled',
|
|
683
|
-
defaultValue: false
|
|
684
|
-
}),
|
|
685
677
|
// Added 2025-07-31
|
|
686
678
|
platform_editor_breakout_interaction_rerender: createBooleanExperiment({
|
|
687
679
|
productKeys: {
|
|
@@ -1310,6 +1302,14 @@ export var editorExperimentsConfig = {
|
|
|
1310
1302
|
param: 'isEnabled',
|
|
1311
1303
|
defaultValue: false
|
|
1312
1304
|
}),
|
|
1305
|
+
// Added 2026-04-24
|
|
1306
|
+
platform_rovo_page_comment_selector_full_width: createBooleanExperiment({
|
|
1307
|
+
productKeys: {
|
|
1308
|
+
confluence: 'platform_rovo_page_comment_selector_full_width'
|
|
1309
|
+
},
|
|
1310
|
+
param: 'isEnabled',
|
|
1311
|
+
defaultValue: false
|
|
1312
|
+
}),
|
|
1313
1313
|
// Added 2026-02-12
|
|
1314
1314
|
platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
|
|
1315
1315
|
productKeys: {
|
|
@@ -1979,6 +1979,14 @@ export var editorExperimentsConfig = {
|
|
|
1979
1979
|
param: 'isEnabled',
|
|
1980
1980
|
defaultValue: false
|
|
1981
1981
|
}),
|
|
1982
|
+
platform_editor_table_q4_loveability: createBooleanExperiment({
|
|
1983
|
+
productKeys: {
|
|
1984
|
+
confluence: 'platform_editor_table_q4_loveability',
|
|
1985
|
+
jira: 'platform_editor_table_q4_loveability'
|
|
1986
|
+
},
|
|
1987
|
+
param: 'isEnabled',
|
|
1988
|
+
defaultValue: false
|
|
1989
|
+
}),
|
|
1982
1990
|
// Added 2026-04-14
|
|
1983
1991
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
1984
1992
|
productKeys: {
|
|
@@ -451,12 +451,6 @@ export declare const editorExperimentsConfig: {
|
|
|
451
451
|
productKeys?: ProductKeys;
|
|
452
452
|
typeGuard: IsBooleanType;
|
|
453
453
|
};
|
|
454
|
-
platform_editor_floating_toolbar_button_aria_label: {
|
|
455
|
-
defaultValue: boolean;
|
|
456
|
-
param: string;
|
|
457
|
-
productKeys?: ProductKeys;
|
|
458
|
-
typeGuard: IsBooleanType;
|
|
459
|
-
};
|
|
460
454
|
platform_editor_inline_card_dispatch_guard: {
|
|
461
455
|
defaultValue: boolean;
|
|
462
456
|
param: string;
|
|
@@ -972,6 +966,12 @@ export declare const editorExperimentsConfig: {
|
|
|
972
966
|
productKeys?: ProductKeys;
|
|
973
967
|
typeGuard: IsBooleanType;
|
|
974
968
|
};
|
|
969
|
+
platform_rovo_page_comment_selector_full_width: {
|
|
970
|
+
defaultValue: boolean;
|
|
971
|
+
param: string;
|
|
972
|
+
productKeys?: ProductKeys;
|
|
973
|
+
typeGuard: IsBooleanType;
|
|
974
|
+
};
|
|
975
975
|
platform_editor_bodiedextension_layoutshift_fix: {
|
|
976
976
|
defaultValue: boolean;
|
|
977
977
|
param: string;
|
|
@@ -1452,6 +1452,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1452
1452
|
productKeys?: ProductKeys;
|
|
1453
1453
|
typeGuard: IsBooleanType;
|
|
1454
1454
|
};
|
|
1455
|
+
platform_editor_table_q4_loveability: {
|
|
1456
|
+
defaultValue: boolean;
|
|
1457
|
+
param: string;
|
|
1458
|
+
productKeys?: ProductKeys;
|
|
1459
|
+
typeGuard: IsBooleanType;
|
|
1460
|
+
};
|
|
1455
1461
|
platform_editor_ai_rename_add_polish: {
|
|
1456
1462
|
defaultValue: boolean;
|
|
1457
1463
|
param: string;
|
|
@@ -451,12 +451,6 @@ export declare const editorExperimentsConfig: {
|
|
|
451
451
|
productKeys?: ProductKeys;
|
|
452
452
|
typeGuard: IsBooleanType;
|
|
453
453
|
};
|
|
454
|
-
platform_editor_floating_toolbar_button_aria_label: {
|
|
455
|
-
defaultValue: boolean;
|
|
456
|
-
param: string;
|
|
457
|
-
productKeys?: ProductKeys;
|
|
458
|
-
typeGuard: IsBooleanType;
|
|
459
|
-
};
|
|
460
454
|
platform_editor_inline_card_dispatch_guard: {
|
|
461
455
|
defaultValue: boolean;
|
|
462
456
|
param: string;
|
|
@@ -972,6 +966,12 @@ export declare const editorExperimentsConfig: {
|
|
|
972
966
|
productKeys?: ProductKeys;
|
|
973
967
|
typeGuard: IsBooleanType;
|
|
974
968
|
};
|
|
969
|
+
platform_rovo_page_comment_selector_full_width: {
|
|
970
|
+
defaultValue: boolean;
|
|
971
|
+
param: string;
|
|
972
|
+
productKeys?: ProductKeys;
|
|
973
|
+
typeGuard: IsBooleanType;
|
|
974
|
+
};
|
|
975
975
|
platform_editor_bodiedextension_layoutshift_fix: {
|
|
976
976
|
defaultValue: boolean;
|
|
977
977
|
param: string;
|
|
@@ -1452,6 +1452,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1452
1452
|
productKeys?: ProductKeys;
|
|
1453
1453
|
typeGuard: IsBooleanType;
|
|
1454
1454
|
};
|
|
1455
|
+
platform_editor_table_q4_loveability: {
|
|
1456
|
+
defaultValue: boolean;
|
|
1457
|
+
param: string;
|
|
1458
|
+
productKeys?: ProductKeys;
|
|
1459
|
+
typeGuard: IsBooleanType;
|
|
1460
|
+
};
|
|
1455
1461
|
platform_editor_ai_rename_add_polish: {
|
|
1456
1462
|
defaultValue: boolean;
|
|
1457
1463
|
param: string;
|
package/package.json
CHANGED