@atlaskit/tmp-editor-statsig 16.20.0 → 16.21.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
|
+
## 16.21.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`04d96dd658eea`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/04d96dd658eea) -
|
|
8
|
+
EDITOR-4534 - Inline Bodied Macro: register experiment
|
|
9
|
+
platform_editor_render_bodied_extension_as_inline
|
|
10
|
+
|
|
3
11
|
## 16.20.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -862,6 +862,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
862
862
|
values: ['control', 'test'],
|
|
863
863
|
defaultValue: 'control'
|
|
864
864
|
}),
|
|
865
|
+
// Added 2026-01-09
|
|
866
|
+
platform_editor_render_bodied_extension_as_inline: (0, _experimentBuilders.createBooleanExperiment)({
|
|
867
|
+
productKeys: {
|
|
868
|
+
confluence: 'platform_editor_render_bodied_extension_as_inline'
|
|
869
|
+
},
|
|
870
|
+
param: 'isEnabled',
|
|
871
|
+
defaultValue: false
|
|
872
|
+
}),
|
|
865
873
|
// Added 2025-12-04
|
|
866
874
|
confluence_compact_text_format: (0, _experimentBuilders.createBooleanExperiment)({
|
|
867
875
|
productKeys: {
|
|
@@ -856,6 +856,14 @@ export const editorExperimentsConfig = {
|
|
|
856
856
|
values: ['control', 'test'],
|
|
857
857
|
defaultValue: 'control'
|
|
858
858
|
}),
|
|
859
|
+
// Added 2026-01-09
|
|
860
|
+
platform_editor_render_bodied_extension_as_inline: createBooleanExperiment({
|
|
861
|
+
productKeys: {
|
|
862
|
+
confluence: 'platform_editor_render_bodied_extension_as_inline'
|
|
863
|
+
},
|
|
864
|
+
param: 'isEnabled',
|
|
865
|
+
defaultValue: false
|
|
866
|
+
}),
|
|
859
867
|
// Added 2025-12-04
|
|
860
868
|
confluence_compact_text_format: createBooleanExperiment({
|
|
861
869
|
productKeys: {
|
|
@@ -856,6 +856,14 @@ export var editorExperimentsConfig = {
|
|
|
856
856
|
values: ['control', 'test'],
|
|
857
857
|
defaultValue: 'control'
|
|
858
858
|
}),
|
|
859
|
+
// Added 2026-01-09
|
|
860
|
+
platform_editor_render_bodied_extension_as_inline: createBooleanExperiment({
|
|
861
|
+
productKeys: {
|
|
862
|
+
confluence: 'platform_editor_render_bodied_extension_as_inline'
|
|
863
|
+
},
|
|
864
|
+
param: 'isEnabled',
|
|
865
|
+
defaultValue: false
|
|
866
|
+
}),
|
|
859
867
|
// Added 2025-12-04
|
|
860
868
|
confluence_compact_text_format: createBooleanExperiment({
|
|
861
869
|
productKeys: {
|
|
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
|
|
|
118
118
|
productKeys?: ProductKeys;
|
|
119
119
|
typeGuard: IsBooleanType;
|
|
120
120
|
};
|
|
121
|
+
platform_editor_render_bodied_extension_as_inline: {
|
|
122
|
+
defaultValue: boolean;
|
|
123
|
+
param: string;
|
|
124
|
+
productKeys?: ProductKeys;
|
|
125
|
+
typeGuard: IsBooleanType;
|
|
126
|
+
};
|
|
121
127
|
confluence_compact_text_format: {
|
|
122
128
|
defaultValue: boolean;
|
|
123
129
|
param: string;
|
|
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
|
|
|
118
118
|
productKeys?: ProductKeys;
|
|
119
119
|
typeGuard: IsBooleanType;
|
|
120
120
|
};
|
|
121
|
+
platform_editor_render_bodied_extension_as_inline: {
|
|
122
|
+
defaultValue: boolean;
|
|
123
|
+
param: string;
|
|
124
|
+
productKeys?: ProductKeys;
|
|
125
|
+
typeGuard: IsBooleanType;
|
|
126
|
+
};
|
|
121
127
|
confluence_compact_text_format: {
|
|
122
128
|
defaultValue: boolean;
|
|
123
129
|
param: string;
|
package/package.json
CHANGED