@atlaskit/tmp-editor-statsig 42.0.0 → 42.1.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 42.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`cdc6ff4788df0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdc6ff4788df0) -
|
|
8
|
+
[EDITOR-5739] Move TwoStageHydration on toolbar down to around toolbar component rather than
|
|
9
|
+
ToolbarArrowKeyNavigationProvider
|
|
10
|
+
|
|
3
11
|
## 42.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
|
@@ -1783,6 +1783,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1783
1783
|
param: 'isEnabled',
|
|
1784
1784
|
defaultValue: false
|
|
1785
1785
|
}),
|
|
1786
|
+
// Added 2026-03-19
|
|
1787
|
+
platform_editor_toolbar_two_stage_hydration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1788
|
+
productKeys: {
|
|
1789
|
+
confluence: 'platform_editor_toolbar_two_stage_hydration'
|
|
1790
|
+
},
|
|
1791
|
+
param: 'isEnabled',
|
|
1792
|
+
defaultValue: false
|
|
1793
|
+
}),
|
|
1786
1794
|
// Added 2026-03-15
|
|
1787
1795
|
platform_editor_sync_block_ssr_config: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1788
1796
|
productKeys: {
|
|
@@ -1777,6 +1777,14 @@ export const editorExperimentsConfig = {
|
|
|
1777
1777
|
param: 'isEnabled',
|
|
1778
1778
|
defaultValue: false
|
|
1779
1779
|
}),
|
|
1780
|
+
// Added 2026-03-19
|
|
1781
|
+
platform_editor_toolbar_two_stage_hydration: createBooleanExperiment({
|
|
1782
|
+
productKeys: {
|
|
1783
|
+
confluence: 'platform_editor_toolbar_two_stage_hydration'
|
|
1784
|
+
},
|
|
1785
|
+
param: 'isEnabled',
|
|
1786
|
+
defaultValue: false
|
|
1787
|
+
}),
|
|
1780
1788
|
// Added 2026-03-15
|
|
1781
1789
|
platform_editor_sync_block_ssr_config: createBooleanExperiment({
|
|
1782
1790
|
productKeys: {
|
|
@@ -1777,6 +1777,14 @@ export var editorExperimentsConfig = {
|
|
|
1777
1777
|
param: 'isEnabled',
|
|
1778
1778
|
defaultValue: false
|
|
1779
1779
|
}),
|
|
1780
|
+
// Added 2026-03-19
|
|
1781
|
+
platform_editor_toolbar_two_stage_hydration: createBooleanExperiment({
|
|
1782
|
+
productKeys: {
|
|
1783
|
+
confluence: 'platform_editor_toolbar_two_stage_hydration'
|
|
1784
|
+
},
|
|
1785
|
+
param: 'isEnabled',
|
|
1786
|
+
defaultValue: false
|
|
1787
|
+
}),
|
|
1780
1788
|
// Added 2026-03-15
|
|
1781
1789
|
platform_editor_sync_block_ssr_config: createBooleanExperiment({
|
|
1782
1790
|
productKeys: {
|
|
@@ -1308,6 +1308,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1308
1308
|
productKeys?: ProductKeys;
|
|
1309
1309
|
typeGuard: IsBooleanType;
|
|
1310
1310
|
};
|
|
1311
|
+
platform_editor_toolbar_two_stage_hydration: {
|
|
1312
|
+
defaultValue: boolean;
|
|
1313
|
+
param: string;
|
|
1314
|
+
productKeys?: ProductKeys;
|
|
1315
|
+
typeGuard: IsBooleanType;
|
|
1316
|
+
};
|
|
1311
1317
|
platform_editor_sync_block_ssr_config: {
|
|
1312
1318
|
defaultValue: boolean;
|
|
1313
1319
|
param: string;
|
|
@@ -1308,6 +1308,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1308
1308
|
productKeys?: ProductKeys;
|
|
1309
1309
|
typeGuard: IsBooleanType;
|
|
1310
1310
|
};
|
|
1311
|
+
platform_editor_toolbar_two_stage_hydration: {
|
|
1312
|
+
defaultValue: boolean;
|
|
1313
|
+
param: string;
|
|
1314
|
+
productKeys?: ProductKeys;
|
|
1315
|
+
typeGuard: IsBooleanType;
|
|
1316
|
+
};
|
|
1311
1317
|
platform_editor_sync_block_ssr_config: {
|
|
1312
1318
|
defaultValue: boolean;
|
|
1313
1319
|
param: string;
|
package/package.json
CHANGED