@atlaskit/tmp-editor-statsig 108.0.0 → 108.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 108.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`85df613a5b213`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/85df613a5b213) -
|
|
8
|
+
Add confluence_3p_in_cwr_ghost_icons_ui_tweaks experiment gating ghost-icon inner opacity (0.5)
|
|
9
|
+
and an updated connect-apps tooltip in the Rovo chat sources pill
|
|
10
|
+
|
|
3
11
|
## 108.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
|
@@ -2202,6 +2202,17 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2202
2202
|
param: 'isEnabled',
|
|
2203
2203
|
defaultValue: false
|
|
2204
2204
|
}),
|
|
2205
|
+
// Added 2026-06-16
|
|
2206
|
+
// Gates UI tweaks to the 3p-in-CWR ghost icons (inner icon opacity and the
|
|
2207
|
+
// "connect apps" tooltip copy) in the Rovo chat sources pill. When off the
|
|
2208
|
+
// existing ghost-icon styling and tooltip are used.
|
|
2209
|
+
confluence_3p_in_cwr_ghost_icons_ui_tweaks: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2210
|
+
productKeys: {
|
|
2211
|
+
confluence: 'confluence_3p_in_cwr_ghost_icons_ui_tweaks'
|
|
2212
|
+
},
|
|
2213
|
+
param: 'isEnabled',
|
|
2214
|
+
defaultValue: false
|
|
2215
|
+
}),
|
|
2205
2216
|
// Added 2026-06-01
|
|
2206
2217
|
platform_editor_lovability_text_bg_color: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2207
2218
|
productKeys: {
|
|
@@ -2196,6 +2196,17 @@ export const editorExperimentsConfig = {
|
|
|
2196
2196
|
param: 'isEnabled',
|
|
2197
2197
|
defaultValue: false
|
|
2198
2198
|
}),
|
|
2199
|
+
// Added 2026-06-16
|
|
2200
|
+
// Gates UI tweaks to the 3p-in-CWR ghost icons (inner icon opacity and the
|
|
2201
|
+
// "connect apps" tooltip copy) in the Rovo chat sources pill. When off the
|
|
2202
|
+
// existing ghost-icon styling and tooltip are used.
|
|
2203
|
+
confluence_3p_in_cwr_ghost_icons_ui_tweaks: createBooleanExperiment({
|
|
2204
|
+
productKeys: {
|
|
2205
|
+
confluence: 'confluence_3p_in_cwr_ghost_icons_ui_tweaks'
|
|
2206
|
+
},
|
|
2207
|
+
param: 'isEnabled',
|
|
2208
|
+
defaultValue: false
|
|
2209
|
+
}),
|
|
2199
2210
|
// Added 2026-06-01
|
|
2200
2211
|
platform_editor_lovability_text_bg_color: createBooleanExperiment({
|
|
2201
2212
|
productKeys: {
|
|
@@ -2196,6 +2196,17 @@ export var editorExperimentsConfig = {
|
|
|
2196
2196
|
param: 'isEnabled',
|
|
2197
2197
|
defaultValue: false
|
|
2198
2198
|
}),
|
|
2199
|
+
// Added 2026-06-16
|
|
2200
|
+
// Gates UI tweaks to the 3p-in-CWR ghost icons (inner icon opacity and the
|
|
2201
|
+
// "connect apps" tooltip copy) in the Rovo chat sources pill. When off the
|
|
2202
|
+
// existing ghost-icon styling and tooltip are used.
|
|
2203
|
+
confluence_3p_in_cwr_ghost_icons_ui_tweaks: createBooleanExperiment({
|
|
2204
|
+
productKeys: {
|
|
2205
|
+
confluence: 'confluence_3p_in_cwr_ghost_icons_ui_tweaks'
|
|
2206
|
+
},
|
|
2207
|
+
param: 'isEnabled',
|
|
2208
|
+
defaultValue: false
|
|
2209
|
+
}),
|
|
2199
2210
|
// Added 2026-06-01
|
|
2200
2211
|
platform_editor_lovability_text_bg_color: createBooleanExperiment({
|
|
2201
2212
|
productKeys: {
|
|
@@ -1611,6 +1611,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1611
1611
|
productKeys?: ProductKeys;
|
|
1612
1612
|
typeGuard: IsBooleanType;
|
|
1613
1613
|
};
|
|
1614
|
+
confluence_3p_in_cwr_ghost_icons_ui_tweaks: {
|
|
1615
|
+
defaultValue: boolean;
|
|
1616
|
+
param: string;
|
|
1617
|
+
productKeys?: ProductKeys;
|
|
1618
|
+
typeGuard: IsBooleanType;
|
|
1619
|
+
};
|
|
1614
1620
|
platform_editor_lovability_text_bg_color: {
|
|
1615
1621
|
defaultValue: boolean;
|
|
1616
1622
|
param: string;
|
package/package.json
CHANGED