@atlaskit/tmp-editor-statsig 23.0.0 → 23.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 +7 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +7 -0
- package/dist/types-ts4.5/experiments-config.d.ts +7 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 23.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`fcc51e510981b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fcc51e510981b) -
|
|
8
|
+
[ux] Add logic to filter and pin create database menu item to editor toolbar for experiment.
|
|
9
|
+
|
|
3
10
|
## 23.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -14,7 +14,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
14
14
|
cc_editor_insm_outlier_events: 'test',
|
|
15
15
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
16
16
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
17
|
-
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
17
|
+
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
18
|
+
cc_fd_db_top_editor_toolbar: 'control'
|
|
18
19
|
};
|
|
19
20
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
20
21
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -1324,6 +1324,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1324
1324
|
param: 'isEnabled',
|
|
1325
1325
|
defaultValue: false
|
|
1326
1326
|
}),
|
|
1327
|
+
// Added 2026-02-05
|
|
1328
|
+
cc_fd_db_top_editor_toolbar: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1329
|
+
productKeys: {
|
|
1330
|
+
confluence: 'cc_fd_db_top_editor_toolbar'
|
|
1331
|
+
},
|
|
1332
|
+
param: 'cohort',
|
|
1333
|
+
values: ['control', 'new-description', 'orig-description'],
|
|
1334
|
+
defaultValue: 'control'
|
|
1335
|
+
}),
|
|
1327
1336
|
// Added 2026-01-28
|
|
1328
1337
|
platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1329
1338
|
productKeys: {
|
|
@@ -8,7 +8,8 @@ export const testMultivariateOverrides = {
|
|
|
8
8
|
cc_editor_insm_outlier_events: 'test',
|
|
9
9
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
10
10
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
11
|
-
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
11
|
+
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
12
|
+
cc_fd_db_top_editor_toolbar: 'control'
|
|
12
13
|
};
|
|
13
14
|
export const testBooleanOverrides = {
|
|
14
15
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -1318,6 +1318,15 @@ export const editorExperimentsConfig = {
|
|
|
1318
1318
|
param: 'isEnabled',
|
|
1319
1319
|
defaultValue: false
|
|
1320
1320
|
}),
|
|
1321
|
+
// Added 2026-02-05
|
|
1322
|
+
cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
|
|
1323
|
+
productKeys: {
|
|
1324
|
+
confluence: 'cc_fd_db_top_editor_toolbar'
|
|
1325
|
+
},
|
|
1326
|
+
param: 'cohort',
|
|
1327
|
+
values: ['control', 'new-description', 'orig-description'],
|
|
1328
|
+
defaultValue: 'control'
|
|
1329
|
+
}),
|
|
1321
1330
|
// Added 2026-01-28
|
|
1322
1331
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1323
1332
|
productKeys: {
|
|
@@ -8,7 +8,8 @@ export var testMultivariateOverrides = {
|
|
|
8
8
|
cc_editor_insm_outlier_events: 'test',
|
|
9
9
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
10
10
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
11
|
-
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
11
|
+
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
12
|
+
cc_fd_db_top_editor_toolbar: 'control'
|
|
12
13
|
};
|
|
13
14
|
export var testBooleanOverrides = {
|
|
14
15
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -1318,6 +1318,15 @@ export var editorExperimentsConfig = {
|
|
|
1318
1318
|
param: 'isEnabled',
|
|
1319
1319
|
defaultValue: false
|
|
1320
1320
|
}),
|
|
1321
|
+
// Added 2026-02-05
|
|
1322
|
+
cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
|
|
1323
|
+
productKeys: {
|
|
1324
|
+
confluence: 'cc_fd_db_top_editor_toolbar'
|
|
1325
|
+
},
|
|
1326
|
+
param: 'cohort',
|
|
1327
|
+
values: ['control', 'new-description', 'orig-description'],
|
|
1328
|
+
defaultValue: 'control'
|
|
1329
|
+
}),
|
|
1321
1330
|
// Added 2026-01-28
|
|
1322
1331
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1323
1332
|
productKeys: {
|
|
@@ -978,6 +978,13 @@ export declare const editorExperimentsConfig: {
|
|
|
978
978
|
productKeys?: ProductKeys;
|
|
979
979
|
typeGuard: IsBooleanType;
|
|
980
980
|
};
|
|
981
|
+
cc_fd_db_top_editor_toolbar: {
|
|
982
|
+
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
983
|
+
param: string;
|
|
984
|
+
productKeys?: ProductKeys;
|
|
985
|
+
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
986
|
+
values: ('control' | 'new-description' | 'orig-description')[];
|
|
987
|
+
};
|
|
981
988
|
platform_editor_smartlink_local_cache: {
|
|
982
989
|
defaultValue: boolean;
|
|
983
990
|
param: string;
|
|
@@ -978,6 +978,13 @@ export declare const editorExperimentsConfig: {
|
|
|
978
978
|
productKeys?: ProductKeys;
|
|
979
979
|
typeGuard: IsBooleanType;
|
|
980
980
|
};
|
|
981
|
+
cc_fd_db_top_editor_toolbar: {
|
|
982
|
+
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
983
|
+
param: string;
|
|
984
|
+
productKeys?: ProductKeys;
|
|
985
|
+
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
986
|
+
values: ('control' | 'new-description' | 'orig-description')[];
|
|
987
|
+
};
|
|
981
988
|
platform_editor_smartlink_local_cache: {
|
|
982
989
|
defaultValue: boolean;
|
|
983
990
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.1.0",
|
|
4
4
|
"description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"atlaskit:src": "src/index.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
37
|
-
"@atlaskit/react-ufo": "^5.
|
|
37
|
+
"@atlaskit/react-ufo": "^5.2.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|