@atlaskit/tmp-editor-statsig 16.3.4 → 16.4.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.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`66dcfa397e97d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/66dcfa397e97d) -
|
|
8
|
+
[ux] EDITOR-4197 Fix cell option menu for table header cells in table header column
|
|
9
|
+
|
|
3
10
|
## 16.3.4
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1179,6 +1179,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1179
1179
|
param: 'isEnabled',
|
|
1180
1180
|
defaultValue: false
|
|
1181
1181
|
}),
|
|
1182
|
+
// Added 2025-12-30
|
|
1183
|
+
platform_editor_table_sticky_header_patch_9: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1184
|
+
productKeys: {
|
|
1185
|
+
confluence: 'platform_editor_table_sticky_header_patch_9'
|
|
1186
|
+
},
|
|
1187
|
+
param: 'isEnabled',
|
|
1188
|
+
defaultValue: false
|
|
1189
|
+
}),
|
|
1182
1190
|
// Added 2025-12-22
|
|
1183
1191
|
platform_editor_localid_ime_composition_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1184
1192
|
productKeys: {
|
|
@@ -1173,6 +1173,14 @@ export const editorExperimentsConfig = {
|
|
|
1173
1173
|
param: 'isEnabled',
|
|
1174
1174
|
defaultValue: false
|
|
1175
1175
|
}),
|
|
1176
|
+
// Added 2025-12-30
|
|
1177
|
+
platform_editor_table_sticky_header_patch_9: createBooleanExperiment({
|
|
1178
|
+
productKeys: {
|
|
1179
|
+
confluence: 'platform_editor_table_sticky_header_patch_9'
|
|
1180
|
+
},
|
|
1181
|
+
param: 'isEnabled',
|
|
1182
|
+
defaultValue: false
|
|
1183
|
+
}),
|
|
1176
1184
|
// Added 2025-12-22
|
|
1177
1185
|
platform_editor_localid_ime_composition_fix: createBooleanExperiment({
|
|
1178
1186
|
productKeys: {
|
|
@@ -1173,6 +1173,14 @@ export var editorExperimentsConfig = {
|
|
|
1173
1173
|
param: 'isEnabled',
|
|
1174
1174
|
defaultValue: false
|
|
1175
1175
|
}),
|
|
1176
|
+
// Added 2025-12-30
|
|
1177
|
+
platform_editor_table_sticky_header_patch_9: createBooleanExperiment({
|
|
1178
|
+
productKeys: {
|
|
1179
|
+
confluence: 'platform_editor_table_sticky_header_patch_9'
|
|
1180
|
+
},
|
|
1181
|
+
param: 'isEnabled',
|
|
1182
|
+
defaultValue: false
|
|
1183
|
+
}),
|
|
1176
1184
|
// Added 2025-12-22
|
|
1177
1185
|
platform_editor_localid_ime_composition_fix: createBooleanExperiment({
|
|
1178
1186
|
productKeys: {
|
|
@@ -782,6 +782,12 @@ export declare const editorExperimentsConfig: {
|
|
|
782
782
|
productKeys?: ProductKeys;
|
|
783
783
|
typeGuard: IsBooleanType;
|
|
784
784
|
};
|
|
785
|
+
platform_editor_table_sticky_header_patch_9: {
|
|
786
|
+
defaultValue: boolean;
|
|
787
|
+
param: string;
|
|
788
|
+
productKeys?: ProductKeys;
|
|
789
|
+
typeGuard: IsBooleanType;
|
|
790
|
+
};
|
|
785
791
|
platform_use_llm_space_recommendations: {
|
|
786
792
|
defaultValue: boolean;
|
|
787
793
|
param: string;
|
|
@@ -782,6 +782,12 @@ export declare const editorExperimentsConfig: {
|
|
|
782
782
|
productKeys?: ProductKeys;
|
|
783
783
|
typeGuard: IsBooleanType;
|
|
784
784
|
};
|
|
785
|
+
platform_editor_table_sticky_header_patch_9: {
|
|
786
|
+
defaultValue: boolean;
|
|
787
|
+
param: string;
|
|
788
|
+
productKeys?: ProductKeys;
|
|
789
|
+
typeGuard: IsBooleanType;
|
|
790
|
+
};
|
|
785
791
|
platform_use_llm_space_recommendations: {
|
|
786
792
|
defaultValue: boolean;
|
|
787
793
|
param: string;
|
package/package.json
CHANGED