@atlaskit/tmp-editor-statsig 16.3.4 → 16.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
|
+
## 16.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4fb60e6294885`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4fb60e6294885) -
|
|
8
|
+
Cleanup platform_editor_no_ssr flag
|
|
9
|
+
|
|
10
|
+
## 16.4.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`66dcfa397e97d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/66dcfa397e97d) -
|
|
15
|
+
[ux] EDITOR-4197 Fix cell option menu for table header cells in table header column
|
|
16
|
+
|
|
3
17
|
## 16.3.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -364,14 +364,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
364
364
|
param: 'isEnabled',
|
|
365
365
|
defaultValue: false
|
|
366
366
|
}),
|
|
367
|
-
// Added 2025-10-15
|
|
368
|
-
platform_editor_no_ssr: (0, _experimentBuilders.createBooleanExperiment)({
|
|
369
|
-
productKeys: {
|
|
370
|
-
confluence: 'platform_editor_no_ssr'
|
|
371
|
-
},
|
|
372
|
-
param: 'isEnabled',
|
|
373
|
-
defaultValue: false
|
|
374
|
-
}),
|
|
375
367
|
// Added 2025-10-31
|
|
376
368
|
platform_editor_lovability_suppress_toolbar_event: (0, _experimentBuilders.createBooleanExperiment)({
|
|
377
369
|
productKeys: {
|
|
@@ -1179,6 +1171,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1179
1171
|
param: 'isEnabled',
|
|
1180
1172
|
defaultValue: false
|
|
1181
1173
|
}),
|
|
1174
|
+
// Added 2025-12-30
|
|
1175
|
+
platform_editor_table_sticky_header_patch_9: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1176
|
+
productKeys: {
|
|
1177
|
+
confluence: 'platform_editor_table_sticky_header_patch_9'
|
|
1178
|
+
},
|
|
1179
|
+
param: 'isEnabled',
|
|
1180
|
+
defaultValue: false
|
|
1181
|
+
}),
|
|
1182
1182
|
// Added 2025-12-22
|
|
1183
1183
|
platform_editor_localid_ime_composition_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1184
1184
|
productKeys: {
|
|
@@ -358,14 +358,6 @@ export const editorExperimentsConfig = {
|
|
|
358
358
|
param: 'isEnabled',
|
|
359
359
|
defaultValue: false
|
|
360
360
|
}),
|
|
361
|
-
// Added 2025-10-15
|
|
362
|
-
platform_editor_no_ssr: createBooleanExperiment({
|
|
363
|
-
productKeys: {
|
|
364
|
-
confluence: 'platform_editor_no_ssr'
|
|
365
|
-
},
|
|
366
|
-
param: 'isEnabled',
|
|
367
|
-
defaultValue: false
|
|
368
|
-
}),
|
|
369
361
|
// Added 2025-10-31
|
|
370
362
|
platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
|
|
371
363
|
productKeys: {
|
|
@@ -1173,6 +1165,14 @@ export const editorExperimentsConfig = {
|
|
|
1173
1165
|
param: 'isEnabled',
|
|
1174
1166
|
defaultValue: false
|
|
1175
1167
|
}),
|
|
1168
|
+
// Added 2025-12-30
|
|
1169
|
+
platform_editor_table_sticky_header_patch_9: createBooleanExperiment({
|
|
1170
|
+
productKeys: {
|
|
1171
|
+
confluence: 'platform_editor_table_sticky_header_patch_9'
|
|
1172
|
+
},
|
|
1173
|
+
param: 'isEnabled',
|
|
1174
|
+
defaultValue: false
|
|
1175
|
+
}),
|
|
1176
1176
|
// Added 2025-12-22
|
|
1177
1177
|
platform_editor_localid_ime_composition_fix: createBooleanExperiment({
|
|
1178
1178
|
productKeys: {
|
|
@@ -358,14 +358,6 @@ export var editorExperimentsConfig = {
|
|
|
358
358
|
param: 'isEnabled',
|
|
359
359
|
defaultValue: false
|
|
360
360
|
}),
|
|
361
|
-
// Added 2025-10-15
|
|
362
|
-
platform_editor_no_ssr: createBooleanExperiment({
|
|
363
|
-
productKeys: {
|
|
364
|
-
confluence: 'platform_editor_no_ssr'
|
|
365
|
-
},
|
|
366
|
-
param: 'isEnabled',
|
|
367
|
-
defaultValue: false
|
|
368
|
-
}),
|
|
369
361
|
// Added 2025-10-31
|
|
370
362
|
platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
|
|
371
363
|
productKeys: {
|
|
@@ -1173,6 +1165,14 @@ export var editorExperimentsConfig = {
|
|
|
1173
1165
|
param: 'isEnabled',
|
|
1174
1166
|
defaultValue: false
|
|
1175
1167
|
}),
|
|
1168
|
+
// Added 2025-12-30
|
|
1169
|
+
platform_editor_table_sticky_header_patch_9: createBooleanExperiment({
|
|
1170
|
+
productKeys: {
|
|
1171
|
+
confluence: 'platform_editor_table_sticky_header_patch_9'
|
|
1172
|
+
},
|
|
1173
|
+
param: 'isEnabled',
|
|
1174
|
+
defaultValue: false
|
|
1175
|
+
}),
|
|
1176
1176
|
// Added 2025-12-22
|
|
1177
1177
|
platform_editor_localid_ime_composition_fix: createBooleanExperiment({
|
|
1178
1178
|
productKeys: {
|
|
@@ -513,12 +513,6 @@ export declare const editorExperimentsConfig: {
|
|
|
513
513
|
productKeys?: ProductKeys;
|
|
514
514
|
typeGuard: IsBooleanType;
|
|
515
515
|
};
|
|
516
|
-
platform_editor_no_ssr: {
|
|
517
|
-
defaultValue: boolean;
|
|
518
|
-
param: string;
|
|
519
|
-
productKeys?: ProductKeys;
|
|
520
|
-
typeGuard: IsBooleanType;
|
|
521
|
-
};
|
|
522
516
|
platform_editor_no_state_plugin_injection_api: {
|
|
523
517
|
defaultValue: boolean;
|
|
524
518
|
param: string;
|
|
@@ -782,6 +776,12 @@ export declare const editorExperimentsConfig: {
|
|
|
782
776
|
productKeys?: ProductKeys;
|
|
783
777
|
typeGuard: IsBooleanType;
|
|
784
778
|
};
|
|
779
|
+
platform_editor_table_sticky_header_patch_9: {
|
|
780
|
+
defaultValue: boolean;
|
|
781
|
+
param: string;
|
|
782
|
+
productKeys?: ProductKeys;
|
|
783
|
+
typeGuard: IsBooleanType;
|
|
784
|
+
};
|
|
785
785
|
platform_use_llm_space_recommendations: {
|
|
786
786
|
defaultValue: boolean;
|
|
787
787
|
param: string;
|
|
@@ -513,12 +513,6 @@ export declare const editorExperimentsConfig: {
|
|
|
513
513
|
productKeys?: ProductKeys;
|
|
514
514
|
typeGuard: IsBooleanType;
|
|
515
515
|
};
|
|
516
|
-
platform_editor_no_ssr: {
|
|
517
|
-
defaultValue: boolean;
|
|
518
|
-
param: string;
|
|
519
|
-
productKeys?: ProductKeys;
|
|
520
|
-
typeGuard: IsBooleanType;
|
|
521
|
-
};
|
|
522
516
|
platform_editor_no_state_plugin_injection_api: {
|
|
523
517
|
defaultValue: boolean;
|
|
524
518
|
param: string;
|
|
@@ -782,6 +776,12 @@ export declare const editorExperimentsConfig: {
|
|
|
782
776
|
productKeys?: ProductKeys;
|
|
783
777
|
typeGuard: IsBooleanType;
|
|
784
778
|
};
|
|
779
|
+
platform_editor_table_sticky_header_patch_9: {
|
|
780
|
+
defaultValue: boolean;
|
|
781
|
+
param: string;
|
|
782
|
+
productKeys?: ProductKeys;
|
|
783
|
+
typeGuard: IsBooleanType;
|
|
784
|
+
};
|
|
785
785
|
platform_use_llm_space_recommendations: {
|
|
786
786
|
defaultValue: boolean;
|
|
787
787
|
param: string;
|
package/package.json
CHANGED