@atlaskit/tmp-editor-statsig 22.0.0 → 22.1.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
|
+
## 22.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2126e50c0c9e4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2126e50c0c9e4) -
|
|
8
|
+
[EDITOR-4926] add new experiment to statsig config
|
|
9
|
+
|
|
3
10
|
## 22.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -1314,5 +1314,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1314
1314
|
},
|
|
1315
1315
|
param: 'isEnabled',
|
|
1316
1316
|
defaultValue: false
|
|
1317
|
+
}),
|
|
1318
|
+
// Added 2026-02-05
|
|
1319
|
+
platform_editor_toolbar_split_button_ui: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1320
|
+
productKeys: {
|
|
1321
|
+
confluence: 'platform_editor_toolbar_split_button_ui'
|
|
1322
|
+
},
|
|
1323
|
+
param: 'isEnabled',
|
|
1324
|
+
defaultValue: false
|
|
1317
1325
|
})
|
|
1318
1326
|
};
|
|
@@ -1308,5 +1308,13 @@ export const editorExperimentsConfig = {
|
|
|
1308
1308
|
},
|
|
1309
1309
|
param: 'isEnabled',
|
|
1310
1310
|
defaultValue: false
|
|
1311
|
+
}),
|
|
1312
|
+
// Added 2026-02-05
|
|
1313
|
+
platform_editor_toolbar_split_button_ui: createBooleanExperiment({
|
|
1314
|
+
productKeys: {
|
|
1315
|
+
confluence: 'platform_editor_toolbar_split_button_ui'
|
|
1316
|
+
},
|
|
1317
|
+
param: 'isEnabled',
|
|
1318
|
+
defaultValue: false
|
|
1311
1319
|
})
|
|
1312
1320
|
};
|
|
@@ -1308,5 +1308,13 @@ export var editorExperimentsConfig = {
|
|
|
1308
1308
|
},
|
|
1309
1309
|
param: 'isEnabled',
|
|
1310
1310
|
defaultValue: false
|
|
1311
|
+
}),
|
|
1312
|
+
// Added 2026-02-05
|
|
1313
|
+
platform_editor_toolbar_split_button_ui: createBooleanExperiment({
|
|
1314
|
+
productKeys: {
|
|
1315
|
+
confluence: 'platform_editor_toolbar_split_button_ui'
|
|
1316
|
+
},
|
|
1317
|
+
param: 'isEnabled',
|
|
1318
|
+
defaultValue: false
|
|
1311
1319
|
})
|
|
1312
1320
|
};
|
|
@@ -972,5 +972,11 @@ export declare const editorExperimentsConfig: {
|
|
|
972
972
|
productKeys?: ProductKeys;
|
|
973
973
|
typeGuard: IsBooleanType;
|
|
974
974
|
};
|
|
975
|
+
platform_editor_toolbar_split_button_ui: {
|
|
976
|
+
defaultValue: boolean;
|
|
977
|
+
param: string;
|
|
978
|
+
productKeys?: ProductKeys;
|
|
979
|
+
typeGuard: IsBooleanType;
|
|
980
|
+
};
|
|
975
981
|
};
|
|
976
982
|
export {};
|
|
@@ -972,5 +972,11 @@ export declare const editorExperimentsConfig: {
|
|
|
972
972
|
productKeys?: ProductKeys;
|
|
973
973
|
typeGuard: IsBooleanType;
|
|
974
974
|
};
|
|
975
|
+
platform_editor_toolbar_split_button_ui: {
|
|
976
|
+
defaultValue: boolean;
|
|
977
|
+
param: string;
|
|
978
|
+
productKeys?: ProductKeys;
|
|
979
|
+
typeGuard: IsBooleanType;
|
|
980
|
+
};
|
|
975
981
|
};
|
|
976
982
|
export {};
|
package/package.json
CHANGED