@atlaskit/tmp-editor-statsig 17.2.0 → 17.3.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
|
+
## 17.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e170ad8b5a383`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e170ad8b5a383) -
|
|
8
|
+
[EDITOR-4501] add new experiment to statsig config
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 17.2.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1234,5 +1234,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1234
1234
|
},
|
|
1235
1235
|
param: 'isEnabled',
|
|
1236
1236
|
defaultValue: false
|
|
1237
|
+
}),
|
|
1238
|
+
// Added 2026-01-29
|
|
1239
|
+
platform_editor_renderer_toolbar_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1240
|
+
productKeys: {
|
|
1241
|
+
confluence: 'platform_editor_renderer_toolbar_updates'
|
|
1242
|
+
},
|
|
1243
|
+
param: 'isEnabled',
|
|
1244
|
+
defaultValue: false
|
|
1237
1245
|
})
|
|
1238
1246
|
};
|
|
@@ -1228,5 +1228,13 @@ export const editorExperimentsConfig = {
|
|
|
1228
1228
|
},
|
|
1229
1229
|
param: 'isEnabled',
|
|
1230
1230
|
defaultValue: false
|
|
1231
|
+
}),
|
|
1232
|
+
// Added 2026-01-29
|
|
1233
|
+
platform_editor_renderer_toolbar_updates: createBooleanExperiment({
|
|
1234
|
+
productKeys: {
|
|
1235
|
+
confluence: 'platform_editor_renderer_toolbar_updates'
|
|
1236
|
+
},
|
|
1237
|
+
param: 'isEnabled',
|
|
1238
|
+
defaultValue: false
|
|
1231
1239
|
})
|
|
1232
1240
|
};
|
|
@@ -1228,5 +1228,13 @@ export var editorExperimentsConfig = {
|
|
|
1228
1228
|
},
|
|
1229
1229
|
param: 'isEnabled',
|
|
1230
1230
|
defaultValue: false
|
|
1231
|
+
}),
|
|
1232
|
+
// Added 2026-01-29
|
|
1233
|
+
platform_editor_renderer_toolbar_updates: createBooleanExperiment({
|
|
1234
|
+
productKeys: {
|
|
1235
|
+
confluence: 'platform_editor_renderer_toolbar_updates'
|
|
1236
|
+
},
|
|
1237
|
+
param: 'isEnabled',
|
|
1238
|
+
defaultValue: false
|
|
1231
1239
|
})
|
|
1232
1240
|
};
|
|
@@ -911,5 +911,11 @@ export declare const editorExperimentsConfig: {
|
|
|
911
911
|
productKeys?: ProductKeys;
|
|
912
912
|
typeGuard: IsBooleanType;
|
|
913
913
|
};
|
|
914
|
+
platform_editor_renderer_toolbar_updates: {
|
|
915
|
+
defaultValue: boolean;
|
|
916
|
+
param: string;
|
|
917
|
+
productKeys?: ProductKeys;
|
|
918
|
+
typeGuard: IsBooleanType;
|
|
919
|
+
};
|
|
914
920
|
};
|
|
915
921
|
export {};
|
|
@@ -911,5 +911,11 @@ export declare const editorExperimentsConfig: {
|
|
|
911
911
|
productKeys?: ProductKeys;
|
|
912
912
|
typeGuard: IsBooleanType;
|
|
913
913
|
};
|
|
914
|
+
platform_editor_renderer_toolbar_updates: {
|
|
915
|
+
defaultValue: boolean;
|
|
916
|
+
param: string;
|
|
917
|
+
productKeys?: ProductKeys;
|
|
918
|
+
typeGuard: IsBooleanType;
|
|
919
|
+
};
|
|
914
920
|
};
|
|
915
921
|
export {};
|
package/package.json
CHANGED