@atlaskit/tmp-editor-statsig 58.0.0 → 59.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 +27 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +26 -8
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +26 -8
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +26 -8
- package/dist/types/experiments-config.d.ts +18 -6
- package/dist/types-ts4.5/experiments-config.d.ts +18 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 59.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`90b759086522c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90b759086522c) -
|
|
8
|
+
Add withCompiledMigration HOC and enforce-compiled-migration-gate ESLint rule for feature-gated
|
|
9
|
+
Emotion to Compiled CSS-in-JS migration
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 59.0.0
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- [`f4951e15e9432`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f4951e15e9432) -
|
|
20
|
+
Removed `platform_editor_emoji_tooltips_on_hover` experiment. Emoji tooltips (title attribute) are
|
|
21
|
+
now always enabled permanently.
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [`f5b6110e36e79`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f5b6110e36e79) -
|
|
26
|
+
[ux] Enables rovo actions post auth experiment ui and exposures
|
|
27
|
+
- [`3f28038f8be0f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3f28038f8be0f) -
|
|
28
|
+
Add support SSR streaming for SSREditorRenderer
|
|
29
|
+
|
|
3
30
|
## 58.0.0
|
|
4
31
|
|
|
5
32
|
### Major Changes
|
|
@@ -20,6 +20,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
20
20
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
21
21
|
platform_sl_3p_auth_rovo_action: false,
|
|
22
22
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
23
|
+
rovogrowth_640_inline_action_nudge: true,
|
|
23
24
|
cwr_blank_object_experiment: false,
|
|
24
25
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
25
26
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -428,6 +428,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
428
428
|
param: 'isEnabled',
|
|
429
429
|
defaultValue: false
|
|
430
430
|
}),
|
|
431
|
+
// Added 2026-03-30
|
|
432
|
+
platform_editor_editor_ssr_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
433
|
+
productKeys: {
|
|
434
|
+
confluence: 'platform_editor_editor_ssr_streaming'
|
|
435
|
+
},
|
|
436
|
+
param: 'isEnabled',
|
|
437
|
+
defaultValue: false
|
|
438
|
+
}),
|
|
431
439
|
// Added 2025-01-19
|
|
432
440
|
platform_editor_ai_edit_response_in_preview: (0, _experimentBuilders.createBooleanExperiment)({
|
|
433
441
|
productKeys: {
|
|
@@ -1067,6 +1075,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1067
1075
|
param: 'isEnabled',
|
|
1068
1076
|
defaultValue: false
|
|
1069
1077
|
}),
|
|
1078
|
+
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1079
|
+
rovogrowth_640_inline_action_nudge: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1080
|
+
productKeys: {
|
|
1081
|
+
confluence: 'rovogrowth_640_inline_action_nudge_exp',
|
|
1082
|
+
jira: 'rovogrowth_640_inline_action_nudge_exp'
|
|
1083
|
+
},
|
|
1084
|
+
param: 'isEnabled',
|
|
1085
|
+
defaultValue: false
|
|
1086
|
+
}),
|
|
1070
1087
|
// Added 2025-01-23
|
|
1071
1088
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1072
1089
|
productKeys: {
|
|
@@ -1290,14 +1307,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1290
1307
|
param: 'isEnabled',
|
|
1291
1308
|
defaultValue: false
|
|
1292
1309
|
}),
|
|
1293
|
-
// Added 2026-02-04
|
|
1294
|
-
platform_editor_emoji_tooltips_on_hover: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1295
|
-
productKeys: {
|
|
1296
|
-
confluence: 'platform_editor_emoji_tooltips_on_hover'
|
|
1297
|
-
},
|
|
1298
|
-
param: 'isEnabled',
|
|
1299
|
-
defaultValue: false
|
|
1300
|
-
}),
|
|
1301
1310
|
// Added 2026-16-05
|
|
1302
1311
|
platform_editor_outdated_browser_update: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1303
1312
|
productKeys: {
|
|
@@ -1976,5 +1985,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1976
1985
|
},
|
|
1977
1986
|
param: 'isEnabled',
|
|
1978
1987
|
defaultValue: false
|
|
1988
|
+
}),
|
|
1989
|
+
// Added 2026-04-10
|
|
1990
|
+
platform_editor_static_css: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1991
|
+
productKeys: {
|
|
1992
|
+
confluence: 'platform_editor_static_css',
|
|
1993
|
+
jira: 'platform_editor_static_css'
|
|
1994
|
+
},
|
|
1995
|
+
param: 'isEnabled',
|
|
1996
|
+
defaultValue: false
|
|
1979
1997
|
})
|
|
1980
1998
|
};
|
|
@@ -14,6 +14,7 @@ export const testMultivariateOverrides = {
|
|
|
14
14
|
export const testBooleanOverrides = {
|
|
15
15
|
platform_sl_3p_auth_rovo_action: false,
|
|
16
16
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
17
|
+
rovogrowth_640_inline_action_nudge: true,
|
|
17
18
|
cwr_blank_object_experiment: false,
|
|
18
19
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
19
20
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -422,6 +422,14 @@ export const editorExperimentsConfig = {
|
|
|
422
422
|
param: 'isEnabled',
|
|
423
423
|
defaultValue: false
|
|
424
424
|
}),
|
|
425
|
+
// Added 2026-03-30
|
|
426
|
+
platform_editor_editor_ssr_streaming: createBooleanExperiment({
|
|
427
|
+
productKeys: {
|
|
428
|
+
confluence: 'platform_editor_editor_ssr_streaming'
|
|
429
|
+
},
|
|
430
|
+
param: 'isEnabled',
|
|
431
|
+
defaultValue: false
|
|
432
|
+
}),
|
|
425
433
|
// Added 2025-01-19
|
|
426
434
|
platform_editor_ai_edit_response_in_preview: createBooleanExperiment({
|
|
427
435
|
productKeys: {
|
|
@@ -1061,6 +1069,15 @@ export const editorExperimentsConfig = {
|
|
|
1061
1069
|
param: 'isEnabled',
|
|
1062
1070
|
defaultValue: false
|
|
1063
1071
|
}),
|
|
1072
|
+
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1073
|
+
rovogrowth_640_inline_action_nudge: createBooleanExperiment({
|
|
1074
|
+
productKeys: {
|
|
1075
|
+
confluence: 'rovogrowth_640_inline_action_nudge_exp',
|
|
1076
|
+
jira: 'rovogrowth_640_inline_action_nudge_exp'
|
|
1077
|
+
},
|
|
1078
|
+
param: 'isEnabled',
|
|
1079
|
+
defaultValue: false
|
|
1080
|
+
}),
|
|
1064
1081
|
// Added 2025-01-23
|
|
1065
1082
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1066
1083
|
productKeys: {
|
|
@@ -1284,14 +1301,6 @@ export const editorExperimentsConfig = {
|
|
|
1284
1301
|
param: 'isEnabled',
|
|
1285
1302
|
defaultValue: false
|
|
1286
1303
|
}),
|
|
1287
|
-
// Added 2026-02-04
|
|
1288
|
-
platform_editor_emoji_tooltips_on_hover: createBooleanExperiment({
|
|
1289
|
-
productKeys: {
|
|
1290
|
-
confluence: 'platform_editor_emoji_tooltips_on_hover'
|
|
1291
|
-
},
|
|
1292
|
-
param: 'isEnabled',
|
|
1293
|
-
defaultValue: false
|
|
1294
|
-
}),
|
|
1295
1304
|
// Added 2026-16-05
|
|
1296
1305
|
platform_editor_outdated_browser_update: createBooleanExperiment({
|
|
1297
1306
|
productKeys: {
|
|
@@ -1970,5 +1979,14 @@ export const editorExperimentsConfig = {
|
|
|
1970
1979
|
},
|
|
1971
1980
|
param: 'isEnabled',
|
|
1972
1981
|
defaultValue: false
|
|
1982
|
+
}),
|
|
1983
|
+
// Added 2026-04-10
|
|
1984
|
+
platform_editor_static_css: createBooleanExperiment({
|
|
1985
|
+
productKeys: {
|
|
1986
|
+
confluence: 'platform_editor_static_css',
|
|
1987
|
+
jira: 'platform_editor_static_css'
|
|
1988
|
+
},
|
|
1989
|
+
param: 'isEnabled',
|
|
1990
|
+
defaultValue: false
|
|
1973
1991
|
})
|
|
1974
1992
|
};
|
|
@@ -14,6 +14,7 @@ export var testMultivariateOverrides = {
|
|
|
14
14
|
export var testBooleanOverrides = {
|
|
15
15
|
platform_sl_3p_auth_rovo_action: false,
|
|
16
16
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
17
|
+
rovogrowth_640_inline_action_nudge: true,
|
|
17
18
|
cwr_blank_object_experiment: false,
|
|
18
19
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
19
20
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -422,6 +422,14 @@ export var editorExperimentsConfig = {
|
|
|
422
422
|
param: 'isEnabled',
|
|
423
423
|
defaultValue: false
|
|
424
424
|
}),
|
|
425
|
+
// Added 2026-03-30
|
|
426
|
+
platform_editor_editor_ssr_streaming: createBooleanExperiment({
|
|
427
|
+
productKeys: {
|
|
428
|
+
confluence: 'platform_editor_editor_ssr_streaming'
|
|
429
|
+
},
|
|
430
|
+
param: 'isEnabled',
|
|
431
|
+
defaultValue: false
|
|
432
|
+
}),
|
|
425
433
|
// Added 2025-01-19
|
|
426
434
|
platform_editor_ai_edit_response_in_preview: createBooleanExperiment({
|
|
427
435
|
productKeys: {
|
|
@@ -1061,6 +1069,15 @@ export var editorExperimentsConfig = {
|
|
|
1061
1069
|
param: 'isEnabled',
|
|
1062
1070
|
defaultValue: false
|
|
1063
1071
|
}),
|
|
1072
|
+
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1073
|
+
rovogrowth_640_inline_action_nudge: createBooleanExperiment({
|
|
1074
|
+
productKeys: {
|
|
1075
|
+
confluence: 'rovogrowth_640_inline_action_nudge_exp',
|
|
1076
|
+
jira: 'rovogrowth_640_inline_action_nudge_exp'
|
|
1077
|
+
},
|
|
1078
|
+
param: 'isEnabled',
|
|
1079
|
+
defaultValue: false
|
|
1080
|
+
}),
|
|
1064
1081
|
// Added 2025-01-23
|
|
1065
1082
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1066
1083
|
productKeys: {
|
|
@@ -1284,14 +1301,6 @@ export var editorExperimentsConfig = {
|
|
|
1284
1301
|
param: 'isEnabled',
|
|
1285
1302
|
defaultValue: false
|
|
1286
1303
|
}),
|
|
1287
|
-
// Added 2026-02-04
|
|
1288
|
-
platform_editor_emoji_tooltips_on_hover: createBooleanExperiment({
|
|
1289
|
-
productKeys: {
|
|
1290
|
-
confluence: 'platform_editor_emoji_tooltips_on_hover'
|
|
1291
|
-
},
|
|
1292
|
-
param: 'isEnabled',
|
|
1293
|
-
defaultValue: false
|
|
1294
|
-
}),
|
|
1295
1304
|
// Added 2026-16-05
|
|
1296
1305
|
platform_editor_outdated_browser_update: createBooleanExperiment({
|
|
1297
1306
|
productKeys: {
|
|
@@ -1970,5 +1979,14 @@ export var editorExperimentsConfig = {
|
|
|
1970
1979
|
},
|
|
1971
1980
|
param: 'isEnabled',
|
|
1972
1981
|
defaultValue: false
|
|
1982
|
+
}),
|
|
1983
|
+
// Added 2026-04-10
|
|
1984
|
+
platform_editor_static_css: createBooleanExperiment({
|
|
1985
|
+
productKeys: {
|
|
1986
|
+
confluence: 'platform_editor_static_css',
|
|
1987
|
+
jira: 'platform_editor_static_css'
|
|
1988
|
+
},
|
|
1989
|
+
param: 'isEnabled',
|
|
1990
|
+
defaultValue: false
|
|
1973
1991
|
})
|
|
1974
1992
|
};
|
|
@@ -244,6 +244,12 @@ export declare const editorExperimentsConfig: {
|
|
|
244
244
|
productKeys?: ProductKeys;
|
|
245
245
|
typeGuard: IsBooleanType;
|
|
246
246
|
};
|
|
247
|
+
platform_editor_editor_ssr_streaming: {
|
|
248
|
+
defaultValue: boolean;
|
|
249
|
+
param: string;
|
|
250
|
+
productKeys?: ProductKeys;
|
|
251
|
+
typeGuard: IsBooleanType;
|
|
252
|
+
};
|
|
247
253
|
confluence_remix_icon_right_side: {
|
|
248
254
|
defaultValue: boolean;
|
|
249
255
|
param: string;
|
|
@@ -742,6 +748,12 @@ export declare const editorExperimentsConfig: {
|
|
|
742
748
|
productKeys?: ProductKeys;
|
|
743
749
|
typeGuard: IsBooleanType;
|
|
744
750
|
};
|
|
751
|
+
rovogrowth_640_inline_action_nudge: {
|
|
752
|
+
defaultValue: boolean;
|
|
753
|
+
param: string;
|
|
754
|
+
productKeys?: ProductKeys;
|
|
755
|
+
typeGuard: IsBooleanType;
|
|
756
|
+
};
|
|
745
757
|
platform_synced_block: {
|
|
746
758
|
defaultValue: boolean;
|
|
747
759
|
param: string;
|
|
@@ -953,12 +965,6 @@ export declare const editorExperimentsConfig: {
|
|
|
953
965
|
productKeys?: ProductKeys;
|
|
954
966
|
typeGuard: IsBooleanType;
|
|
955
967
|
};
|
|
956
|
-
platform_editor_emoji_tooltips_on_hover: {
|
|
957
|
-
defaultValue: boolean;
|
|
958
|
-
param: string;
|
|
959
|
-
productKeys?: ProductKeys;
|
|
960
|
-
typeGuard: IsBooleanType;
|
|
961
|
-
};
|
|
962
968
|
platform_editor_outdated_browser_update: {
|
|
963
969
|
defaultValue: boolean;
|
|
964
970
|
param: string;
|
|
@@ -1441,6 +1447,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1441
1447
|
productKeys?: ProductKeys;
|
|
1442
1448
|
typeGuard: IsBooleanType;
|
|
1443
1449
|
};
|
|
1450
|
+
platform_editor_static_css: {
|
|
1451
|
+
defaultValue: boolean;
|
|
1452
|
+
param: string;
|
|
1453
|
+
productKeys?: ProductKeys;
|
|
1454
|
+
typeGuard: IsBooleanType;
|
|
1455
|
+
};
|
|
1444
1456
|
platform_editor_drag_handle_keyboard_a11y: {
|
|
1445
1457
|
defaultValue: boolean;
|
|
1446
1458
|
param: string;
|
|
@@ -244,6 +244,12 @@ export declare const editorExperimentsConfig: {
|
|
|
244
244
|
productKeys?: ProductKeys;
|
|
245
245
|
typeGuard: IsBooleanType;
|
|
246
246
|
};
|
|
247
|
+
platform_editor_editor_ssr_streaming: {
|
|
248
|
+
defaultValue: boolean;
|
|
249
|
+
param: string;
|
|
250
|
+
productKeys?: ProductKeys;
|
|
251
|
+
typeGuard: IsBooleanType;
|
|
252
|
+
};
|
|
247
253
|
confluence_remix_icon_right_side: {
|
|
248
254
|
defaultValue: boolean;
|
|
249
255
|
param: string;
|
|
@@ -742,6 +748,12 @@ export declare const editorExperimentsConfig: {
|
|
|
742
748
|
productKeys?: ProductKeys;
|
|
743
749
|
typeGuard: IsBooleanType;
|
|
744
750
|
};
|
|
751
|
+
rovogrowth_640_inline_action_nudge: {
|
|
752
|
+
defaultValue: boolean;
|
|
753
|
+
param: string;
|
|
754
|
+
productKeys?: ProductKeys;
|
|
755
|
+
typeGuard: IsBooleanType;
|
|
756
|
+
};
|
|
745
757
|
platform_synced_block: {
|
|
746
758
|
defaultValue: boolean;
|
|
747
759
|
param: string;
|
|
@@ -953,12 +965,6 @@ export declare const editorExperimentsConfig: {
|
|
|
953
965
|
productKeys?: ProductKeys;
|
|
954
966
|
typeGuard: IsBooleanType;
|
|
955
967
|
};
|
|
956
|
-
platform_editor_emoji_tooltips_on_hover: {
|
|
957
|
-
defaultValue: boolean;
|
|
958
|
-
param: string;
|
|
959
|
-
productKeys?: ProductKeys;
|
|
960
|
-
typeGuard: IsBooleanType;
|
|
961
|
-
};
|
|
962
968
|
platform_editor_outdated_browser_update: {
|
|
963
969
|
defaultValue: boolean;
|
|
964
970
|
param: string;
|
|
@@ -1441,6 +1447,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1441
1447
|
productKeys?: ProductKeys;
|
|
1442
1448
|
typeGuard: IsBooleanType;
|
|
1443
1449
|
};
|
|
1450
|
+
platform_editor_static_css: {
|
|
1451
|
+
defaultValue: boolean;
|
|
1452
|
+
param: string;
|
|
1453
|
+
productKeys?: ProductKeys;
|
|
1454
|
+
typeGuard: IsBooleanType;
|
|
1455
|
+
};
|
|
1444
1456
|
platform_editor_drag_handle_keyboard_a11y: {
|
|
1445
1457
|
defaultValue: boolean;
|
|
1446
1458
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "59.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.13.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|