@atlaskit/tmp-editor-statsig 25.3.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,19 @@
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
+
10
+ ## 25.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`4ba962abdce44`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4ba962abdce44) -
15
+ EDITOR-4667 - Inline Bodied Extension: Remove important from existing extension width style
16
+
3
17
  ## 25.3.0
4
18
 
5
19
  ### Minor Changes
@@ -78,6 +78,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
78
78
  param: 'isEnabled',
79
79
  defaultValue: false
80
80
  }),
81
+ // Added 2026-02-16
82
+ platform_editor_remove_important_in_render_ext: (0, _experimentBuilders.createBooleanExperiment)({
83
+ productKeys: {
84
+ confluence: 'platform_editor_remove_important_in_render_ext'
85
+ },
86
+ param: 'isEnabled',
87
+ defaultValue: false
88
+ }),
81
89
  // Added 2025-12-10
82
90
  confluence_max_width_content_appearance: (0, _experimentBuilders.createBooleanExperiment)({
83
91
  productKeys: {
@@ -1396,5 +1404,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1396
1404
  },
1397
1405
  param: 'isEnabled',
1398
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
1399
1415
  })
1400
1416
  };
@@ -72,6 +72,14 @@ export const editorExperimentsConfig = {
72
72
  param: 'isEnabled',
73
73
  defaultValue: false
74
74
  }),
75
+ // Added 2026-02-16
76
+ platform_editor_remove_important_in_render_ext: createBooleanExperiment({
77
+ productKeys: {
78
+ confluence: 'platform_editor_remove_important_in_render_ext'
79
+ },
80
+ param: 'isEnabled',
81
+ defaultValue: false
82
+ }),
75
83
  // Added 2025-12-10
76
84
  confluence_max_width_content_appearance: createBooleanExperiment({
77
85
  productKeys: {
@@ -1390,5 +1398,13 @@ export const editorExperimentsConfig = {
1390
1398
  },
1391
1399
  param: 'isEnabled',
1392
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
1393
1409
  })
1394
1410
  };
@@ -72,6 +72,14 @@ export var editorExperimentsConfig = {
72
72
  param: 'isEnabled',
73
73
  defaultValue: false
74
74
  }),
75
+ // Added 2026-02-16
76
+ platform_editor_remove_important_in_render_ext: createBooleanExperiment({
77
+ productKeys: {
78
+ confluence: 'platform_editor_remove_important_in_render_ext'
79
+ },
80
+ param: 'isEnabled',
81
+ defaultValue: false
82
+ }),
75
83
  // Added 2025-12-10
76
84
  confluence_max_width_content_appearance: createBooleanExperiment({
77
85
  productKeys: {
@@ -1390,5 +1398,13 @@ export var editorExperimentsConfig = {
1390
1398
  },
1391
1399
  param: 'isEnabled',
1392
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
1393
1409
  })
1394
1410
  };
@@ -160,6 +160,12 @@ export declare const editorExperimentsConfig: {
160
160
  productKeys?: ProductKeys;
161
161
  typeGuard: IsBooleanType;
162
162
  };
163
+ platform_editor_remove_important_in_render_ext: {
164
+ defaultValue: boolean;
165
+ param: string;
166
+ productKeys?: ProductKeys;
167
+ typeGuard: IsBooleanType;
168
+ };
163
169
  confluence_max_width_content_appearance: {
164
170
  defaultValue: boolean;
165
171
  param: string;
@@ -1033,5 +1039,11 @@ export declare const editorExperimentsConfig: {
1033
1039
  productKeys?: ProductKeys;
1034
1040
  typeGuard: IsBooleanType;
1035
1041
  };
1042
+ confluence_frontend_fix_date_hydration_error: {
1043
+ defaultValue: boolean;
1044
+ param: string;
1045
+ productKeys?: ProductKeys;
1046
+ typeGuard: IsBooleanType;
1047
+ };
1036
1048
  };
1037
1049
  export {};
@@ -160,6 +160,12 @@ export declare const editorExperimentsConfig: {
160
160
  productKeys?: ProductKeys;
161
161
  typeGuard: IsBooleanType;
162
162
  };
163
+ platform_editor_remove_important_in_render_ext: {
164
+ defaultValue: boolean;
165
+ param: string;
166
+ productKeys?: ProductKeys;
167
+ typeGuard: IsBooleanType;
168
+ };
163
169
  confluence_max_width_content_appearance: {
164
170
  defaultValue: boolean;
165
171
  param: string;
@@ -1033,5 +1039,11 @@ export declare const editorExperimentsConfig: {
1033
1039
  productKeys?: ProductKeys;
1034
1040
  typeGuard: IsBooleanType;
1035
1041
  };
1042
+ confluence_frontend_fix_date_hydration_error: {
1043
+ defaultValue: boolean;
1044
+ param: string;
1045
+ productKeys?: ProductKeys;
1046
+ typeGuard: IsBooleanType;
1047
+ };
1036
1048
  };
1037
1049
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "25.3.0",
3
+ "version": "25.5.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",