@atlaskit/tmp-editor-statsig 126.3.0 → 126.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 126.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8bdbc5ba79617`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8bdbc5ba79617) -
|
|
8
|
+
[ux] Gate the table active cell decoration behind `platform_editor_table_q4_patch_3` so it is not
|
|
9
|
+
calculated or rendered until the editor has had its first interaction. Fix row control
|
|
10
|
+
mis-alignment issues.
|
|
11
|
+
|
|
3
12
|
## 126.3.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -2043,6 +2043,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2043
2043
|
param: 'isEnabled',
|
|
2044
2044
|
defaultValue: false
|
|
2045
2045
|
}),
|
|
2046
|
+
// Added 2026-07-16
|
|
2047
|
+
platform_editor_table_q4_patch_3: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2048
|
+
productKeys: {
|
|
2049
|
+
confluence: 'platform_editor_table_q4_patch_3',
|
|
2050
|
+
jira: 'platform_editor_table_q4_patch_3'
|
|
2051
|
+
},
|
|
2052
|
+
param: 'isEnabled',
|
|
2053
|
+
defaultValue: false
|
|
2054
|
+
}),
|
|
2046
2055
|
// Added 2026-05-11
|
|
2047
2056
|
platform_editor_table_menu_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2048
2057
|
productKeys: {
|
|
@@ -2037,6 +2037,15 @@ export const editorExperimentsConfig = {
|
|
|
2037
2037
|
param: 'isEnabled',
|
|
2038
2038
|
defaultValue: false
|
|
2039
2039
|
}),
|
|
2040
|
+
// Added 2026-07-16
|
|
2041
|
+
platform_editor_table_q4_patch_3: createBooleanExperiment({
|
|
2042
|
+
productKeys: {
|
|
2043
|
+
confluence: 'platform_editor_table_q4_patch_3',
|
|
2044
|
+
jira: 'platform_editor_table_q4_patch_3'
|
|
2045
|
+
},
|
|
2046
|
+
param: 'isEnabled',
|
|
2047
|
+
defaultValue: false
|
|
2048
|
+
}),
|
|
2040
2049
|
// Added 2026-05-11
|
|
2041
2050
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2042
2051
|
productKeys: {
|
|
@@ -2037,6 +2037,15 @@ export var editorExperimentsConfig = {
|
|
|
2037
2037
|
param: 'isEnabled',
|
|
2038
2038
|
defaultValue: false
|
|
2039
2039
|
}),
|
|
2040
|
+
// Added 2026-07-16
|
|
2041
|
+
platform_editor_table_q4_patch_3: createBooleanExperiment({
|
|
2042
|
+
productKeys: {
|
|
2043
|
+
confluence: 'platform_editor_table_q4_patch_3',
|
|
2044
|
+
jira: 'platform_editor_table_q4_patch_3'
|
|
2045
|
+
},
|
|
2046
|
+
param: 'isEnabled',
|
|
2047
|
+
defaultValue: false
|
|
2048
|
+
}),
|
|
2040
2049
|
// Added 2026-05-11
|
|
2041
2050
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2042
2051
|
productKeys: {
|
|
@@ -1504,6 +1504,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1504
1504
|
productKeys?: ProductKeys;
|
|
1505
1505
|
typeGuard: IsBooleanType;
|
|
1506
1506
|
};
|
|
1507
|
+
platform_editor_table_q4_patch_3: {
|
|
1508
|
+
defaultValue: boolean;
|
|
1509
|
+
param: string;
|
|
1510
|
+
productKeys?: ProductKeys;
|
|
1511
|
+
typeGuard: IsBooleanType;
|
|
1512
|
+
};
|
|
1507
1513
|
platform_editor_table_menu_updates: {
|
|
1508
1514
|
defaultValue: boolean;
|
|
1509
1515
|
param: string;
|
package/package.json
CHANGED