@atlaskit/tmp-editor-statsig 62.6.0 → 62.7.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 +11 -0
- package/dist/cjs/exp-test-overrides.js +1 -1
- package/dist/cjs/experiments-config.js +9 -1
- package/dist/es2019/exp-test-overrides.js +1 -1
- package/dist/es2019/experiments-config.js +9 -1
- package/dist/esm/exp-test-overrides.js +1 -1
- package/dist/esm/experiments-config.js +9 -1
- package/dist/types/experiments-config.d.ts +7 -1
- package/dist/types-ts4.5/experiments-config.d.ts +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 62.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3e5cf48f0f52f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e5cf48f0f52f) -
|
|
8
|
+
Replace `cc_dnd_smart_link_changeboard_po_template_gate` feature gate with
|
|
9
|
+
`cc_dnd_smart_link_changeboard_po_template` experiment using `expValNoExposure`.
|
|
10
|
+
- [`5cdbb45dd8b9b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5cdbb45dd8b9b) -
|
|
11
|
+
[ux] Add generic 3P rovo actions for the rovogrowth-640-inline-action-nudge-exp experiment to the
|
|
12
|
+
hovercard content
|
|
13
|
+
|
|
3
14
|
## 62.6.0
|
|
4
15
|
|
|
5
16
|
### 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,
|
|
@@ -1052,7 +1052,7 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1052
1052
|
defaultValue: false
|
|
1053
1053
|
}),
|
|
1054
1054
|
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1055
|
-
|
|
1055
|
+
'rovogrowth-640-inline-action-nudge-exp': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1056
1056
|
productKeys: {
|
|
1057
1057
|
confluence: 'rovogrowth-640-inline-action-nudge-exp',
|
|
1058
1058
|
jira: 'rovogrowth-640-inline-action-nudge-exp'
|
|
@@ -2042,5 +2042,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2042
2042
|
},
|
|
2043
2043
|
param: 'isEnabled',
|
|
2044
2044
|
defaultValue: false
|
|
2045
|
+
}),
|
|
2046
|
+
// Added 2026-04-16
|
|
2047
|
+
cc_dnd_smart_link_changeboard_po_template: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2048
|
+
productKeys: {
|
|
2049
|
+
confluence: 'cc_dnd_smart_link_changeboard_po_template'
|
|
2050
|
+
},
|
|
2051
|
+
param: 'isEnabled',
|
|
2052
|
+
defaultValue: false
|
|
2045
2053
|
})
|
|
2046
2054
|
};
|
|
@@ -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,
|
|
@@ -1046,7 +1046,7 @@ export const editorExperimentsConfig = {
|
|
|
1046
1046
|
defaultValue: false
|
|
1047
1047
|
}),
|
|
1048
1048
|
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1049
|
-
|
|
1049
|
+
'rovogrowth-640-inline-action-nudge-exp': createBooleanExperiment({
|
|
1050
1050
|
productKeys: {
|
|
1051
1051
|
confluence: 'rovogrowth-640-inline-action-nudge-exp',
|
|
1052
1052
|
jira: 'rovogrowth-640-inline-action-nudge-exp'
|
|
@@ -2036,5 +2036,13 @@ export const editorExperimentsConfig = {
|
|
|
2036
2036
|
},
|
|
2037
2037
|
param: 'isEnabled',
|
|
2038
2038
|
defaultValue: false
|
|
2039
|
+
}),
|
|
2040
|
+
// Added 2026-04-16
|
|
2041
|
+
cc_dnd_smart_link_changeboard_po_template: createBooleanExperiment({
|
|
2042
|
+
productKeys: {
|
|
2043
|
+
confluence: 'cc_dnd_smart_link_changeboard_po_template'
|
|
2044
|
+
},
|
|
2045
|
+
param: 'isEnabled',
|
|
2046
|
+
defaultValue: false
|
|
2039
2047
|
})
|
|
2040
2048
|
};
|
|
@@ -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,
|
|
@@ -1046,7 +1046,7 @@ export var editorExperimentsConfig = {
|
|
|
1046
1046
|
defaultValue: false
|
|
1047
1047
|
}),
|
|
1048
1048
|
// Added 2026-04-09 — Inline action nudge on resolved inline smart links
|
|
1049
|
-
|
|
1049
|
+
'rovogrowth-640-inline-action-nudge-exp': createBooleanExperiment({
|
|
1050
1050
|
productKeys: {
|
|
1051
1051
|
confluence: 'rovogrowth-640-inline-action-nudge-exp',
|
|
1052
1052
|
jira: 'rovogrowth-640-inline-action-nudge-exp'
|
|
@@ -2036,5 +2036,13 @@ export var editorExperimentsConfig = {
|
|
|
2036
2036
|
},
|
|
2037
2037
|
param: 'isEnabled',
|
|
2038
2038
|
defaultValue: false
|
|
2039
|
+
}),
|
|
2040
|
+
// Added 2026-04-16
|
|
2041
|
+
cc_dnd_smart_link_changeboard_po_template: createBooleanExperiment({
|
|
2042
|
+
productKeys: {
|
|
2043
|
+
confluence: 'cc_dnd_smart_link_changeboard_po_template'
|
|
2044
|
+
},
|
|
2045
|
+
param: 'isEnabled',
|
|
2046
|
+
defaultValue: false
|
|
2039
2047
|
})
|
|
2040
2048
|
};
|
|
@@ -742,7 +742,7 @@ export declare const editorExperimentsConfig: {
|
|
|
742
742
|
productKeys?: ProductKeys;
|
|
743
743
|
typeGuard: IsBooleanType;
|
|
744
744
|
};
|
|
745
|
-
|
|
745
|
+
'rovogrowth-640-inline-action-nudge-exp': {
|
|
746
746
|
defaultValue: boolean;
|
|
747
747
|
param: string;
|
|
748
748
|
productKeys?: ProductKeys;
|
|
@@ -1502,5 +1502,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1502
1502
|
productKeys?: ProductKeys;
|
|
1503
1503
|
typeGuard: IsBooleanType;
|
|
1504
1504
|
};
|
|
1505
|
+
cc_dnd_smart_link_changeboard_po_template: {
|
|
1506
|
+
defaultValue: boolean;
|
|
1507
|
+
param: string;
|
|
1508
|
+
productKeys?: ProductKeys;
|
|
1509
|
+
typeGuard: IsBooleanType;
|
|
1510
|
+
};
|
|
1505
1511
|
};
|
|
1506
1512
|
export {};
|
|
@@ -742,7 +742,7 @@ export declare const editorExperimentsConfig: {
|
|
|
742
742
|
productKeys?: ProductKeys;
|
|
743
743
|
typeGuard: IsBooleanType;
|
|
744
744
|
};
|
|
745
|
-
|
|
745
|
+
'rovogrowth-640-inline-action-nudge-exp': {
|
|
746
746
|
defaultValue: boolean;
|
|
747
747
|
param: string;
|
|
748
748
|
productKeys?: ProductKeys;
|
|
@@ -1502,5 +1502,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1502
1502
|
productKeys?: ProductKeys;
|
|
1503
1503
|
typeGuard: IsBooleanType;
|
|
1504
1504
|
};
|
|
1505
|
+
cc_dnd_smart_link_changeboard_po_template: {
|
|
1506
|
+
defaultValue: boolean;
|
|
1507
|
+
param: string;
|
|
1508
|
+
productKeys?: ProductKeys;
|
|
1509
|
+
typeGuard: IsBooleanType;
|
|
1510
|
+
};
|
|
1505
1511
|
};
|
|
1506
1512
|
export {};
|
package/package.json
CHANGED