@atlaskit/tmp-editor-statsig 13.38.1 → 13.39.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.39.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d2da08dd6c682`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d2da08dd6c682) -
|
|
8
|
+
use css driven width for extension styles in renderer
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 13.38.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -58,6 +58,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
58
58
|
values: ['control', 'test'],
|
|
59
59
|
defaultValue: 'control'
|
|
60
60
|
}),
|
|
61
|
+
// Added 2025-11-17
|
|
62
|
+
platform_editor_renderer_extension_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
63
|
+
productKeys: {
|
|
64
|
+
confluence: 'platform_editor_renderer_extension_width_fix'
|
|
65
|
+
},
|
|
66
|
+
param: 'isEnabled',
|
|
67
|
+
defaultValue: false
|
|
68
|
+
}),
|
|
61
69
|
// Added 2025-09-30
|
|
62
70
|
// variant 1: remove table overflow shadows completely, no table border shown when scrolling.
|
|
63
71
|
// variant 2: remove table overflow shadows, show table border when scrolling.
|
|
@@ -52,6 +52,14 @@ export const editorExperimentsConfig = {
|
|
|
52
52
|
values: ['control', 'test'],
|
|
53
53
|
defaultValue: 'control'
|
|
54
54
|
}),
|
|
55
|
+
// Added 2025-11-17
|
|
56
|
+
platform_editor_renderer_extension_width_fix: createBooleanExperiment({
|
|
57
|
+
productKeys: {
|
|
58
|
+
confluence: 'platform_editor_renderer_extension_width_fix'
|
|
59
|
+
},
|
|
60
|
+
param: 'isEnabled',
|
|
61
|
+
defaultValue: false
|
|
62
|
+
}),
|
|
55
63
|
// Added 2025-09-30
|
|
56
64
|
// variant 1: remove table overflow shadows completely, no table border shown when scrolling.
|
|
57
65
|
// variant 2: remove table overflow shadows, show table border when scrolling.
|
|
@@ -52,6 +52,14 @@ export var editorExperimentsConfig = {
|
|
|
52
52
|
values: ['control', 'test'],
|
|
53
53
|
defaultValue: 'control'
|
|
54
54
|
}),
|
|
55
|
+
// Added 2025-11-17
|
|
56
|
+
platform_editor_renderer_extension_width_fix: createBooleanExperiment({
|
|
57
|
+
productKeys: {
|
|
58
|
+
confluence: 'platform_editor_renderer_extension_width_fix'
|
|
59
|
+
},
|
|
60
|
+
param: 'isEnabled',
|
|
61
|
+
defaultValue: false
|
|
62
|
+
}),
|
|
55
63
|
// Added 2025-09-30
|
|
56
64
|
// variant 1: remove table overflow shadows completely, no table border shown when scrolling.
|
|
57
65
|
// variant 2: remove table overflow shadows, show table border when scrolling.
|
|
@@ -36,6 +36,12 @@ export declare const editorExperimentsConfig: {
|
|
|
36
36
|
param: string;
|
|
37
37
|
productKeys?: import("./types").ProductKeys;
|
|
38
38
|
};
|
|
39
|
+
platform_editor_renderer_extension_width_fix: {
|
|
40
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
41
|
+
defaultValue: boolean;
|
|
42
|
+
param: string;
|
|
43
|
+
productKeys?: import("./types").ProductKeys;
|
|
44
|
+
};
|
|
39
45
|
platform_editor_disable_table_overflow_shadows: {
|
|
40
46
|
values: ("control" | "variant1" | "variant2" | "variant3")[];
|
|
41
47
|
typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
|
|
@@ -36,6 +36,12 @@ export declare const editorExperimentsConfig: {
|
|
|
36
36
|
param: string;
|
|
37
37
|
productKeys?: import("./types").ProductKeys;
|
|
38
38
|
};
|
|
39
|
+
platform_editor_renderer_extension_width_fix: {
|
|
40
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
41
|
+
defaultValue: boolean;
|
|
42
|
+
param: string;
|
|
43
|
+
productKeys?: import("./types").ProductKeys;
|
|
44
|
+
};
|
|
39
45
|
platform_editor_disable_table_overflow_shadows: {
|
|
40
46
|
values: ("control" | "variant1" | "variant2" | "variant3")[];
|
|
41
47
|
typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
|
package/package.json
CHANGED