@atlaskit/tmp-editor-statsig 16.0.1 → 16.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 16.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`b10f0252621b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b10f0252621b0) -
8
+ Set padding top and bottom on blockquote to avoid batch.css overrides
9
+
10
+ ## 16.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`bb5f3706afa84`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb5f3706afa84) -
15
+ fix media card dimensions on load for ssr
16
+
3
17
  ## 16.0.1
4
18
 
5
19
  ### Patch Changes
@@ -1087,6 +1087,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1087
1087
  param: 'isEnabled',
1088
1088
  defaultValue: false
1089
1089
  }),
1090
+ // Added 2025-12-18
1091
+ platform_editor_blockquote_zero_padding: (0, _experimentBuilders.createBooleanExperiment)({
1092
+ productKeys: {
1093
+ confluence: 'platform_editor_blockquote_zero_padding'
1094
+ },
1095
+ param: 'isEnabled',
1096
+ defaultValue: false
1097
+ }),
1090
1098
  // Added 2025-11-19
1091
1099
  platform_editor_lovability_navigation_fixes: (0, _experimentBuilders.createBooleanExperiment)({
1092
1100
  productKeys: {
@@ -1194,5 +1202,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1194
1202
  },
1195
1203
  param: 'isEnabled',
1196
1204
  defaultValue: false
1205
+ }),
1206
+ // Added 2025-12-18
1207
+ platform_synced_blocks_offline_check_for_block: (0, _experimentBuilders.createBooleanExperiment)({
1208
+ productKeys: {
1209
+ confluence: 'platform_synced_blocks_offline_check_for_block',
1210
+ jira: 'platform_synced_blocks_offline_check_for_block'
1211
+ },
1212
+ param: 'isEnabled',
1213
+ defaultValue: false
1197
1214
  })
1198
1215
  };
@@ -1081,6 +1081,14 @@ export const editorExperimentsConfig = {
1081
1081
  param: 'isEnabled',
1082
1082
  defaultValue: false
1083
1083
  }),
1084
+ // Added 2025-12-18
1085
+ platform_editor_blockquote_zero_padding: createBooleanExperiment({
1086
+ productKeys: {
1087
+ confluence: 'platform_editor_blockquote_zero_padding'
1088
+ },
1089
+ param: 'isEnabled',
1090
+ defaultValue: false
1091
+ }),
1084
1092
  // Added 2025-11-19
1085
1093
  platform_editor_lovability_navigation_fixes: createBooleanExperiment({
1086
1094
  productKeys: {
@@ -1188,5 +1196,14 @@ export const editorExperimentsConfig = {
1188
1196
  },
1189
1197
  param: 'isEnabled',
1190
1198
  defaultValue: false
1199
+ }),
1200
+ // Added 2025-12-18
1201
+ platform_synced_blocks_offline_check_for_block: createBooleanExperiment({
1202
+ productKeys: {
1203
+ confluence: 'platform_synced_blocks_offline_check_for_block',
1204
+ jira: 'platform_synced_blocks_offline_check_for_block'
1205
+ },
1206
+ param: 'isEnabled',
1207
+ defaultValue: false
1191
1208
  })
1192
1209
  };
@@ -1081,6 +1081,14 @@ export var editorExperimentsConfig = {
1081
1081
  param: 'isEnabled',
1082
1082
  defaultValue: false
1083
1083
  }),
1084
+ // Added 2025-12-18
1085
+ platform_editor_blockquote_zero_padding: createBooleanExperiment({
1086
+ productKeys: {
1087
+ confluence: 'platform_editor_blockquote_zero_padding'
1088
+ },
1089
+ param: 'isEnabled',
1090
+ defaultValue: false
1091
+ }),
1084
1092
  // Added 2025-11-19
1085
1093
  platform_editor_lovability_navigation_fixes: createBooleanExperiment({
1086
1094
  productKeys: {
@@ -1188,5 +1196,14 @@ export var editorExperimentsConfig = {
1188
1196
  },
1189
1197
  param: 'isEnabled',
1190
1198
  defaultValue: false
1199
+ }),
1200
+ // Added 2025-12-18
1201
+ platform_synced_blocks_offline_check_for_block: createBooleanExperiment({
1202
+ productKeys: {
1203
+ confluence: 'platform_synced_blocks_offline_check_for_block',
1204
+ jira: 'platform_synced_blocks_offline_check_for_block'
1205
+ },
1206
+ param: 'isEnabled',
1207
+ defaultValue: false
1191
1208
  })
1192
1209
  };
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
45
45
  productKeys?: ProductKeys;
46
46
  typeGuard: IsBooleanType;
47
47
  };
48
+ platform_editor_blockquote_zero_padding: {
49
+ defaultValue: boolean;
50
+ param: string;
51
+ productKeys?: ProductKeys;
52
+ typeGuard: IsBooleanType;
53
+ };
48
54
  cc_editor_insm_outlier_events: {
49
55
  defaultValue: 'control' | 'test';
50
56
  param: string;
@@ -879,5 +885,11 @@ export declare const editorExperimentsConfig: {
879
885
  productKeys?: ProductKeys;
880
886
  typeGuard: IsBooleanType;
881
887
  };
888
+ platform_synced_blocks_offline_check_for_block: {
889
+ defaultValue: boolean;
890
+ param: string;
891
+ productKeys?: ProductKeys;
892
+ typeGuard: IsBooleanType;
893
+ };
882
894
  };
883
895
  export {};
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
45
45
  productKeys?: ProductKeys;
46
46
  typeGuard: IsBooleanType;
47
47
  };
48
+ platform_editor_blockquote_zero_padding: {
49
+ defaultValue: boolean;
50
+ param: string;
51
+ productKeys?: ProductKeys;
52
+ typeGuard: IsBooleanType;
53
+ };
48
54
  cc_editor_insm_outlier_events: {
49
55
  defaultValue: 'control' | 'test';
50
56
  param: string;
@@ -879,5 +885,11 @@ export declare const editorExperimentsConfig: {
879
885
  productKeys?: ProductKeys;
880
886
  typeGuard: IsBooleanType;
881
887
  };
888
+ platform_synced_blocks_offline_check_for_block: {
889
+ defaultValue: boolean;
890
+ param: string;
891
+ productKeys?: ProductKeys;
892
+ typeGuard: IsBooleanType;
893
+ };
882
894
  };
883
895
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "16.0.1",
3
+ "version": "16.2.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",