@atlaskit/tmp-editor-statsig 132.4.0 → 132.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 132.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6f1a6a07b4be1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6f1a6a07b4be1) -
|
|
8
|
+
Fixes malfunctioning sticky header row when header columns are merged
|
|
9
|
+
|
|
3
10
|
## 132.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2258,6 +2258,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2258
2258
|
param: 'isEnabled',
|
|
2259
2259
|
defaultValue: false
|
|
2260
2260
|
}),
|
|
2261
|
+
// Added 2026-07-17
|
|
2262
|
+
platform_editor_fix_sticky_header_row: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2263
|
+
productKeys: {
|
|
2264
|
+
confluence: 'platform_editor_fix_sticky_header_row'
|
|
2265
|
+
},
|
|
2266
|
+
param: 'isEnabled',
|
|
2267
|
+
defaultValue: false
|
|
2268
|
+
}),
|
|
2261
2269
|
// Added 2026-06-10
|
|
2262
2270
|
confluence_editor_paste_3p_link_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2263
2271
|
productKeys: {
|
|
@@ -2252,6 +2252,14 @@ export const editorExperimentsConfig = {
|
|
|
2252
2252
|
param: 'isEnabled',
|
|
2253
2253
|
defaultValue: false
|
|
2254
2254
|
}),
|
|
2255
|
+
// Added 2026-07-17
|
|
2256
|
+
platform_editor_fix_sticky_header_row: createBooleanExperiment({
|
|
2257
|
+
productKeys: {
|
|
2258
|
+
confluence: 'platform_editor_fix_sticky_header_row'
|
|
2259
|
+
},
|
|
2260
|
+
param: 'isEnabled',
|
|
2261
|
+
defaultValue: false
|
|
2262
|
+
}),
|
|
2255
2263
|
// Added 2026-06-10
|
|
2256
2264
|
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
2257
2265
|
productKeys: {
|
|
@@ -2252,6 +2252,14 @@ export var editorExperimentsConfig = {
|
|
|
2252
2252
|
param: 'isEnabled',
|
|
2253
2253
|
defaultValue: false
|
|
2254
2254
|
}),
|
|
2255
|
+
// Added 2026-07-17
|
|
2256
|
+
platform_editor_fix_sticky_header_row: createBooleanExperiment({
|
|
2257
|
+
productKeys: {
|
|
2258
|
+
confluence: 'platform_editor_fix_sticky_header_row'
|
|
2259
|
+
},
|
|
2260
|
+
param: 'isEnabled',
|
|
2261
|
+
defaultValue: false
|
|
2262
|
+
}),
|
|
2255
2263
|
// Added 2026-06-10
|
|
2256
2264
|
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
2257
2265
|
productKeys: {
|
|
@@ -1611,6 +1611,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1611
1611
|
productKeys?: ProductKeys;
|
|
1612
1612
|
typeGuard: IsBooleanType;
|
|
1613
1613
|
};
|
|
1614
|
+
platform_editor_fix_sticky_header_row: {
|
|
1615
|
+
defaultValue: boolean;
|
|
1616
|
+
param: string;
|
|
1617
|
+
productKeys?: ProductKeys;
|
|
1618
|
+
typeGuard: IsBooleanType;
|
|
1619
|
+
};
|
|
1614
1620
|
platform_editor_paste_actions_menu_v2: {
|
|
1615
1621
|
defaultValue: 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
|
|
1616
1622
|
param: string;
|
package/package.json
CHANGED