@atlaskit/tmp-editor-statsig 88.1.0 → 88.1.1
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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 88.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`651a44bb98f89`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/651a44bb98f89) -
|
|
8
|
+
Register `confluence_3p_in_cwr_ghost_icons` experiment for use by the `GhostIconWave` primitive.
|
|
9
|
+
|
|
3
10
|
## 88.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2303,5 +2303,17 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2303
2303
|
},
|
|
2304
2304
|
param: 'isEnabled',
|
|
2305
2305
|
defaultValue: false
|
|
2306
|
+
}),
|
|
2307
|
+
// Added 2026-06-01
|
|
2308
|
+
// Gates the `GhostIconWave` animation primitive in
|
|
2309
|
+
// `@atlassian/rovo-platform-ui-components` — rendered as a loading cue on
|
|
2310
|
+
// Confluence's 3p-in-CWR (Rovo) surfaces. When off the primitive renders
|
|
2311
|
+
// nothing.
|
|
2312
|
+
confluence_3p_in_cwr_ghost_icons: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2313
|
+
productKeys: {
|
|
2314
|
+
confluence: 'confluence_3p_in_cwr_ghost_icons'
|
|
2315
|
+
},
|
|
2316
|
+
param: 'isEnabled',
|
|
2317
|
+
defaultValue: false
|
|
2306
2318
|
})
|
|
2307
2319
|
};
|
|
@@ -2297,5 +2297,17 @@ export const editorExperimentsConfig = {
|
|
|
2297
2297
|
},
|
|
2298
2298
|
param: 'isEnabled',
|
|
2299
2299
|
defaultValue: false
|
|
2300
|
+
}),
|
|
2301
|
+
// Added 2026-06-01
|
|
2302
|
+
// Gates the `GhostIconWave` animation primitive in
|
|
2303
|
+
// `@atlassian/rovo-platform-ui-components` — rendered as a loading cue on
|
|
2304
|
+
// Confluence's 3p-in-CWR (Rovo) surfaces. When off the primitive renders
|
|
2305
|
+
// nothing.
|
|
2306
|
+
confluence_3p_in_cwr_ghost_icons: createBooleanExperiment({
|
|
2307
|
+
productKeys: {
|
|
2308
|
+
confluence: 'confluence_3p_in_cwr_ghost_icons'
|
|
2309
|
+
},
|
|
2310
|
+
param: 'isEnabled',
|
|
2311
|
+
defaultValue: false
|
|
2300
2312
|
})
|
|
2301
2313
|
};
|
|
@@ -2297,5 +2297,17 @@ export var editorExperimentsConfig = {
|
|
|
2297
2297
|
},
|
|
2298
2298
|
param: 'isEnabled',
|
|
2299
2299
|
defaultValue: false
|
|
2300
|
+
}),
|
|
2301
|
+
// Added 2026-06-01
|
|
2302
|
+
// Gates the `GhostIconWave` animation primitive in
|
|
2303
|
+
// `@atlassian/rovo-platform-ui-components` — rendered as a loading cue on
|
|
2304
|
+
// Confluence's 3p-in-CWR (Rovo) surfaces. When off the primitive renders
|
|
2305
|
+
// nothing.
|
|
2306
|
+
confluence_3p_in_cwr_ghost_icons: createBooleanExperiment({
|
|
2307
|
+
productKeys: {
|
|
2308
|
+
confluence: 'confluence_3p_in_cwr_ghost_icons'
|
|
2309
|
+
},
|
|
2310
|
+
param: 'isEnabled',
|
|
2311
|
+
defaultValue: false
|
|
2300
2312
|
})
|
|
2301
2313
|
};
|
|
@@ -1688,5 +1688,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1688
1688
|
productKeys?: ProductKeys;
|
|
1689
1689
|
typeGuard: IsBooleanType;
|
|
1690
1690
|
};
|
|
1691
|
+
confluence_3p_in_cwr_ghost_icons: {
|
|
1692
|
+
defaultValue: boolean;
|
|
1693
|
+
param: string;
|
|
1694
|
+
productKeys?: ProductKeys;
|
|
1695
|
+
typeGuard: IsBooleanType;
|
|
1696
|
+
};
|
|
1691
1697
|
};
|
|
1692
1698
|
export {};
|
|
@@ -1688,5 +1688,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1688
1688
|
productKeys?: ProductKeys;
|
|
1689
1689
|
typeGuard: IsBooleanType;
|
|
1690
1690
|
};
|
|
1691
|
+
confluence_3p_in_cwr_ghost_icons: {
|
|
1692
|
+
defaultValue: boolean;
|
|
1693
|
+
param: string;
|
|
1694
|
+
productKeys?: ProductKeys;
|
|
1695
|
+
typeGuard: IsBooleanType;
|
|
1696
|
+
};
|
|
1691
1697
|
};
|
|
1692
1698
|
export {};
|
package/package.json
CHANGED