@atlaskit/tmp-editor-statsig 44.3.0 → 45.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 +17 -0
- package/dist/cjs/experiments-config.js +16 -8
- package/dist/es2019/experiments-config.js +16 -8
- package/dist/esm/experiments-config.js +16 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 45.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`a64a0cad8103d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a64a0cad8103d) -
|
|
8
|
+
Cleanup stale feature flag `platform_editor_quick_insert_image_wrap_right_fix`. The enabled
|
|
9
|
+
behaviour (setting `clear: unset` on the quick insert button element to prevent interference with
|
|
10
|
+
floated wrap-right images) is now always active.
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`14174d5130d27`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14174d5130d27) -
|
|
15
|
+
Adding editorAppearance in coreplugin shared state so that plugins can access appearance value
|
|
16
|
+
when updated
|
|
17
|
+
- [`2ce5b11415296`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2ce5b11415296) -
|
|
18
|
+
Add tabIndex to renderer headings for a11y and 'confluence_toc_nav_a11y' experiment config
|
|
19
|
+
|
|
3
20
|
## 44.3.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -931,14 +931,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
931
931
|
param: 'isEnabled',
|
|
932
932
|
defaultValue: false
|
|
933
933
|
}),
|
|
934
|
-
// Added 2025-09-11
|
|
935
|
-
platform_editor_quick_insert_image_wrap_right_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
936
|
-
productKeys: {
|
|
937
|
-
confluence: 'platform_editor_quick_insert_image_wrap_right_fix'
|
|
938
|
-
},
|
|
939
|
-
param: 'isEnabled',
|
|
940
|
-
defaultValue: false
|
|
941
|
-
}),
|
|
942
934
|
// Added 2026-03-05
|
|
943
935
|
platform_editor_abort_ufo_on_user_interaction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
944
936
|
productKeys: {
|
|
@@ -1593,6 +1585,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1593
1585
|
param: 'isEnabled',
|
|
1594
1586
|
defaultValue: false
|
|
1595
1587
|
}),
|
|
1588
|
+
// Added 2026-03-05
|
|
1589
|
+
platform_editor_appearance_shared_state: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1590
|
+
productKeys: {
|
|
1591
|
+
confluence: 'platform_editor_appearance_shared_state'
|
|
1592
|
+
},
|
|
1593
|
+
param: 'isEnabled',
|
|
1594
|
+
defaultValue: false
|
|
1595
|
+
}),
|
|
1596
1596
|
// Added 2026-03-04
|
|
1597
1597
|
platform_editor_ai_blockmenu_integration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1598
1598
|
productKeys: {
|
|
@@ -1839,5 +1839,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1839
1839
|
},
|
|
1840
1840
|
param: 'isEnabled',
|
|
1841
1841
|
defaultValue: false
|
|
1842
|
+
}),
|
|
1843
|
+
// Added 2026-03-23
|
|
1844
|
+
confluence_toc_nav_a11y: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1845
|
+
productKeys: {
|
|
1846
|
+
confluence: 'confluence_toc_nav_a11y'
|
|
1847
|
+
},
|
|
1848
|
+
param: 'isEnabled',
|
|
1849
|
+
defaultValue: false
|
|
1842
1850
|
})
|
|
1843
1851
|
};
|
|
@@ -925,14 +925,6 @@ export const editorExperimentsConfig = {
|
|
|
925
925
|
param: 'isEnabled',
|
|
926
926
|
defaultValue: false
|
|
927
927
|
}),
|
|
928
|
-
// Added 2025-09-11
|
|
929
|
-
platform_editor_quick_insert_image_wrap_right_fix: createBooleanExperiment({
|
|
930
|
-
productKeys: {
|
|
931
|
-
confluence: 'platform_editor_quick_insert_image_wrap_right_fix'
|
|
932
|
-
},
|
|
933
|
-
param: 'isEnabled',
|
|
934
|
-
defaultValue: false
|
|
935
|
-
}),
|
|
936
928
|
// Added 2026-03-05
|
|
937
929
|
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
938
930
|
productKeys: {
|
|
@@ -1587,6 +1579,14 @@ export const editorExperimentsConfig = {
|
|
|
1587
1579
|
param: 'isEnabled',
|
|
1588
1580
|
defaultValue: false
|
|
1589
1581
|
}),
|
|
1582
|
+
// Added 2026-03-05
|
|
1583
|
+
platform_editor_appearance_shared_state: createBooleanExperiment({
|
|
1584
|
+
productKeys: {
|
|
1585
|
+
confluence: 'platform_editor_appearance_shared_state'
|
|
1586
|
+
},
|
|
1587
|
+
param: 'isEnabled',
|
|
1588
|
+
defaultValue: false
|
|
1589
|
+
}),
|
|
1590
1590
|
// Added 2026-03-04
|
|
1591
1591
|
platform_editor_ai_blockmenu_integration: createBooleanExperiment({
|
|
1592
1592
|
productKeys: {
|
|
@@ -1833,5 +1833,13 @@ export const editorExperimentsConfig = {
|
|
|
1833
1833
|
},
|
|
1834
1834
|
param: 'isEnabled',
|
|
1835
1835
|
defaultValue: false
|
|
1836
|
+
}),
|
|
1837
|
+
// Added 2026-03-23
|
|
1838
|
+
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1839
|
+
productKeys: {
|
|
1840
|
+
confluence: 'confluence_toc_nav_a11y'
|
|
1841
|
+
},
|
|
1842
|
+
param: 'isEnabled',
|
|
1843
|
+
defaultValue: false
|
|
1836
1844
|
})
|
|
1837
1845
|
};
|
|
@@ -925,14 +925,6 @@ export var editorExperimentsConfig = {
|
|
|
925
925
|
param: 'isEnabled',
|
|
926
926
|
defaultValue: false
|
|
927
927
|
}),
|
|
928
|
-
// Added 2025-09-11
|
|
929
|
-
platform_editor_quick_insert_image_wrap_right_fix: createBooleanExperiment({
|
|
930
|
-
productKeys: {
|
|
931
|
-
confluence: 'platform_editor_quick_insert_image_wrap_right_fix'
|
|
932
|
-
},
|
|
933
|
-
param: 'isEnabled',
|
|
934
|
-
defaultValue: false
|
|
935
|
-
}),
|
|
936
928
|
// Added 2026-03-05
|
|
937
929
|
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
938
930
|
productKeys: {
|
|
@@ -1587,6 +1579,14 @@ export var editorExperimentsConfig = {
|
|
|
1587
1579
|
param: 'isEnabled',
|
|
1588
1580
|
defaultValue: false
|
|
1589
1581
|
}),
|
|
1582
|
+
// Added 2026-03-05
|
|
1583
|
+
platform_editor_appearance_shared_state: createBooleanExperiment({
|
|
1584
|
+
productKeys: {
|
|
1585
|
+
confluence: 'platform_editor_appearance_shared_state'
|
|
1586
|
+
},
|
|
1587
|
+
param: 'isEnabled',
|
|
1588
|
+
defaultValue: false
|
|
1589
|
+
}),
|
|
1590
1590
|
// Added 2026-03-04
|
|
1591
1591
|
platform_editor_ai_blockmenu_integration: createBooleanExperiment({
|
|
1592
1592
|
productKeys: {
|
|
@@ -1833,5 +1833,13 @@ export var editorExperimentsConfig = {
|
|
|
1833
1833
|
},
|
|
1834
1834
|
param: 'isEnabled',
|
|
1835
1835
|
defaultValue: false
|
|
1836
|
+
}),
|
|
1837
|
+
// Added 2026-03-23
|
|
1838
|
+
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1839
|
+
productKeys: {
|
|
1840
|
+
confluence: 'confluence_toc_nav_a11y'
|
|
1841
|
+
},
|
|
1842
|
+
param: 'isEnabled',
|
|
1843
|
+
defaultValue: false
|
|
1836
1844
|
})
|
|
1837
1845
|
};
|
|
@@ -505,6 +505,12 @@ export declare const editorExperimentsConfig: {
|
|
|
505
505
|
productKeys?: ProductKeys;
|
|
506
506
|
typeGuard: IsBooleanType;
|
|
507
507
|
};
|
|
508
|
+
platform_editor_appearance_shared_state: {
|
|
509
|
+
defaultValue: boolean;
|
|
510
|
+
param: string;
|
|
511
|
+
productKeys?: ProductKeys;
|
|
512
|
+
typeGuard: IsBooleanType;
|
|
513
|
+
};
|
|
508
514
|
platform_editor_lovability_emoji_scaling: {
|
|
509
515
|
defaultValue: boolean;
|
|
510
516
|
param: string;
|
|
@@ -607,12 +613,6 @@ export declare const editorExperimentsConfig: {
|
|
|
607
613
|
productKeys?: ProductKeys;
|
|
608
614
|
typeGuard: IsBooleanType;
|
|
609
615
|
};
|
|
610
|
-
platform_editor_quick_insert_image_wrap_right_fix: {
|
|
611
|
-
defaultValue: boolean;
|
|
612
|
-
param: string;
|
|
613
|
-
productKeys?: ProductKeys;
|
|
614
|
-
typeGuard: IsBooleanType;
|
|
615
|
-
};
|
|
616
616
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
617
617
|
defaultValue: boolean;
|
|
618
618
|
param: string;
|
|
@@ -1350,5 +1350,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1350
1350
|
productKeys?: ProductKeys;
|
|
1351
1351
|
typeGuard: IsBooleanType;
|
|
1352
1352
|
};
|
|
1353
|
+
confluence_toc_nav_a11y: {
|
|
1354
|
+
defaultValue: boolean;
|
|
1355
|
+
param: string;
|
|
1356
|
+
productKeys?: ProductKeys;
|
|
1357
|
+
typeGuard: IsBooleanType;
|
|
1358
|
+
};
|
|
1353
1359
|
};
|
|
1354
1360
|
export {};
|
|
@@ -505,6 +505,12 @@ export declare const editorExperimentsConfig: {
|
|
|
505
505
|
productKeys?: ProductKeys;
|
|
506
506
|
typeGuard: IsBooleanType;
|
|
507
507
|
};
|
|
508
|
+
platform_editor_appearance_shared_state: {
|
|
509
|
+
defaultValue: boolean;
|
|
510
|
+
param: string;
|
|
511
|
+
productKeys?: ProductKeys;
|
|
512
|
+
typeGuard: IsBooleanType;
|
|
513
|
+
};
|
|
508
514
|
platform_editor_lovability_emoji_scaling: {
|
|
509
515
|
defaultValue: boolean;
|
|
510
516
|
param: string;
|
|
@@ -607,12 +613,6 @@ export declare const editorExperimentsConfig: {
|
|
|
607
613
|
productKeys?: ProductKeys;
|
|
608
614
|
typeGuard: IsBooleanType;
|
|
609
615
|
};
|
|
610
|
-
platform_editor_quick_insert_image_wrap_right_fix: {
|
|
611
|
-
defaultValue: boolean;
|
|
612
|
-
param: string;
|
|
613
|
-
productKeys?: ProductKeys;
|
|
614
|
-
typeGuard: IsBooleanType;
|
|
615
|
-
};
|
|
616
616
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
617
617
|
defaultValue: boolean;
|
|
618
618
|
param: string;
|
|
@@ -1350,5 +1350,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1350
1350
|
productKeys?: ProductKeys;
|
|
1351
1351
|
typeGuard: IsBooleanType;
|
|
1352
1352
|
};
|
|
1353
|
+
confluence_toc_nav_a11y: {
|
|
1354
|
+
defaultValue: boolean;
|
|
1355
|
+
param: string;
|
|
1356
|
+
productKeys?: ProductKeys;
|
|
1357
|
+
typeGuard: IsBooleanType;
|
|
1358
|
+
};
|
|
1353
1359
|
};
|
|
1354
1360
|
export {};
|
package/package.json
CHANGED