@atlaskit/tmp-editor-statsig 17.12.0 → 17.13.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
|
+
## 17.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`38dee2c85c456`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38dee2c85c456) -
|
|
8
|
+
[EDITOR-4486] add new experiment to config
|
|
9
|
+
|
|
3
10
|
## 17.12.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1326,5 +1326,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1326
1326
|
},
|
|
1327
1327
|
param: 'isEnabled',
|
|
1328
1328
|
defaultValue: false
|
|
1329
|
+
}),
|
|
1330
|
+
// Added 2026-02-02
|
|
1331
|
+
platform_editor_hide_toolbar_tooltips_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1332
|
+
productKeys: {
|
|
1333
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1334
|
+
},
|
|
1335
|
+
param: 'isEnabled',
|
|
1336
|
+
defaultValue: false
|
|
1329
1337
|
})
|
|
1330
1338
|
};
|
|
@@ -1320,5 +1320,13 @@ export const editorExperimentsConfig = {
|
|
|
1320
1320
|
},
|
|
1321
1321
|
param: 'isEnabled',
|
|
1322
1322
|
defaultValue: false
|
|
1323
|
+
}),
|
|
1324
|
+
// Added 2026-02-02
|
|
1325
|
+
platform_editor_hide_toolbar_tooltips_fix: createBooleanExperiment({
|
|
1326
|
+
productKeys: {
|
|
1327
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1328
|
+
},
|
|
1329
|
+
param: 'isEnabled',
|
|
1330
|
+
defaultValue: false
|
|
1323
1331
|
})
|
|
1324
1332
|
};
|
|
@@ -1320,5 +1320,13 @@ export var editorExperimentsConfig = {
|
|
|
1320
1320
|
},
|
|
1321
1321
|
param: 'isEnabled',
|
|
1322
1322
|
defaultValue: false
|
|
1323
|
+
}),
|
|
1324
|
+
// Added 2026-02-02
|
|
1325
|
+
platform_editor_hide_toolbar_tooltips_fix: createBooleanExperiment({
|
|
1326
|
+
productKeys: {
|
|
1327
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1328
|
+
},
|
|
1329
|
+
param: 'isEnabled',
|
|
1330
|
+
defaultValue: false
|
|
1323
1331
|
})
|
|
1324
1332
|
};
|
|
@@ -982,5 +982,11 @@ export declare const editorExperimentsConfig: {
|
|
|
982
982
|
productKeys?: ProductKeys;
|
|
983
983
|
typeGuard: IsBooleanType;
|
|
984
984
|
};
|
|
985
|
+
platform_editor_hide_toolbar_tooltips_fix: {
|
|
986
|
+
defaultValue: boolean;
|
|
987
|
+
param: string;
|
|
988
|
+
productKeys?: ProductKeys;
|
|
989
|
+
typeGuard: IsBooleanType;
|
|
990
|
+
};
|
|
985
991
|
};
|
|
986
992
|
export {};
|
|
@@ -982,5 +982,11 @@ export declare const editorExperimentsConfig: {
|
|
|
982
982
|
productKeys?: ProductKeys;
|
|
983
983
|
typeGuard: IsBooleanType;
|
|
984
984
|
};
|
|
985
|
+
platform_editor_hide_toolbar_tooltips_fix: {
|
|
986
|
+
defaultValue: boolean;
|
|
987
|
+
param: string;
|
|
988
|
+
productKeys?: ProductKeys;
|
|
989
|
+
typeGuard: IsBooleanType;
|
|
990
|
+
};
|
|
985
991
|
};
|
|
986
992
|
export {};
|
package/package.json
CHANGED