@atlaskit/tmp-editor-statsig 16.0.1 → 16.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`bb5f3706afa84`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb5f3706afa84) -
|
|
8
|
+
fix media card dimensions on load for ssr
|
|
9
|
+
|
|
3
10
|
## 16.0.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1194,5 +1194,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1194
1194
|
},
|
|
1195
1195
|
param: 'isEnabled',
|
|
1196
1196
|
defaultValue: false
|
|
1197
|
+
}),
|
|
1198
|
+
// Added 2025-12-18
|
|
1199
|
+
platform_synced_blocks_offline_check_for_block: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1200
|
+
productKeys: {
|
|
1201
|
+
confluence: 'platform_synced_blocks_offline_check_for_block',
|
|
1202
|
+
jira: 'platform_synced_blocks_offline_check_for_block'
|
|
1203
|
+
},
|
|
1204
|
+
param: 'isEnabled',
|
|
1205
|
+
defaultValue: false
|
|
1197
1206
|
})
|
|
1198
1207
|
};
|
|
@@ -1188,5 +1188,14 @@ export const editorExperimentsConfig = {
|
|
|
1188
1188
|
},
|
|
1189
1189
|
param: 'isEnabled',
|
|
1190
1190
|
defaultValue: false
|
|
1191
|
+
}),
|
|
1192
|
+
// Added 2025-12-18
|
|
1193
|
+
platform_synced_blocks_offline_check_for_block: createBooleanExperiment({
|
|
1194
|
+
productKeys: {
|
|
1195
|
+
confluence: 'platform_synced_blocks_offline_check_for_block',
|
|
1196
|
+
jira: 'platform_synced_blocks_offline_check_for_block'
|
|
1197
|
+
},
|
|
1198
|
+
param: 'isEnabled',
|
|
1199
|
+
defaultValue: false
|
|
1191
1200
|
})
|
|
1192
1201
|
};
|
|
@@ -1188,5 +1188,14 @@ export var editorExperimentsConfig = {
|
|
|
1188
1188
|
},
|
|
1189
1189
|
param: 'isEnabled',
|
|
1190
1190
|
defaultValue: false
|
|
1191
|
+
}),
|
|
1192
|
+
// Added 2025-12-18
|
|
1193
|
+
platform_synced_blocks_offline_check_for_block: createBooleanExperiment({
|
|
1194
|
+
productKeys: {
|
|
1195
|
+
confluence: 'platform_synced_blocks_offline_check_for_block',
|
|
1196
|
+
jira: 'platform_synced_blocks_offline_check_for_block'
|
|
1197
|
+
},
|
|
1198
|
+
param: 'isEnabled',
|
|
1199
|
+
defaultValue: false
|
|
1191
1200
|
})
|
|
1192
1201
|
};
|
|
@@ -879,5 +879,11 @@ export declare const editorExperimentsConfig: {
|
|
|
879
879
|
productKeys?: ProductKeys;
|
|
880
880
|
typeGuard: IsBooleanType;
|
|
881
881
|
};
|
|
882
|
+
platform_synced_blocks_offline_check_for_block: {
|
|
883
|
+
defaultValue: boolean;
|
|
884
|
+
param: string;
|
|
885
|
+
productKeys?: ProductKeys;
|
|
886
|
+
typeGuard: IsBooleanType;
|
|
887
|
+
};
|
|
882
888
|
};
|
|
883
889
|
export {};
|
|
@@ -879,5 +879,11 @@ export declare const editorExperimentsConfig: {
|
|
|
879
879
|
productKeys?: ProductKeys;
|
|
880
880
|
typeGuard: IsBooleanType;
|
|
881
881
|
};
|
|
882
|
+
platform_synced_blocks_offline_check_for_block: {
|
|
883
|
+
defaultValue: boolean;
|
|
884
|
+
param: string;
|
|
885
|
+
productKeys?: ProductKeys;
|
|
886
|
+
typeGuard: IsBooleanType;
|
|
887
|
+
};
|
|
882
888
|
};
|
|
883
889
|
export {};
|
package/package.json
CHANGED