@atlaskit/tmp-editor-statsig 110.0.0 → 111.0.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 +23 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +17 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +17 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +17 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 111.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`3378314fe2ec1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3378314fe2ec1) -
|
|
8
|
+
Clean up experiment `platform_editor_chromeless_expand_fix`
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- [`9d2c2c1c016bd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9d2c2c1c016bd) -
|
|
13
|
+
[ux] Server-side render the editor toolbar (FullPageToolbarNext) with toolbar items enabled (not
|
|
14
|
+
hidden/disabled), so the toolbar is visible and interactive-looking on first paint — before
|
|
15
|
+
EditorView or collab edit is initialized. Clicks before editor is ready are noops.
|
|
16
|
+
|
|
17
|
+
## 110.1.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [`784845abac918`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/784845abac918) -
|
|
22
|
+
[ux] Add parentProduct=rovo to edit-smart-create iframe URL, which tells Confluence's SSR CSP
|
|
23
|
+
middleware to look up the rovo entry in the Shipyard config and include the parent product's
|
|
24
|
+
domain in the frame-ancestors directive
|
|
25
|
+
|
|
3
26
|
## 110.0.0
|
|
4
27
|
|
|
5
28
|
### Major Changes
|
|
@@ -73,5 +73,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
73
73
|
platform_editor_ai_new_aifc_editor_experience: false,
|
|
74
74
|
cc_page_experiences_editor_image_generation: false,
|
|
75
75
|
platform_use_unicode_emojis: false,
|
|
76
|
-
platform_editor_emoji_hover_show_tooltip: false
|
|
76
|
+
platform_editor_emoji_hover_show_tooltip: false,
|
|
77
|
+
'aifc-confluence-editor-csp-fix': false
|
|
77
78
|
};
|
|
@@ -1658,14 +1658,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1658
1658
|
param: 'isEnabled',
|
|
1659
1659
|
defaultValue: false
|
|
1660
1660
|
}),
|
|
1661
|
-
// Added 2026-03-20
|
|
1662
|
-
platform_editor_chromeless_expand_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1663
|
-
productKeys: {
|
|
1664
|
-
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1665
|
-
},
|
|
1666
|
-
param: 'isEnabled',
|
|
1667
|
-
defaultValue: false
|
|
1668
|
-
}),
|
|
1669
1661
|
// Added 2026-05-01
|
|
1670
1662
|
platform_editor_ai_normalized_telemetry: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1671
1663
|
productKeys: {
|
|
@@ -2276,6 +2268,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2276
2268
|
param: 'isEnabled',
|
|
2277
2269
|
defaultValue: false
|
|
2278
2270
|
}),
|
|
2271
|
+
// Added 2026-06-20
|
|
2272
|
+
platform_editor_ssr_toolbar_optimistic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2273
|
+
productKeys: {
|
|
2274
|
+
confluence: 'platform_editor_ssr_toolbar_optimistic'
|
|
2275
|
+
},
|
|
2276
|
+
param: 'isEnabled',
|
|
2277
|
+
defaultValue: false
|
|
2278
|
+
}),
|
|
2279
2279
|
cc_smarts_heading_autocomplete_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2280
2280
|
productKeys: {
|
|
2281
2281
|
confluence: 'cc_smarts_heading_autocomplete_migration'
|
|
@@ -2290,5 +2290,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2290
2290
|
},
|
|
2291
2291
|
param: 'isEnabled',
|
|
2292
2292
|
defaultValue: false
|
|
2293
|
+
}),
|
|
2294
|
+
// Added 2026-06-23
|
|
2295
|
+
'aifc-confluence-editor-csp-fix': (0, _experimentBuilders.createBooleanExperiment)({
|
|
2296
|
+
productKeys: {
|
|
2297
|
+
confluence: 'aifc-confluence-editor-csp-fix',
|
|
2298
|
+
jira: 'aifc-confluence-editor-csp-fix'
|
|
2299
|
+
},
|
|
2300
|
+
param: 'value',
|
|
2301
|
+
defaultValue: false
|
|
2293
2302
|
})
|
|
2294
2303
|
};
|
|
@@ -67,5 +67,6 @@ export const testBooleanOverrides = {
|
|
|
67
67
|
platform_editor_ai_new_aifc_editor_experience: false,
|
|
68
68
|
cc_page_experiences_editor_image_generation: false,
|
|
69
69
|
platform_use_unicode_emojis: false,
|
|
70
|
-
platform_editor_emoji_hover_show_tooltip: false
|
|
70
|
+
platform_editor_emoji_hover_show_tooltip: false,
|
|
71
|
+
'aifc-confluence-editor-csp-fix': false
|
|
71
72
|
};
|
|
@@ -1652,14 +1652,6 @@ export const editorExperimentsConfig = {
|
|
|
1652
1652
|
param: 'isEnabled',
|
|
1653
1653
|
defaultValue: false
|
|
1654
1654
|
}),
|
|
1655
|
-
// Added 2026-03-20
|
|
1656
|
-
platform_editor_chromeless_expand_fix: createBooleanExperiment({
|
|
1657
|
-
productKeys: {
|
|
1658
|
-
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1659
|
-
},
|
|
1660
|
-
param: 'isEnabled',
|
|
1661
|
-
defaultValue: false
|
|
1662
|
-
}),
|
|
1663
1655
|
// Added 2026-05-01
|
|
1664
1656
|
platform_editor_ai_normalized_telemetry: createBooleanExperiment({
|
|
1665
1657
|
productKeys: {
|
|
@@ -2270,6 +2262,14 @@ export const editorExperimentsConfig = {
|
|
|
2270
2262
|
param: 'isEnabled',
|
|
2271
2263
|
defaultValue: false
|
|
2272
2264
|
}),
|
|
2265
|
+
// Added 2026-06-20
|
|
2266
|
+
platform_editor_ssr_toolbar_optimistic: createBooleanExperiment({
|
|
2267
|
+
productKeys: {
|
|
2268
|
+
confluence: 'platform_editor_ssr_toolbar_optimistic'
|
|
2269
|
+
},
|
|
2270
|
+
param: 'isEnabled',
|
|
2271
|
+
defaultValue: false
|
|
2272
|
+
}),
|
|
2273
2273
|
cc_smarts_heading_autocomplete_migration: createBooleanExperiment({
|
|
2274
2274
|
productKeys: {
|
|
2275
2275
|
confluence: 'cc_smarts_heading_autocomplete_migration'
|
|
@@ -2284,5 +2284,14 @@ export const editorExperimentsConfig = {
|
|
|
2284
2284
|
},
|
|
2285
2285
|
param: 'isEnabled',
|
|
2286
2286
|
defaultValue: false
|
|
2287
|
+
}),
|
|
2288
|
+
// Added 2026-06-23
|
|
2289
|
+
'aifc-confluence-editor-csp-fix': createBooleanExperiment({
|
|
2290
|
+
productKeys: {
|
|
2291
|
+
confluence: 'aifc-confluence-editor-csp-fix',
|
|
2292
|
+
jira: 'aifc-confluence-editor-csp-fix'
|
|
2293
|
+
},
|
|
2294
|
+
param: 'value',
|
|
2295
|
+
defaultValue: false
|
|
2287
2296
|
})
|
|
2288
2297
|
};
|
|
@@ -67,5 +67,6 @@ export var testBooleanOverrides = {
|
|
|
67
67
|
platform_editor_ai_new_aifc_editor_experience: false,
|
|
68
68
|
cc_page_experiences_editor_image_generation: false,
|
|
69
69
|
platform_use_unicode_emojis: false,
|
|
70
|
-
platform_editor_emoji_hover_show_tooltip: false
|
|
70
|
+
platform_editor_emoji_hover_show_tooltip: false,
|
|
71
|
+
'aifc-confluence-editor-csp-fix': false
|
|
71
72
|
};
|
|
@@ -1652,14 +1652,6 @@ export var editorExperimentsConfig = {
|
|
|
1652
1652
|
param: 'isEnabled',
|
|
1653
1653
|
defaultValue: false
|
|
1654
1654
|
}),
|
|
1655
|
-
// Added 2026-03-20
|
|
1656
|
-
platform_editor_chromeless_expand_fix: createBooleanExperiment({
|
|
1657
|
-
productKeys: {
|
|
1658
|
-
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1659
|
-
},
|
|
1660
|
-
param: 'isEnabled',
|
|
1661
|
-
defaultValue: false
|
|
1662
|
-
}),
|
|
1663
1655
|
// Added 2026-05-01
|
|
1664
1656
|
platform_editor_ai_normalized_telemetry: createBooleanExperiment({
|
|
1665
1657
|
productKeys: {
|
|
@@ -2270,6 +2262,14 @@ export var editorExperimentsConfig = {
|
|
|
2270
2262
|
param: 'isEnabled',
|
|
2271
2263
|
defaultValue: false
|
|
2272
2264
|
}),
|
|
2265
|
+
// Added 2026-06-20
|
|
2266
|
+
platform_editor_ssr_toolbar_optimistic: createBooleanExperiment({
|
|
2267
|
+
productKeys: {
|
|
2268
|
+
confluence: 'platform_editor_ssr_toolbar_optimistic'
|
|
2269
|
+
},
|
|
2270
|
+
param: 'isEnabled',
|
|
2271
|
+
defaultValue: false
|
|
2272
|
+
}),
|
|
2273
2273
|
cc_smarts_heading_autocomplete_migration: createBooleanExperiment({
|
|
2274
2274
|
productKeys: {
|
|
2275
2275
|
confluence: 'cc_smarts_heading_autocomplete_migration'
|
|
@@ -2284,5 +2284,14 @@ export var editorExperimentsConfig = {
|
|
|
2284
2284
|
},
|
|
2285
2285
|
param: 'isEnabled',
|
|
2286
2286
|
defaultValue: false
|
|
2287
|
+
}),
|
|
2288
|
+
// Added 2026-06-23
|
|
2289
|
+
'aifc-confluence-editor-csp-fix': createBooleanExperiment({
|
|
2290
|
+
productKeys: {
|
|
2291
|
+
confluence: 'aifc-confluence-editor-csp-fix',
|
|
2292
|
+
jira: 'aifc-confluence-editor-csp-fix'
|
|
2293
|
+
},
|
|
2294
|
+
param: 'value',
|
|
2295
|
+
defaultValue: false
|
|
2287
2296
|
})
|
|
2288
2297
|
};
|
|
@@ -1262,12 +1262,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1262
1262
|
productKeys?: ProductKeys;
|
|
1263
1263
|
typeGuard: IsBooleanType;
|
|
1264
1264
|
};
|
|
1265
|
-
platform_editor_chromeless_expand_fix: {
|
|
1266
|
-
defaultValue: boolean;
|
|
1267
|
-
param: string;
|
|
1268
|
-
productKeys?: ProductKeys;
|
|
1269
|
-
typeGuard: IsBooleanType;
|
|
1270
|
-
};
|
|
1271
1265
|
platform_editor_misaligned_ai_screens_firefox_fix: {
|
|
1272
1266
|
defaultValue: boolean;
|
|
1273
1267
|
param: string;
|
|
@@ -1659,6 +1653,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1659
1653
|
productKeys?: ProductKeys;
|
|
1660
1654
|
typeGuard: IsBooleanType;
|
|
1661
1655
|
};
|
|
1656
|
+
platform_editor_ssr_toolbar_optimistic: {
|
|
1657
|
+
defaultValue: boolean;
|
|
1658
|
+
param: string;
|
|
1659
|
+
productKeys?: ProductKeys;
|
|
1660
|
+
typeGuard: IsBooleanType;
|
|
1661
|
+
};
|
|
1662
1662
|
cc_smarts_heading_autocomplete_migration: {
|
|
1663
1663
|
defaultValue: boolean;
|
|
1664
1664
|
param: string;
|
|
@@ -1671,5 +1671,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1671
1671
|
productKeys?: ProductKeys;
|
|
1672
1672
|
typeGuard: IsBooleanType;
|
|
1673
1673
|
};
|
|
1674
|
+
'aifc-confluence-editor-csp-fix': {
|
|
1675
|
+
defaultValue: boolean;
|
|
1676
|
+
param: string;
|
|
1677
|
+
productKeys?: ProductKeys;
|
|
1678
|
+
typeGuard: IsBooleanType;
|
|
1679
|
+
};
|
|
1674
1680
|
};
|
|
1675
1681
|
export {};
|
package/package.json
CHANGED