@atlaskit/tmp-editor-statsig 62.6.0 → 62.8.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 +21 -0
- package/dist/cjs/exp-test-overrides.js +1 -1
- package/dist/cjs/experiments-config.js +17 -1
- package/dist/es2019/exp-test-overrides.js +1 -1
- package/dist/es2019/experiments-config.js +17 -1
- package/dist/esm/exp-test-overrides.js +1 -1
- package/dist/esm/experiments-config.js +17 -1
- package/dist/types/experiments-config.d.ts +13 -1
- package/dist/types-ts4.5/experiments-config.d.ts +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 62.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b6bb07e5d72ac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b6bb07e5d72ac) -
|
|
8
|
+
[ux] Fix for #hot-301450, add new media option for fallback media name fetcher to allow confluence
|
|
9
|
+
to use the attachment service instead of the media service to get filenames. After DC -> Cloud
|
|
10
|
+
migration filenames were not properly copied across to the media service causing inline media to
|
|
11
|
+
show an error.
|
|
12
|
+
|
|
13
|
+
## 62.7.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- [`3e5cf48f0f52f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e5cf48f0f52f) -
|
|
18
|
+
Replace `cc_dnd_smart_link_changeboard_po_template_gate` feature gate with
|
|
19
|
+
`cc_dnd_smart_link_changeboard_po_template` experiment using `expValNoExposure`.
|
|
20
|
+
- [`5cdbb45dd8b9b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5cdbb45dd8b9b) -
|
|
21
|
+
[ux] Add generic 3P rovo actions for the rovogrowth-640-inline-action-nudge-exp experiment to the
|
|
22
|
+
hovercard content
|
|
23
|
+
|
|
3
24
|
## 62.6.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -21,7 +21,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
21
21
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
22
22
|
platform_sl_3p_auth_rovo_action: false,
|
|
23
23
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
24
|
-
|
|
24
|
+
'rovogrowth-640-inline-action-nudge-exp': true,
|
|
25
25
|
cwr_blank_object_experiment: false,
|
|
26
26
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
27
27
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -576,6 +576,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
576
576
|
param: 'isEnabled',
|
|
577
577
|
defaultValue: false
|
|
578
578
|
}),
|
|
579
|
+
// Added 2026-17-03
|
|
580
|
+
platform_editor_media_name_fallback: (0, _experimentBuilders.createBooleanExperiment)({
|
|
581
|
+
productKeys: {
|
|
582
|
+
confluence: 'platform_editor_media_name_fallback'
|
|
583
|
+
},
|
|
584
|
+
param: 'isEnabled',
|
|
585
|
+
defaultValue: false
|
|
586
|
+
}),
|
|
579
587
|
// Added 2025-06-05
|
|
580
588
|
platform_editor_block_controls_perf_optimization: (0, _experimentBuilders.createBooleanExperiment)({
|
|
581
589
|
productKeys: {
|
|
@@ -1052,7 +1060,7 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1052
1060
|
defaultValue: false
|
|
1053
1061
|
}),
|
|
1054
1062
|
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1055
|
-
|
|
1063
|
+
'rovogrowth-640-inline-action-nudge-exp': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1056
1064
|
productKeys: {
|
|
1057
1065
|
confluence: 'rovogrowth-640-inline-action-nudge-exp',
|
|
1058
1066
|
jira: 'rovogrowth-640-inline-action-nudge-exp'
|
|
@@ -2042,5 +2050,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2042
2050
|
},
|
|
2043
2051
|
param: 'isEnabled',
|
|
2044
2052
|
defaultValue: false
|
|
2053
|
+
}),
|
|
2054
|
+
// Added 2026-04-16
|
|
2055
|
+
cc_dnd_smart_link_changeboard_po_template: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2056
|
+
productKeys: {
|
|
2057
|
+
confluence: 'cc_dnd_smart_link_changeboard_po_template'
|
|
2058
|
+
},
|
|
2059
|
+
param: 'isEnabled',
|
|
2060
|
+
defaultValue: false
|
|
2045
2061
|
})
|
|
2046
2062
|
};
|
|
@@ -15,7 +15,7 @@ export const testMultivariateOverrides = {
|
|
|
15
15
|
export const testBooleanOverrides = {
|
|
16
16
|
platform_sl_3p_auth_rovo_action: false,
|
|
17
17
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
18
|
-
|
|
18
|
+
'rovogrowth-640-inline-action-nudge-exp': true,
|
|
19
19
|
cwr_blank_object_experiment: false,
|
|
20
20
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
21
21
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -570,6 +570,14 @@ export const editorExperimentsConfig = {
|
|
|
570
570
|
param: 'isEnabled',
|
|
571
571
|
defaultValue: false
|
|
572
572
|
}),
|
|
573
|
+
// Added 2026-17-03
|
|
574
|
+
platform_editor_media_name_fallback: createBooleanExperiment({
|
|
575
|
+
productKeys: {
|
|
576
|
+
confluence: 'platform_editor_media_name_fallback'
|
|
577
|
+
},
|
|
578
|
+
param: 'isEnabled',
|
|
579
|
+
defaultValue: false
|
|
580
|
+
}),
|
|
573
581
|
// Added 2025-06-05
|
|
574
582
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
575
583
|
productKeys: {
|
|
@@ -1046,7 +1054,7 @@ export const editorExperimentsConfig = {
|
|
|
1046
1054
|
defaultValue: false
|
|
1047
1055
|
}),
|
|
1048
1056
|
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1049
|
-
|
|
1057
|
+
'rovogrowth-640-inline-action-nudge-exp': createBooleanExperiment({
|
|
1050
1058
|
productKeys: {
|
|
1051
1059
|
confluence: 'rovogrowth-640-inline-action-nudge-exp',
|
|
1052
1060
|
jira: 'rovogrowth-640-inline-action-nudge-exp'
|
|
@@ -2036,5 +2044,13 @@ export const editorExperimentsConfig = {
|
|
|
2036
2044
|
},
|
|
2037
2045
|
param: 'isEnabled',
|
|
2038
2046
|
defaultValue: false
|
|
2047
|
+
}),
|
|
2048
|
+
// Added 2026-04-16
|
|
2049
|
+
cc_dnd_smart_link_changeboard_po_template: createBooleanExperiment({
|
|
2050
|
+
productKeys: {
|
|
2051
|
+
confluence: 'cc_dnd_smart_link_changeboard_po_template'
|
|
2052
|
+
},
|
|
2053
|
+
param: 'isEnabled',
|
|
2054
|
+
defaultValue: false
|
|
2039
2055
|
})
|
|
2040
2056
|
};
|
|
@@ -15,7 +15,7 @@ export var testMultivariateOverrides = {
|
|
|
15
15
|
export var testBooleanOverrides = {
|
|
16
16
|
platform_sl_3p_auth_rovo_action: false,
|
|
17
17
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
18
|
-
|
|
18
|
+
'rovogrowth-640-inline-action-nudge-exp': true,
|
|
19
19
|
cwr_blank_object_experiment: false,
|
|
20
20
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
21
21
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -570,6 +570,14 @@ export var editorExperimentsConfig = {
|
|
|
570
570
|
param: 'isEnabled',
|
|
571
571
|
defaultValue: false
|
|
572
572
|
}),
|
|
573
|
+
// Added 2026-17-03
|
|
574
|
+
platform_editor_media_name_fallback: createBooleanExperiment({
|
|
575
|
+
productKeys: {
|
|
576
|
+
confluence: 'platform_editor_media_name_fallback'
|
|
577
|
+
},
|
|
578
|
+
param: 'isEnabled',
|
|
579
|
+
defaultValue: false
|
|
580
|
+
}),
|
|
573
581
|
// Added 2025-06-05
|
|
574
582
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
575
583
|
productKeys: {
|
|
@@ -1046,7 +1054,7 @@ export var editorExperimentsConfig = {
|
|
|
1046
1054
|
defaultValue: false
|
|
1047
1055
|
}),
|
|
1048
1056
|
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1049
|
-
|
|
1057
|
+
'rovogrowth-640-inline-action-nudge-exp': createBooleanExperiment({
|
|
1050
1058
|
productKeys: {
|
|
1051
1059
|
confluence: 'rovogrowth-640-inline-action-nudge-exp',
|
|
1052
1060
|
jira: 'rovogrowth-640-inline-action-nudge-exp'
|
|
@@ -2036,5 +2044,13 @@ export var editorExperimentsConfig = {
|
|
|
2036
2044
|
},
|
|
2037
2045
|
param: 'isEnabled',
|
|
2038
2046
|
defaultValue: false
|
|
2047
|
+
}),
|
|
2048
|
+
// Added 2026-04-16
|
|
2049
|
+
cc_dnd_smart_link_changeboard_po_template: createBooleanExperiment({
|
|
2050
|
+
productKeys: {
|
|
2051
|
+
confluence: 'cc_dnd_smart_link_changeboard_po_template'
|
|
2052
|
+
},
|
|
2053
|
+
param: 'isEnabled',
|
|
2054
|
+
defaultValue: false
|
|
2039
2055
|
})
|
|
2040
2056
|
};
|
|
@@ -330,6 +330,12 @@ export declare const editorExperimentsConfig: {
|
|
|
330
330
|
productKeys?: ProductKeys;
|
|
331
331
|
typeGuard: IsBooleanType;
|
|
332
332
|
};
|
|
333
|
+
platform_editor_media_name_fallback: {
|
|
334
|
+
defaultValue: boolean;
|
|
335
|
+
param: string;
|
|
336
|
+
productKeys?: ProductKeys;
|
|
337
|
+
typeGuard: IsBooleanType;
|
|
338
|
+
};
|
|
333
339
|
platform_editor_block_controls_perf_optimization: {
|
|
334
340
|
defaultValue: boolean;
|
|
335
341
|
param: string;
|
|
@@ -742,7 +748,7 @@ export declare const editorExperimentsConfig: {
|
|
|
742
748
|
productKeys?: ProductKeys;
|
|
743
749
|
typeGuard: IsBooleanType;
|
|
744
750
|
};
|
|
745
|
-
|
|
751
|
+
'rovogrowth-640-inline-action-nudge-exp': {
|
|
746
752
|
defaultValue: boolean;
|
|
747
753
|
param: string;
|
|
748
754
|
productKeys?: ProductKeys;
|
|
@@ -1502,5 +1508,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1502
1508
|
productKeys?: ProductKeys;
|
|
1503
1509
|
typeGuard: IsBooleanType;
|
|
1504
1510
|
};
|
|
1511
|
+
cc_dnd_smart_link_changeboard_po_template: {
|
|
1512
|
+
defaultValue: boolean;
|
|
1513
|
+
param: string;
|
|
1514
|
+
productKeys?: ProductKeys;
|
|
1515
|
+
typeGuard: IsBooleanType;
|
|
1516
|
+
};
|
|
1505
1517
|
};
|
|
1506
1518
|
export {};
|
|
@@ -330,6 +330,12 @@ export declare const editorExperimentsConfig: {
|
|
|
330
330
|
productKeys?: ProductKeys;
|
|
331
331
|
typeGuard: IsBooleanType;
|
|
332
332
|
};
|
|
333
|
+
platform_editor_media_name_fallback: {
|
|
334
|
+
defaultValue: boolean;
|
|
335
|
+
param: string;
|
|
336
|
+
productKeys?: ProductKeys;
|
|
337
|
+
typeGuard: IsBooleanType;
|
|
338
|
+
};
|
|
333
339
|
platform_editor_block_controls_perf_optimization: {
|
|
334
340
|
defaultValue: boolean;
|
|
335
341
|
param: string;
|
|
@@ -742,7 +748,7 @@ export declare const editorExperimentsConfig: {
|
|
|
742
748
|
productKeys?: ProductKeys;
|
|
743
749
|
typeGuard: IsBooleanType;
|
|
744
750
|
};
|
|
745
|
-
|
|
751
|
+
'rovogrowth-640-inline-action-nudge-exp': {
|
|
746
752
|
defaultValue: boolean;
|
|
747
753
|
param: string;
|
|
748
754
|
productKeys?: ProductKeys;
|
|
@@ -1502,5 +1508,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1502
1508
|
productKeys?: ProductKeys;
|
|
1503
1509
|
typeGuard: IsBooleanType;
|
|
1504
1510
|
};
|
|
1511
|
+
cc_dnd_smart_link_changeboard_po_template: {
|
|
1512
|
+
defaultValue: boolean;
|
|
1513
|
+
param: string;
|
|
1514
|
+
productKeys?: ProductKeys;
|
|
1515
|
+
typeGuard: IsBooleanType;
|
|
1516
|
+
};
|
|
1505
1517
|
};
|
|
1506
1518
|
export {};
|
package/package.json
CHANGED