@atlaskit/tmp-editor-statsig 135.8.0 → 135.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`109c3998554f2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/109c3998554f2) -
|
|
8
|
+
Add SSR-safe, experiment-gated CSS overflow shadows for editor tables and keep renderer shadows
|
|
9
|
+
within table bounds when sticky scrollbars are present.
|
|
10
|
+
|
|
3
11
|
## 135.8.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -46,6 +46,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
46
46
|
param: 'isEnabled',
|
|
47
47
|
defaultValue: false
|
|
48
48
|
}),
|
|
49
|
+
// Added 2026-07-28
|
|
50
|
+
platform_editor_table_css_overflow_shadow: (0, _experimentBuilders.createBooleanExperiment)({
|
|
51
|
+
productKeys: {
|
|
52
|
+
confluence: 'platform_editor_table_css_overflow_shadow',
|
|
53
|
+
jira: 'platform_editor_table_css_overflow_shadow'
|
|
54
|
+
},
|
|
55
|
+
param: 'isEnabled',
|
|
56
|
+
defaultValue: false
|
|
57
|
+
}),
|
|
49
58
|
// Added 2026-07-24
|
|
50
59
|
platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
51
60
|
productKeys: {
|
|
@@ -40,6 +40,15 @@ export const editorExperimentsConfig = {
|
|
|
40
40
|
param: 'isEnabled',
|
|
41
41
|
defaultValue: false
|
|
42
42
|
}),
|
|
43
|
+
// Added 2026-07-28
|
|
44
|
+
platform_editor_table_css_overflow_shadow: createBooleanExperiment({
|
|
45
|
+
productKeys: {
|
|
46
|
+
confluence: 'platform_editor_table_css_overflow_shadow',
|
|
47
|
+
jira: 'platform_editor_table_css_overflow_shadow'
|
|
48
|
+
},
|
|
49
|
+
param: 'isEnabled',
|
|
50
|
+
defaultValue: false
|
|
51
|
+
}),
|
|
43
52
|
// Added 2026-07-24
|
|
44
53
|
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
45
54
|
productKeys: {
|
|
@@ -40,6 +40,15 @@ export var editorExperimentsConfig = {
|
|
|
40
40
|
param: 'isEnabled',
|
|
41
41
|
defaultValue: false
|
|
42
42
|
}),
|
|
43
|
+
// Added 2026-07-28
|
|
44
|
+
platform_editor_table_css_overflow_shadow: createBooleanExperiment({
|
|
45
|
+
productKeys: {
|
|
46
|
+
confluence: 'platform_editor_table_css_overflow_shadow',
|
|
47
|
+
jira: 'platform_editor_table_css_overflow_shadow'
|
|
48
|
+
},
|
|
49
|
+
param: 'isEnabled',
|
|
50
|
+
defaultValue: false
|
|
51
|
+
}),
|
|
43
52
|
// Added 2026-07-24
|
|
44
53
|
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
45
54
|
productKeys: {
|
|
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
|
|
|
21
21
|
* existing experiments.
|
|
22
22
|
*/
|
|
23
23
|
export declare const editorExperimentsConfig: {
|
|
24
|
+
platform_editor_table_css_overflow_shadow: {
|
|
25
|
+
defaultValue: boolean;
|
|
26
|
+
param: string;
|
|
27
|
+
productKeys?: ProductKeys;
|
|
28
|
+
typeGuard: IsBooleanType;
|
|
29
|
+
};
|
|
24
30
|
platform_editor_layout_column_delete_shortcut_fix: {
|
|
25
31
|
defaultValue: boolean;
|
|
26
32
|
param: string;
|
package/package.json
CHANGED