@atlaskit/tmp-editor-statsig 16.8.0 → 16.9.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.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8c24728c97456`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c24728c97456) -
|
|
8
|
+
EDITOR-3638 Exclude zero intersection entries when scroll is detected
|
|
9
|
+
|
|
3
10
|
## 16.8.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -101,6 +101,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
101
101
|
param: 'isEnabled',
|
|
102
102
|
defaultValue: false
|
|
103
103
|
}),
|
|
104
|
+
// Added 2026-01-7
|
|
105
|
+
platform_editor_table_sticky_header_patch_10: (0, _experimentBuilders.createBooleanExperiment)({
|
|
106
|
+
productKeys: {
|
|
107
|
+
confluence: 'platform_editor_table_sticky_header_patch_10'
|
|
108
|
+
},
|
|
109
|
+
param: 'isEnabled',
|
|
110
|
+
defaultValue: false
|
|
111
|
+
}),
|
|
104
112
|
// Added 2025-11-17
|
|
105
113
|
platform_editor_renderer_extension_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
106
114
|
productKeys: {
|
|
@@ -95,6 +95,14 @@ export const editorExperimentsConfig = {
|
|
|
95
95
|
param: 'isEnabled',
|
|
96
96
|
defaultValue: false
|
|
97
97
|
}),
|
|
98
|
+
// Added 2026-01-7
|
|
99
|
+
platform_editor_table_sticky_header_patch_10: createBooleanExperiment({
|
|
100
|
+
productKeys: {
|
|
101
|
+
confluence: 'platform_editor_table_sticky_header_patch_10'
|
|
102
|
+
},
|
|
103
|
+
param: 'isEnabled',
|
|
104
|
+
defaultValue: false
|
|
105
|
+
}),
|
|
98
106
|
// Added 2025-11-17
|
|
99
107
|
platform_editor_renderer_extension_width_fix: createBooleanExperiment({
|
|
100
108
|
productKeys: {
|
|
@@ -95,6 +95,14 @@ export var editorExperimentsConfig = {
|
|
|
95
95
|
param: 'isEnabled',
|
|
96
96
|
defaultValue: false
|
|
97
97
|
}),
|
|
98
|
+
// Added 2026-01-7
|
|
99
|
+
platform_editor_table_sticky_header_patch_10: createBooleanExperiment({
|
|
100
|
+
productKeys: {
|
|
101
|
+
confluence: 'platform_editor_table_sticky_header_patch_10'
|
|
102
|
+
},
|
|
103
|
+
param: 'isEnabled',
|
|
104
|
+
defaultValue: false
|
|
105
|
+
}),
|
|
98
106
|
// Added 2025-11-17
|
|
99
107
|
platform_editor_renderer_extension_width_fix: createBooleanExperiment({
|
|
100
108
|
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_10: {
|
|
786
|
+
defaultValue: boolean;
|
|
787
|
+
param: string;
|
|
788
|
+
productKeys?: ProductKeys;
|
|
789
|
+
typeGuard: IsBooleanType;
|
|
790
|
+
};
|
|
785
791
|
smart_link_confluence_short_link_analytics: {
|
|
786
792
|
defaultValue: 'control' | 'test';
|
|
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_10: {
|
|
786
|
+
defaultValue: boolean;
|
|
787
|
+
param: string;
|
|
788
|
+
productKeys?: ProductKeys;
|
|
789
|
+
typeGuard: IsBooleanType;
|
|
790
|
+
};
|
|
785
791
|
smart_link_confluence_short_link_analytics: {
|
|
786
792
|
defaultValue: 'control' | 'test';
|
|
787
793
|
param: string;
|
package/package.json
CHANGED