@atlaskit/tmp-editor-statsig 44.2.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 +30 -0
- package/dist/cjs/experiments-config.js +25 -8
- package/dist/es2019/experiments-config.js +25 -8
- package/dist/esm/experiments-config.js +25 -8
- package/dist/types/experiments-config.d.ts +18 -6
- package/dist/types-ts4.5/experiments-config.d.ts +18 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
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
|
+
|
|
20
|
+
## 44.3.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- [`da1128b3090cc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/da1128b3090cc) -
|
|
25
|
+
[EDITOR-5922] Update media picker to mount to popupsMountPoint (e.g. portal) if available so that
|
|
26
|
+
it is still visible when rendering outside of editor that has overflow hidden (e.g. resizable
|
|
27
|
+
editor)
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
|
|
3
33
|
## 44.2.0
|
|
4
34
|
|
|
5
35
|
### 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: {
|
|
@@ -1722,6 +1722,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1722
1722
|
param: 'isEnabled',
|
|
1723
1723
|
defaultValue: false
|
|
1724
1724
|
}),
|
|
1725
|
+
// Added 2026-03-24
|
|
1726
|
+
platform_editor_fix_media_picker_hidden: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1727
|
+
productKeys: {
|
|
1728
|
+
confluence: 'platform_editor_fix_media_picker_hidden',
|
|
1729
|
+
jira: 'platform_editor_fix_media_picker_hidden'
|
|
1730
|
+
},
|
|
1731
|
+
param: 'isEnabled',
|
|
1732
|
+
defaultValue: false
|
|
1733
|
+
}),
|
|
1725
1734
|
// Added 2026-03-10
|
|
1726
1735
|
platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1727
1736
|
productKeys: {
|
|
@@ -1830,5 +1839,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1830
1839
|
},
|
|
1831
1840
|
param: 'isEnabled',
|
|
1832
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
|
|
1833
1850
|
})
|
|
1834
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: {
|
|
@@ -1716,6 +1716,15 @@ export const editorExperimentsConfig = {
|
|
|
1716
1716
|
param: 'isEnabled',
|
|
1717
1717
|
defaultValue: false
|
|
1718
1718
|
}),
|
|
1719
|
+
// Added 2026-03-24
|
|
1720
|
+
platform_editor_fix_media_picker_hidden: createBooleanExperiment({
|
|
1721
|
+
productKeys: {
|
|
1722
|
+
confluence: 'platform_editor_fix_media_picker_hidden',
|
|
1723
|
+
jira: 'platform_editor_fix_media_picker_hidden'
|
|
1724
|
+
},
|
|
1725
|
+
param: 'isEnabled',
|
|
1726
|
+
defaultValue: false
|
|
1727
|
+
}),
|
|
1719
1728
|
// Added 2026-03-10
|
|
1720
1729
|
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1721
1730
|
productKeys: {
|
|
@@ -1824,5 +1833,13 @@ export const editorExperimentsConfig = {
|
|
|
1824
1833
|
},
|
|
1825
1834
|
param: 'isEnabled',
|
|
1826
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
|
|
1827
1844
|
})
|
|
1828
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: {
|
|
@@ -1716,6 +1716,15 @@ export var editorExperimentsConfig = {
|
|
|
1716
1716
|
param: 'isEnabled',
|
|
1717
1717
|
defaultValue: false
|
|
1718
1718
|
}),
|
|
1719
|
+
// Added 2026-03-24
|
|
1720
|
+
platform_editor_fix_media_picker_hidden: createBooleanExperiment({
|
|
1721
|
+
productKeys: {
|
|
1722
|
+
confluence: 'platform_editor_fix_media_picker_hidden',
|
|
1723
|
+
jira: 'platform_editor_fix_media_picker_hidden'
|
|
1724
|
+
},
|
|
1725
|
+
param: 'isEnabled',
|
|
1726
|
+
defaultValue: false
|
|
1727
|
+
}),
|
|
1719
1728
|
// Added 2026-03-10
|
|
1720
1729
|
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1721
1730
|
productKeys: {
|
|
@@ -1824,5 +1833,13 @@ export var editorExperimentsConfig = {
|
|
|
1824
1833
|
},
|
|
1825
1834
|
param: 'isEnabled',
|
|
1826
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
|
|
1827
1844
|
})
|
|
1828
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;
|
|
@@ -1272,6 +1272,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1272
1272
|
productKeys?: ProductKeys;
|
|
1273
1273
|
typeGuard: IsBooleanType;
|
|
1274
1274
|
};
|
|
1275
|
+
platform_editor_fix_media_picker_hidden: {
|
|
1276
|
+
defaultValue: boolean;
|
|
1277
|
+
param: string;
|
|
1278
|
+
productKeys?: ProductKeys;
|
|
1279
|
+
typeGuard: IsBooleanType;
|
|
1280
|
+
};
|
|
1275
1281
|
platform_editor_analyse_table_with_merged_cells: {
|
|
1276
1282
|
defaultValue: boolean;
|
|
1277
1283
|
param: string;
|
|
@@ -1344,5 +1350,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1344
1350
|
productKeys?: ProductKeys;
|
|
1345
1351
|
typeGuard: IsBooleanType;
|
|
1346
1352
|
};
|
|
1353
|
+
confluence_toc_nav_a11y: {
|
|
1354
|
+
defaultValue: boolean;
|
|
1355
|
+
param: string;
|
|
1356
|
+
productKeys?: ProductKeys;
|
|
1357
|
+
typeGuard: IsBooleanType;
|
|
1358
|
+
};
|
|
1347
1359
|
};
|
|
1348
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;
|
|
@@ -1272,6 +1272,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1272
1272
|
productKeys?: ProductKeys;
|
|
1273
1273
|
typeGuard: IsBooleanType;
|
|
1274
1274
|
};
|
|
1275
|
+
platform_editor_fix_media_picker_hidden: {
|
|
1276
|
+
defaultValue: boolean;
|
|
1277
|
+
param: string;
|
|
1278
|
+
productKeys?: ProductKeys;
|
|
1279
|
+
typeGuard: IsBooleanType;
|
|
1280
|
+
};
|
|
1275
1281
|
platform_editor_analyse_table_with_merged_cells: {
|
|
1276
1282
|
defaultValue: boolean;
|
|
1277
1283
|
param: string;
|
|
@@ -1344,5 +1350,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1344
1350
|
productKeys?: ProductKeys;
|
|
1345
1351
|
typeGuard: IsBooleanType;
|
|
1346
1352
|
};
|
|
1353
|
+
confluence_toc_nav_a11y: {
|
|
1354
|
+
defaultValue: boolean;
|
|
1355
|
+
param: string;
|
|
1356
|
+
productKeys?: ProductKeys;
|
|
1357
|
+
typeGuard: IsBooleanType;
|
|
1358
|
+
};
|
|
1347
1359
|
};
|
|
1348
1360
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "45.0.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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"atlaskit:src": "src/index.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
37
|
-
"@atlaskit/react-ufo": "^5.
|
|
37
|
+
"@atlaskit/react-ufo": "^5.5.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|