@atlaskit/tmp-editor-statsig 25.3.0 → 25.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 25.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4ba962abdce44`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4ba962abdce44) -
|
|
8
|
+
EDITOR-4667 - Inline Bodied Extension: Remove important from existing extension width style
|
|
9
|
+
|
|
3
10
|
## 25.3.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -78,6 +78,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
78
78
|
param: 'isEnabled',
|
|
79
79
|
defaultValue: false
|
|
80
80
|
}),
|
|
81
|
+
// Added 2026-02-16
|
|
82
|
+
platform_editor_remove_important_in_render_ext: (0, _experimentBuilders.createBooleanExperiment)({
|
|
83
|
+
productKeys: {
|
|
84
|
+
confluence: 'platform_editor_remove_important_in_render_ext'
|
|
85
|
+
},
|
|
86
|
+
param: 'isEnabled',
|
|
87
|
+
defaultValue: false
|
|
88
|
+
}),
|
|
81
89
|
// Added 2025-12-10
|
|
82
90
|
confluence_max_width_content_appearance: (0, _experimentBuilders.createBooleanExperiment)({
|
|
83
91
|
productKeys: {
|
|
@@ -72,6 +72,14 @@ export const editorExperimentsConfig = {
|
|
|
72
72
|
param: 'isEnabled',
|
|
73
73
|
defaultValue: false
|
|
74
74
|
}),
|
|
75
|
+
// Added 2026-02-16
|
|
76
|
+
platform_editor_remove_important_in_render_ext: createBooleanExperiment({
|
|
77
|
+
productKeys: {
|
|
78
|
+
confluence: 'platform_editor_remove_important_in_render_ext'
|
|
79
|
+
},
|
|
80
|
+
param: 'isEnabled',
|
|
81
|
+
defaultValue: false
|
|
82
|
+
}),
|
|
75
83
|
// Added 2025-12-10
|
|
76
84
|
confluence_max_width_content_appearance: createBooleanExperiment({
|
|
77
85
|
productKeys: {
|
|
@@ -72,6 +72,14 @@ export var editorExperimentsConfig = {
|
|
|
72
72
|
param: 'isEnabled',
|
|
73
73
|
defaultValue: false
|
|
74
74
|
}),
|
|
75
|
+
// Added 2026-02-16
|
|
76
|
+
platform_editor_remove_important_in_render_ext: createBooleanExperiment({
|
|
77
|
+
productKeys: {
|
|
78
|
+
confluence: 'platform_editor_remove_important_in_render_ext'
|
|
79
|
+
},
|
|
80
|
+
param: 'isEnabled',
|
|
81
|
+
defaultValue: false
|
|
82
|
+
}),
|
|
75
83
|
// Added 2025-12-10
|
|
76
84
|
confluence_max_width_content_appearance: createBooleanExperiment({
|
|
77
85
|
productKeys: {
|
|
@@ -160,6 +160,12 @@ export declare const editorExperimentsConfig: {
|
|
|
160
160
|
productKeys?: ProductKeys;
|
|
161
161
|
typeGuard: IsBooleanType;
|
|
162
162
|
};
|
|
163
|
+
platform_editor_remove_important_in_render_ext: {
|
|
164
|
+
defaultValue: boolean;
|
|
165
|
+
param: string;
|
|
166
|
+
productKeys?: ProductKeys;
|
|
167
|
+
typeGuard: IsBooleanType;
|
|
168
|
+
};
|
|
163
169
|
confluence_max_width_content_appearance: {
|
|
164
170
|
defaultValue: boolean;
|
|
165
171
|
param: string;
|
|
@@ -160,6 +160,12 @@ export declare const editorExperimentsConfig: {
|
|
|
160
160
|
productKeys?: ProductKeys;
|
|
161
161
|
typeGuard: IsBooleanType;
|
|
162
162
|
};
|
|
163
|
+
platform_editor_remove_important_in_render_ext: {
|
|
164
|
+
defaultValue: boolean;
|
|
165
|
+
param: string;
|
|
166
|
+
productKeys?: ProductKeys;
|
|
167
|
+
typeGuard: IsBooleanType;
|
|
168
|
+
};
|
|
163
169
|
confluence_max_width_content_appearance: {
|
|
164
170
|
defaultValue: boolean;
|
|
165
171
|
param: string;
|
package/package.json
CHANGED