@atlaskit/tmp-editor-statsig 132.0.0 → 132.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 +20 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 132.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d6d4b831bab67`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d6d4b831bab67) -
|
|
8
|
+
[ux] Implements collapsible headings feature for the full-page renderer.
|
|
9
|
+
|
|
10
|
+
## 132.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`08b7535d56701`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/08b7535d56701) -
|
|
15
|
+
Disable sticky headers for single-row tables and delay sticky corner masks until the native header
|
|
16
|
+
is active behind the table Q4 patch 4 experiment
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [`00f3166426df4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/00f3166426df4) -
|
|
21
|
+
adopt cssMapScoped for editor core compiled css migration
|
|
22
|
+
|
|
3
23
|
## 132.0.0
|
|
4
24
|
|
|
5
25
|
### Major Changes
|
|
@@ -56,7 +56,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
56
56
|
platform_editor_table_fit_to_content_auto_convert: false,
|
|
57
57
|
platform_editor_table_q4_loveability: false,
|
|
58
58
|
platform_editor_table_menu_updates: false,
|
|
59
|
-
platform_editor_core_static_css: false,
|
|
60
59
|
'cwr-modal-ui-refresh': false,
|
|
61
60
|
'cc-disambiguation-in-cwr': false,
|
|
62
61
|
'cwr-reduce-prompt-suggestion-max-chars': false,
|
|
@@ -2051,6 +2051,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2051
2051
|
param: 'isEnabled',
|
|
2052
2052
|
defaultValue: false
|
|
2053
2053
|
}),
|
|
2054
|
+
// Added 2026-07-21
|
|
2055
|
+
platform_editor_table_q4_patch_4: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2056
|
+
productKeys: {
|
|
2057
|
+
confluence: 'platform_editor_table_q4_patch_4',
|
|
2058
|
+
jira: 'platform_editor_table_q4_patch_4'
|
|
2059
|
+
},
|
|
2060
|
+
param: 'isEnabled',
|
|
2061
|
+
defaultValue: false
|
|
2062
|
+
}),
|
|
2054
2063
|
// Added 2026-05-11
|
|
2055
2064
|
platform_editor_table_menu_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2056
2065
|
productKeys: {
|
|
@@ -2411,6 +2420,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2411
2420
|
param: 'isEnabled',
|
|
2412
2421
|
defaultValue: false
|
|
2413
2422
|
}),
|
|
2423
|
+
// Added 2026-07-21
|
|
2424
|
+
platform_renderer_collapsible_headings: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2425
|
+
productKeys: {
|
|
2426
|
+
confluence: 'platform_renderer_collapsible_headings'
|
|
2427
|
+
},
|
|
2428
|
+
param: 'isEnabled',
|
|
2429
|
+
defaultValue: false
|
|
2430
|
+
}),
|
|
2414
2431
|
// Added 2026-07-20
|
|
2415
2432
|
platform_editor_lovability_breakout_resizing_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2416
2433
|
productKeys: {
|
|
@@ -50,7 +50,6 @@ export const testBooleanOverrides = {
|
|
|
50
50
|
platform_editor_table_fit_to_content_auto_convert: false,
|
|
51
51
|
platform_editor_table_q4_loveability: false,
|
|
52
52
|
platform_editor_table_menu_updates: false,
|
|
53
|
-
platform_editor_core_static_css: false,
|
|
54
53
|
'cwr-modal-ui-refresh': false,
|
|
55
54
|
'cc-disambiguation-in-cwr': false,
|
|
56
55
|
'cwr-reduce-prompt-suggestion-max-chars': false,
|
|
@@ -2045,6 +2045,15 @@ export const editorExperimentsConfig = {
|
|
|
2045
2045
|
param: 'isEnabled',
|
|
2046
2046
|
defaultValue: false
|
|
2047
2047
|
}),
|
|
2048
|
+
// Added 2026-07-21
|
|
2049
|
+
platform_editor_table_q4_patch_4: createBooleanExperiment({
|
|
2050
|
+
productKeys: {
|
|
2051
|
+
confluence: 'platform_editor_table_q4_patch_4',
|
|
2052
|
+
jira: 'platform_editor_table_q4_patch_4'
|
|
2053
|
+
},
|
|
2054
|
+
param: 'isEnabled',
|
|
2055
|
+
defaultValue: false
|
|
2056
|
+
}),
|
|
2048
2057
|
// Added 2026-05-11
|
|
2049
2058
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2050
2059
|
productKeys: {
|
|
@@ -2405,6 +2414,14 @@ export const editorExperimentsConfig = {
|
|
|
2405
2414
|
param: 'isEnabled',
|
|
2406
2415
|
defaultValue: false
|
|
2407
2416
|
}),
|
|
2417
|
+
// Added 2026-07-21
|
|
2418
|
+
platform_renderer_collapsible_headings: createBooleanExperiment({
|
|
2419
|
+
productKeys: {
|
|
2420
|
+
confluence: 'platform_renderer_collapsible_headings'
|
|
2421
|
+
},
|
|
2422
|
+
param: 'isEnabled',
|
|
2423
|
+
defaultValue: false
|
|
2424
|
+
}),
|
|
2408
2425
|
// Added 2026-07-20
|
|
2409
2426
|
platform_editor_lovability_breakout_resizing_fixes: createBooleanExperiment({
|
|
2410
2427
|
productKeys: {
|
|
@@ -50,7 +50,6 @@ export var testBooleanOverrides = {
|
|
|
50
50
|
platform_editor_table_fit_to_content_auto_convert: false,
|
|
51
51
|
platform_editor_table_q4_loveability: false,
|
|
52
52
|
platform_editor_table_menu_updates: false,
|
|
53
|
-
platform_editor_core_static_css: false,
|
|
54
53
|
'cwr-modal-ui-refresh': false,
|
|
55
54
|
'cc-disambiguation-in-cwr': false,
|
|
56
55
|
'cwr-reduce-prompt-suggestion-max-chars': false,
|
|
@@ -2045,6 +2045,15 @@ export var editorExperimentsConfig = {
|
|
|
2045
2045
|
param: 'isEnabled',
|
|
2046
2046
|
defaultValue: false
|
|
2047
2047
|
}),
|
|
2048
|
+
// Added 2026-07-21
|
|
2049
|
+
platform_editor_table_q4_patch_4: createBooleanExperiment({
|
|
2050
|
+
productKeys: {
|
|
2051
|
+
confluence: 'platform_editor_table_q4_patch_4',
|
|
2052
|
+
jira: 'platform_editor_table_q4_patch_4'
|
|
2053
|
+
},
|
|
2054
|
+
param: 'isEnabled',
|
|
2055
|
+
defaultValue: false
|
|
2056
|
+
}),
|
|
2048
2057
|
// Added 2026-05-11
|
|
2049
2058
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2050
2059
|
productKeys: {
|
|
@@ -2405,6 +2414,14 @@ export var editorExperimentsConfig = {
|
|
|
2405
2414
|
param: 'isEnabled',
|
|
2406
2415
|
defaultValue: false
|
|
2407
2416
|
}),
|
|
2417
|
+
// Added 2026-07-21
|
|
2418
|
+
platform_renderer_collapsible_headings: createBooleanExperiment({
|
|
2419
|
+
productKeys: {
|
|
2420
|
+
confluence: 'platform_renderer_collapsible_headings'
|
|
2421
|
+
},
|
|
2422
|
+
param: 'isEnabled',
|
|
2423
|
+
defaultValue: false
|
|
2424
|
+
}),
|
|
2408
2425
|
// Added 2026-07-20
|
|
2409
2426
|
platform_editor_lovability_breakout_resizing_fixes: createBooleanExperiment({
|
|
2410
2427
|
productKeys: {
|
|
@@ -1510,6 +1510,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1510
1510
|
productKeys?: ProductKeys;
|
|
1511
1511
|
typeGuard: IsBooleanType;
|
|
1512
1512
|
};
|
|
1513
|
+
platform_editor_table_q4_patch_4: {
|
|
1514
|
+
defaultValue: boolean;
|
|
1515
|
+
param: string;
|
|
1516
|
+
productKeys?: ProductKeys;
|
|
1517
|
+
typeGuard: IsBooleanType;
|
|
1518
|
+
};
|
|
1513
1519
|
platform_editor_table_menu_updates: {
|
|
1514
1520
|
defaultValue: boolean;
|
|
1515
1521
|
param: string;
|
|
@@ -1757,6 +1763,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1757
1763
|
productKeys?: ProductKeys;
|
|
1758
1764
|
typeGuard: IsBooleanType;
|
|
1759
1765
|
};
|
|
1766
|
+
platform_renderer_collapsible_headings: {
|
|
1767
|
+
defaultValue: boolean;
|
|
1768
|
+
param: string;
|
|
1769
|
+
productKeys?: ProductKeys;
|
|
1770
|
+
typeGuard: IsBooleanType;
|
|
1771
|
+
};
|
|
1760
1772
|
platform_editor_lovability_breakout_resizing_fixes: {
|
|
1761
1773
|
defaultValue: boolean;
|
|
1762
1774
|
param: string;
|
package/package.json
CHANGED