@atlaskit/tmp-editor-statsig 25.4.0 → 25.5.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
|
+
## 25.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`aac76ca1cde5b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aac76ca1cde5b) -
|
|
8
|
+
Fix hydration error with dates in task lists
|
|
9
|
+
|
|
3
10
|
## 25.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1404,5 +1404,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1404
1404
|
},
|
|
1405
1405
|
param: 'isEnabled',
|
|
1406
1406
|
defaultValue: false
|
|
1407
|
+
}),
|
|
1408
|
+
// Added 2026-02-17
|
|
1409
|
+
confluence_frontend_fix_date_hydration_error: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1410
|
+
productKeys: {
|
|
1411
|
+
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1412
|
+
},
|
|
1413
|
+
param: 'isEnabled',
|
|
1414
|
+
defaultValue: false
|
|
1407
1415
|
})
|
|
1408
1416
|
};
|
|
@@ -1398,5 +1398,13 @@ export const editorExperimentsConfig = {
|
|
|
1398
1398
|
},
|
|
1399
1399
|
param: 'isEnabled',
|
|
1400
1400
|
defaultValue: false
|
|
1401
|
+
}),
|
|
1402
|
+
// Added 2026-02-17
|
|
1403
|
+
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1404
|
+
productKeys: {
|
|
1405
|
+
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1406
|
+
},
|
|
1407
|
+
param: 'isEnabled',
|
|
1408
|
+
defaultValue: false
|
|
1401
1409
|
})
|
|
1402
1410
|
};
|
|
@@ -1398,5 +1398,13 @@ export var editorExperimentsConfig = {
|
|
|
1398
1398
|
},
|
|
1399
1399
|
param: 'isEnabled',
|
|
1400
1400
|
defaultValue: false
|
|
1401
|
+
}),
|
|
1402
|
+
// Added 2026-02-17
|
|
1403
|
+
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1404
|
+
productKeys: {
|
|
1405
|
+
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1406
|
+
},
|
|
1407
|
+
param: 'isEnabled',
|
|
1408
|
+
defaultValue: false
|
|
1401
1409
|
})
|
|
1402
1410
|
};
|
|
@@ -1039,5 +1039,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1039
1039
|
productKeys?: ProductKeys;
|
|
1040
1040
|
typeGuard: IsBooleanType;
|
|
1041
1041
|
};
|
|
1042
|
+
confluence_frontend_fix_date_hydration_error: {
|
|
1043
|
+
defaultValue: boolean;
|
|
1044
|
+
param: string;
|
|
1045
|
+
productKeys?: ProductKeys;
|
|
1046
|
+
typeGuard: IsBooleanType;
|
|
1047
|
+
};
|
|
1042
1048
|
};
|
|
1043
1049
|
export {};
|
|
@@ -1039,5 +1039,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1039
1039
|
productKeys?: ProductKeys;
|
|
1040
1040
|
typeGuard: IsBooleanType;
|
|
1041
1041
|
};
|
|
1042
|
+
confluence_frontend_fix_date_hydration_error: {
|
|
1043
|
+
defaultValue: boolean;
|
|
1044
|
+
param: string;
|
|
1045
|
+
productKeys?: ProductKeys;
|
|
1046
|
+
typeGuard: IsBooleanType;
|
|
1047
|
+
};
|
|
1042
1048
|
};
|
|
1043
1049
|
export {};
|
package/package.json
CHANGED