@atlaskit/tmp-editor-statsig 114.0.0 → 114.2.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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 114.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0c3036cbf6b5c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0c3036cbf6b5c) -
|
|
8
|
+
Add gated Rovo actions footer experiment for eligible resolved 3P Smart Link embeds in Confluence.
|
|
9
|
+
|
|
10
|
+
## 114.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`dec1185b3c97a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dec1185b3c97a) -
|
|
15
|
+
Remove the archived Confluence preview panels experiment key from the editor experiment
|
|
16
|
+
configuration.
|
|
17
|
+
|
|
3
18
|
## 114.0.0
|
|
4
19
|
|
|
5
20
|
### Major Changes
|
|
@@ -650,7 +650,7 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
650
650
|
// Added 2025-07-15
|
|
651
651
|
platform_editor_preview_panel_responsiveness: (0, _experimentBuilders.createBooleanExperiment)({
|
|
652
652
|
productKeys: {
|
|
653
|
-
confluence: '
|
|
653
|
+
confluence: 'platform_editor_preview_panel_responsiveness'
|
|
654
654
|
},
|
|
655
655
|
param: 'isEnabled',
|
|
656
656
|
defaultValue: false
|
|
@@ -1027,6 +1027,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1027
1027
|
param: 'isEnabled',
|
|
1028
1028
|
defaultValue: false
|
|
1029
1029
|
}),
|
|
1030
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1031
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1032
|
+
productKeys: {
|
|
1033
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1034
|
+
},
|
|
1035
|
+
param: 'isEnabled',
|
|
1036
|
+
defaultValue: false
|
|
1037
|
+
}),
|
|
1030
1038
|
// Added 2025-01-23
|
|
1031
1039
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1032
1040
|
productKeys: {
|
|
@@ -2274,5 +2282,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2274
2282
|
},
|
|
2275
2283
|
param: 'value',
|
|
2276
2284
|
defaultValue: false
|
|
2285
|
+
}),
|
|
2286
|
+
// Added 2026-06-25
|
|
2287
|
+
platform_editor_typeahead_empty_query_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2288
|
+
productKeys: {
|
|
2289
|
+
confluence: 'platform_editor_typeahead_empty_query_fix'
|
|
2290
|
+
},
|
|
2291
|
+
param: 'value',
|
|
2292
|
+
defaultValue: false
|
|
2277
2293
|
})
|
|
2278
2294
|
};
|
|
@@ -644,7 +644,7 @@ export const editorExperimentsConfig = {
|
|
|
644
644
|
// Added 2025-07-15
|
|
645
645
|
platform_editor_preview_panel_responsiveness: createBooleanExperiment({
|
|
646
646
|
productKeys: {
|
|
647
|
-
confluence: '
|
|
647
|
+
confluence: 'platform_editor_preview_panel_responsiveness'
|
|
648
648
|
},
|
|
649
649
|
param: 'isEnabled',
|
|
650
650
|
defaultValue: false
|
|
@@ -1021,6 +1021,14 @@ export const editorExperimentsConfig = {
|
|
|
1021
1021
|
param: 'isEnabled',
|
|
1022
1022
|
defaultValue: false
|
|
1023
1023
|
}),
|
|
1024
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1025
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: createBooleanExperiment({
|
|
1026
|
+
productKeys: {
|
|
1027
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1028
|
+
},
|
|
1029
|
+
param: 'isEnabled',
|
|
1030
|
+
defaultValue: false
|
|
1031
|
+
}),
|
|
1024
1032
|
// Added 2025-01-23
|
|
1025
1033
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1026
1034
|
productKeys: {
|
|
@@ -2268,5 +2276,13 @@ export const editorExperimentsConfig = {
|
|
|
2268
2276
|
},
|
|
2269
2277
|
param: 'value',
|
|
2270
2278
|
defaultValue: false
|
|
2279
|
+
}),
|
|
2280
|
+
// Added 2026-06-25
|
|
2281
|
+
platform_editor_typeahead_empty_query_fix: createBooleanExperiment({
|
|
2282
|
+
productKeys: {
|
|
2283
|
+
confluence: 'platform_editor_typeahead_empty_query_fix'
|
|
2284
|
+
},
|
|
2285
|
+
param: 'value',
|
|
2286
|
+
defaultValue: false
|
|
2271
2287
|
})
|
|
2272
2288
|
};
|
|
@@ -644,7 +644,7 @@ export var editorExperimentsConfig = {
|
|
|
644
644
|
// Added 2025-07-15
|
|
645
645
|
platform_editor_preview_panel_responsiveness: createBooleanExperiment({
|
|
646
646
|
productKeys: {
|
|
647
|
-
confluence: '
|
|
647
|
+
confluence: 'platform_editor_preview_panel_responsiveness'
|
|
648
648
|
},
|
|
649
649
|
param: 'isEnabled',
|
|
650
650
|
defaultValue: false
|
|
@@ -1021,6 +1021,14 @@ export var editorExperimentsConfig = {
|
|
|
1021
1021
|
param: 'isEnabled',
|
|
1022
1022
|
defaultValue: false
|
|
1023
1023
|
}),
|
|
1024
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1025
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: createBooleanExperiment({
|
|
1026
|
+
productKeys: {
|
|
1027
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1028
|
+
},
|
|
1029
|
+
param: 'isEnabled',
|
|
1030
|
+
defaultValue: false
|
|
1031
|
+
}),
|
|
1024
1032
|
// Added 2025-01-23
|
|
1025
1033
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1026
1034
|
productKeys: {
|
|
@@ -2268,5 +2276,13 @@ export var editorExperimentsConfig = {
|
|
|
2268
2276
|
},
|
|
2269
2277
|
param: 'value',
|
|
2270
2278
|
defaultValue: false
|
|
2279
|
+
}),
|
|
2280
|
+
// Added 2026-06-25
|
|
2281
|
+
platform_editor_typeahead_empty_query_fix: createBooleanExperiment({
|
|
2282
|
+
productKeys: {
|
|
2283
|
+
confluence: 'platform_editor_typeahead_empty_query_fix'
|
|
2284
|
+
},
|
|
2285
|
+
param: 'value',
|
|
2286
|
+
defaultValue: false
|
|
2271
2287
|
})
|
|
2272
2288
|
};
|
|
@@ -701,6 +701,12 @@ export declare const editorExperimentsConfig: {
|
|
|
701
701
|
productKeys?: ProductKeys;
|
|
702
702
|
typeGuard: IsBooleanType;
|
|
703
703
|
};
|
|
704
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: {
|
|
705
|
+
defaultValue: boolean;
|
|
706
|
+
param: string;
|
|
707
|
+
productKeys?: ProductKeys;
|
|
708
|
+
typeGuard: IsBooleanType;
|
|
709
|
+
};
|
|
704
710
|
social_proof_3p_unauth_block_exp: {
|
|
705
711
|
defaultValue: boolean;
|
|
706
712
|
param: string;
|
|
@@ -1659,5 +1665,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1659
1665
|
productKeys?: ProductKeys;
|
|
1660
1666
|
typeGuard: IsBooleanType;
|
|
1661
1667
|
};
|
|
1668
|
+
platform_editor_typeahead_empty_query_fix: {
|
|
1669
|
+
defaultValue: boolean;
|
|
1670
|
+
param: string;
|
|
1671
|
+
productKeys?: ProductKeys;
|
|
1672
|
+
typeGuard: IsBooleanType;
|
|
1673
|
+
};
|
|
1662
1674
|
};
|
|
1663
1675
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "114.
|
|
3
|
+
"version": "114.2.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",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@atlaskit/feature-gate-js-client": "^6.0.0",
|
|
29
29
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
30
|
-
"@atlaskit/react-ufo": "^7.
|
|
30
|
+
"@atlaskit/react-ufo": "^7.3.0",
|
|
31
31
|
"@babel/runtime": "^7.0.0"
|
|
32
32
|
},
|
|
33
33
|
"platform-feature-flags": {
|