@atlaskit/tmp-editor-statsig 16.2.0 → 16.3.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.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`45270b9a8ed63`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/45270b9a8ed63) -
|
|
8
|
+
CONFCLOUD-83370: Fix broken IME composition
|
|
9
|
+
|
|
3
10
|
## 16.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1203,6 +1203,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1203
1203
|
param: 'isEnabled',
|
|
1204
1204
|
defaultValue: false
|
|
1205
1205
|
}),
|
|
1206
|
+
// Added 2025-12-22
|
|
1207
|
+
platform_editor_localid_ime_composition_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1208
|
+
productKeys: {
|
|
1209
|
+
confluence: 'platform_editor_localid_ime_composition_fix'
|
|
1210
|
+
},
|
|
1211
|
+
param: 'isEnabled',
|
|
1212
|
+
defaultValue: false
|
|
1213
|
+
}),
|
|
1206
1214
|
// Added 2025-12-18
|
|
1207
1215
|
platform_synced_blocks_offline_check_for_block: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1208
1216
|
productKeys: {
|
|
@@ -1197,6 +1197,14 @@ export const editorExperimentsConfig = {
|
|
|
1197
1197
|
param: 'isEnabled',
|
|
1198
1198
|
defaultValue: false
|
|
1199
1199
|
}),
|
|
1200
|
+
// Added 2025-12-22
|
|
1201
|
+
platform_editor_localid_ime_composition_fix: createBooleanExperiment({
|
|
1202
|
+
productKeys: {
|
|
1203
|
+
confluence: 'platform_editor_localid_ime_composition_fix'
|
|
1204
|
+
},
|
|
1205
|
+
param: 'isEnabled',
|
|
1206
|
+
defaultValue: false
|
|
1207
|
+
}),
|
|
1200
1208
|
// Added 2025-12-18
|
|
1201
1209
|
platform_synced_blocks_offline_check_for_block: createBooleanExperiment({
|
|
1202
1210
|
productKeys: {
|
|
@@ -1197,6 +1197,14 @@ export var editorExperimentsConfig = {
|
|
|
1197
1197
|
param: 'isEnabled',
|
|
1198
1198
|
defaultValue: false
|
|
1199
1199
|
}),
|
|
1200
|
+
// Added 2025-12-22
|
|
1201
|
+
platform_editor_localid_ime_composition_fix: createBooleanExperiment({
|
|
1202
|
+
productKeys: {
|
|
1203
|
+
confluence: 'platform_editor_localid_ime_composition_fix'
|
|
1204
|
+
},
|
|
1205
|
+
param: 'isEnabled',
|
|
1206
|
+
defaultValue: false
|
|
1207
|
+
}),
|
|
1200
1208
|
// Added 2025-12-18
|
|
1201
1209
|
platform_synced_blocks_offline_check_for_block: createBooleanExperiment({
|
|
1202
1210
|
productKeys: {
|
|
@@ -885,6 +885,12 @@ export declare const editorExperimentsConfig: {
|
|
|
885
885
|
productKeys?: ProductKeys;
|
|
886
886
|
typeGuard: IsBooleanType;
|
|
887
887
|
};
|
|
888
|
+
platform_editor_localid_ime_composition_fix: {
|
|
889
|
+
defaultValue: boolean;
|
|
890
|
+
param: string;
|
|
891
|
+
productKeys?: ProductKeys;
|
|
892
|
+
typeGuard: IsBooleanType;
|
|
893
|
+
};
|
|
888
894
|
platform_synced_blocks_offline_check_for_block: {
|
|
889
895
|
defaultValue: boolean;
|
|
890
896
|
param: string;
|
|
@@ -885,6 +885,12 @@ export declare const editorExperimentsConfig: {
|
|
|
885
885
|
productKeys?: ProductKeys;
|
|
886
886
|
typeGuard: IsBooleanType;
|
|
887
887
|
};
|
|
888
|
+
platform_editor_localid_ime_composition_fix: {
|
|
889
|
+
defaultValue: boolean;
|
|
890
|
+
param: string;
|
|
891
|
+
productKeys?: ProductKeys;
|
|
892
|
+
typeGuard: IsBooleanType;
|
|
893
|
+
};
|
|
888
894
|
platform_synced_blocks_offline_check_for_block: {
|
|
889
895
|
defaultValue: boolean;
|
|
890
896
|
param: string;
|
package/package.json
CHANGED