@atlaskit/tmp-editor-statsig 132.1.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
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## 132.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2420,6 +2420,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2420
2420
|
param: 'isEnabled',
|
|
2421
2421
|
defaultValue: false
|
|
2422
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
|
+
}),
|
|
2423
2431
|
// Added 2026-07-20
|
|
2424
2432
|
platform_editor_lovability_breakout_resizing_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2425
2433
|
productKeys: {
|
|
@@ -2414,6 +2414,14 @@ export const editorExperimentsConfig = {
|
|
|
2414
2414
|
param: 'isEnabled',
|
|
2415
2415
|
defaultValue: false
|
|
2416
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
|
+
}),
|
|
2417
2425
|
// Added 2026-07-20
|
|
2418
2426
|
platform_editor_lovability_breakout_resizing_fixes: createBooleanExperiment({
|
|
2419
2427
|
productKeys: {
|
|
@@ -2414,6 +2414,14 @@ export var editorExperimentsConfig = {
|
|
|
2414
2414
|
param: 'isEnabled',
|
|
2415
2415
|
defaultValue: false
|
|
2416
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
|
+
}),
|
|
2417
2425
|
// Added 2026-07-20
|
|
2418
2426
|
platform_editor_lovability_breakout_resizing_fixes: createBooleanExperiment({
|
|
2419
2427
|
productKeys: {
|
|
@@ -1763,6 +1763,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1763
1763
|
productKeys?: ProductKeys;
|
|
1764
1764
|
typeGuard: IsBooleanType;
|
|
1765
1765
|
};
|
|
1766
|
+
platform_renderer_collapsible_headings: {
|
|
1767
|
+
defaultValue: boolean;
|
|
1768
|
+
param: string;
|
|
1769
|
+
productKeys?: ProductKeys;
|
|
1770
|
+
typeGuard: IsBooleanType;
|
|
1771
|
+
};
|
|
1766
1772
|
platform_editor_lovability_breakout_resizing_fixes: {
|
|
1767
1773
|
defaultValue: boolean;
|
|
1768
1774
|
param: string;
|
package/package.json
CHANGED