@atlaskit/tmp-editor-statsig 95.0.0 → 99.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 +51 -0
- package/dist/cjs/experiments-config.js +17 -41
- package/dist/es2019/experiments-config.js +17 -41
- package/dist/esm/experiments-config.js +17 -41
- package/dist/types/experiments-config.d.ts +11 -29
- package/dist/types-ts4.5/experiments-config.d.ts +11 -29
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 99.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`7f8f275864fb6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f8f275864fb6) -
|
|
8
|
+
Cleanup experiment `platform_editor_analyse_table_with_merged_cells`.
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- [`62bea93a6f5eb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/62bea93a6f5eb) -
|
|
13
|
+
Add the `platform_editor_external_embed_grid_fix` experiment and use it to align editor grid
|
|
14
|
+
guidelines to the editor viewport while resizing external embeds.
|
|
15
|
+
|
|
16
|
+
## 98.0.0
|
|
17
|
+
|
|
18
|
+
### Major Changes
|
|
19
|
+
|
|
20
|
+
- [`f89de6a3f94b5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f89de6a3f94b5) -
|
|
21
|
+
Clean up stale experiment editor_a11y_decision_aria_label. Decision items now always render
|
|
22
|
+
dynamic aria-labels based on empty/filled state.
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- [`1d7eb738bd45c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1d7eb738bd45c) -
|
|
27
|
+
Cleaned up stale experiment platform_editor_table_sticky_header_patch_11
|
|
28
|
+
|
|
29
|
+
## 97.0.0
|
|
30
|
+
|
|
31
|
+
### Major Changes
|
|
32
|
+
|
|
33
|
+
- [`390501e03bc0a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/390501e03bc0a) -
|
|
34
|
+
Cleanup experiment `platform_editor_fix_comment_border` (shipped with isEnabled=true). Removed
|
|
35
|
+
experiment guards and config entries.
|
|
36
|
+
|
|
37
|
+
### Minor Changes
|
|
38
|
+
|
|
39
|
+
- [`6e5305ed556df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6e5305ed556df) -
|
|
40
|
+
revert removal of FG platform_editor_remove_important_in_render_ext
|
|
41
|
+
|
|
42
|
+
## 96.0.0
|
|
43
|
+
|
|
44
|
+
### Major Changes
|
|
45
|
+
|
|
46
|
+
- [`c6797e45d5bae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c6797e45d5bae) -
|
|
47
|
+
Cleaned up stale experiment platform_editor_user_highlight_contrast. Merged userHighlightTextColor
|
|
48
|
+
styles into userHighlightBackgroundColor and removed experiment configuration.
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- Updated dependencies
|
|
53
|
+
|
|
3
54
|
## 95.0.0
|
|
4
55
|
|
|
5
56
|
### Major Changes
|
|
@@ -90,15 +90,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
90
90
|
param: 'isEnabled',
|
|
91
91
|
defaultValue: false
|
|
92
92
|
}),
|
|
93
|
-
// Added 2026-02-20
|
|
94
|
-
editor_a11y_decision_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
|
|
95
|
-
productKeys: {
|
|
96
|
-
confluence: 'editor_a11y_decision_aria_label',
|
|
97
|
-
jira: 'editor_a11y_decision_aria_label'
|
|
98
|
-
},
|
|
99
|
-
param: 'isEnabled',
|
|
100
|
-
defaultValue: false
|
|
101
|
-
}),
|
|
102
93
|
// Added 03-09-2025
|
|
103
94
|
cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
|
|
104
95
|
productKeys: {
|
|
@@ -123,6 +114,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
123
114
|
param: 'isEnabled',
|
|
124
115
|
defaultValue: false
|
|
125
116
|
}),
|
|
117
|
+
// Added 2026-02-16
|
|
118
|
+
platform_editor_remove_important_in_render_ext: (0, _experimentBuilders.createBooleanExperiment)({
|
|
119
|
+
productKeys: {
|
|
120
|
+
confluence: 'platform_editor_remove_important_in_render_ext'
|
|
121
|
+
},
|
|
122
|
+
param: 'isEnabled',
|
|
123
|
+
defaultValue: false
|
|
124
|
+
}),
|
|
126
125
|
// Added 2025-12-10
|
|
127
126
|
confluence_max_width_content_appearance: (0, _experimentBuilders.createBooleanExperiment)({
|
|
128
127
|
productKeys: {
|
|
@@ -1154,14 +1153,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1154
1153
|
param: 'isEnabled',
|
|
1155
1154
|
defaultValue: false
|
|
1156
1155
|
}),
|
|
1157
|
-
// Added 2026-01-12
|
|
1158
|
-
platform_editor_table_sticky_header_patch_11: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1159
|
-
productKeys: {
|
|
1160
|
-
confluence: 'platform_editor_table_sticky_header_patch_11'
|
|
1161
|
-
},
|
|
1162
|
-
param: 'isEnabled',
|
|
1163
|
-
defaultValue: false
|
|
1164
|
-
}),
|
|
1165
1156
|
// Added 2026-02-16
|
|
1166
1157
|
platform_editor_ai_fix_insert_after_selection: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1167
1158
|
productKeys: {
|
|
@@ -1644,14 +1635,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1644
1635
|
param: 'isEnabled',
|
|
1645
1636
|
defaultValue: false
|
|
1646
1637
|
}),
|
|
1647
|
-
// Added 2026-03-10
|
|
1648
|
-
platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1649
|
-
productKeys: {
|
|
1650
|
-
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1651
|
-
},
|
|
1652
|
-
param: 'isEnabled',
|
|
1653
|
-
defaultValue: false
|
|
1654
|
-
}),
|
|
1655
1638
|
cc_editor_ttvc_media_hold_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1656
1639
|
productKeys: {
|
|
1657
1640
|
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
@@ -1795,14 +1778,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1795
1778
|
param: 'isEnabled',
|
|
1796
1779
|
defaultValue: false
|
|
1797
1780
|
}),
|
|
1798
|
-
// Added 2026-02-004
|
|
1799
|
-
platform_editor_user_highlight_contrast: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1800
|
-
productKeys: {
|
|
1801
|
-
confluence: 'platform_editor_user_highlight_contrast'
|
|
1802
|
-
},
|
|
1803
|
-
param: 'isEnabled',
|
|
1804
|
-
defaultValue: false
|
|
1805
|
-
}),
|
|
1806
1781
|
// Added 2026-03-25
|
|
1807
1782
|
platform_editor_improve_preset_builder_logging: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1808
1783
|
productKeys: {
|
|
@@ -1819,14 +1794,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1819
1794
|
param: 'isEnabled',
|
|
1820
1795
|
defaultValue: false
|
|
1821
1796
|
}),
|
|
1822
|
-
// Added 2026-03-26
|
|
1823
|
-
platform_editor_fix_comment_border: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1824
|
-
productKeys: {
|
|
1825
|
-
confluence: 'platform_editor_fix_comment_border'
|
|
1826
|
-
},
|
|
1827
|
-
param: 'isEnabled',
|
|
1828
|
-
defaultValue: false
|
|
1829
|
-
}),
|
|
1830
1797
|
// Added 2026-04-23
|
|
1831
1798
|
'cc-markdown-mode': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1832
1799
|
productKeys: {
|
|
@@ -1925,6 +1892,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1925
1892
|
param: 'isEnabled',
|
|
1926
1893
|
defaultValue: false
|
|
1927
1894
|
}),
|
|
1895
|
+
// Added 2026-06-11
|
|
1896
|
+
platform_editor_external_embed_grid_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1897
|
+
productKeys: {
|
|
1898
|
+
confluence: 'platform_editor_external_embed_grid_fix',
|
|
1899
|
+
jira: 'platform_editor_external_embed_grid_fix'
|
|
1900
|
+
},
|
|
1901
|
+
param: 'isEnabled',
|
|
1902
|
+
defaultValue: false
|
|
1903
|
+
}),
|
|
1928
1904
|
// Added 2026-04-08
|
|
1929
1905
|
cc_fd_wb_jira_quick_insert_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1930
1906
|
productKeys: {
|
|
@@ -84,15 +84,6 @@ export const editorExperimentsConfig = {
|
|
|
84
84
|
param: 'isEnabled',
|
|
85
85
|
defaultValue: false
|
|
86
86
|
}),
|
|
87
|
-
// Added 2026-02-20
|
|
88
|
-
editor_a11y_decision_aria_label: createBooleanExperiment({
|
|
89
|
-
productKeys: {
|
|
90
|
-
confluence: 'editor_a11y_decision_aria_label',
|
|
91
|
-
jira: 'editor_a11y_decision_aria_label'
|
|
92
|
-
},
|
|
93
|
-
param: 'isEnabled',
|
|
94
|
-
defaultValue: false
|
|
95
|
-
}),
|
|
96
87
|
// Added 03-09-2025
|
|
97
88
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
98
89
|
productKeys: {
|
|
@@ -117,6 +108,14 @@ export const editorExperimentsConfig = {
|
|
|
117
108
|
param: 'isEnabled',
|
|
118
109
|
defaultValue: false
|
|
119
110
|
}),
|
|
111
|
+
// Added 2026-02-16
|
|
112
|
+
platform_editor_remove_important_in_render_ext: createBooleanExperiment({
|
|
113
|
+
productKeys: {
|
|
114
|
+
confluence: 'platform_editor_remove_important_in_render_ext'
|
|
115
|
+
},
|
|
116
|
+
param: 'isEnabled',
|
|
117
|
+
defaultValue: false
|
|
118
|
+
}),
|
|
120
119
|
// Added 2025-12-10
|
|
121
120
|
confluence_max_width_content_appearance: createBooleanExperiment({
|
|
122
121
|
productKeys: {
|
|
@@ -1148,14 +1147,6 @@ export const editorExperimentsConfig = {
|
|
|
1148
1147
|
param: 'isEnabled',
|
|
1149
1148
|
defaultValue: false
|
|
1150
1149
|
}),
|
|
1151
|
-
// Added 2026-01-12
|
|
1152
|
-
platform_editor_table_sticky_header_patch_11: createBooleanExperiment({
|
|
1153
|
-
productKeys: {
|
|
1154
|
-
confluence: 'platform_editor_table_sticky_header_patch_11'
|
|
1155
|
-
},
|
|
1156
|
-
param: 'isEnabled',
|
|
1157
|
-
defaultValue: false
|
|
1158
|
-
}),
|
|
1159
1150
|
// Added 2026-02-16
|
|
1160
1151
|
platform_editor_ai_fix_insert_after_selection: createBooleanExperiment({
|
|
1161
1152
|
productKeys: {
|
|
@@ -1638,14 +1629,6 @@ export const editorExperimentsConfig = {
|
|
|
1638
1629
|
param: 'isEnabled',
|
|
1639
1630
|
defaultValue: false
|
|
1640
1631
|
}),
|
|
1641
|
-
// Added 2026-03-10
|
|
1642
|
-
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1643
|
-
productKeys: {
|
|
1644
|
-
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1645
|
-
},
|
|
1646
|
-
param: 'isEnabled',
|
|
1647
|
-
defaultValue: false
|
|
1648
|
-
}),
|
|
1649
1632
|
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1650
1633
|
productKeys: {
|
|
1651
1634
|
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
@@ -1789,14 +1772,6 @@ export const editorExperimentsConfig = {
|
|
|
1789
1772
|
param: 'isEnabled',
|
|
1790
1773
|
defaultValue: false
|
|
1791
1774
|
}),
|
|
1792
|
-
// Added 2026-02-004
|
|
1793
|
-
platform_editor_user_highlight_contrast: createBooleanExperiment({
|
|
1794
|
-
productKeys: {
|
|
1795
|
-
confluence: 'platform_editor_user_highlight_contrast'
|
|
1796
|
-
},
|
|
1797
|
-
param: 'isEnabled',
|
|
1798
|
-
defaultValue: false
|
|
1799
|
-
}),
|
|
1800
1775
|
// Added 2026-03-25
|
|
1801
1776
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1802
1777
|
productKeys: {
|
|
@@ -1813,14 +1788,6 @@ export const editorExperimentsConfig = {
|
|
|
1813
1788
|
param: 'isEnabled',
|
|
1814
1789
|
defaultValue: false
|
|
1815
1790
|
}),
|
|
1816
|
-
// Added 2026-03-26
|
|
1817
|
-
platform_editor_fix_comment_border: createBooleanExperiment({
|
|
1818
|
-
productKeys: {
|
|
1819
|
-
confluence: 'platform_editor_fix_comment_border'
|
|
1820
|
-
},
|
|
1821
|
-
param: 'isEnabled',
|
|
1822
|
-
defaultValue: false
|
|
1823
|
-
}),
|
|
1824
1791
|
// Added 2026-04-23
|
|
1825
1792
|
'cc-markdown-mode': createBooleanExperiment({
|
|
1826
1793
|
productKeys: {
|
|
@@ -1919,6 +1886,15 @@ export const editorExperimentsConfig = {
|
|
|
1919
1886
|
param: 'isEnabled',
|
|
1920
1887
|
defaultValue: false
|
|
1921
1888
|
}),
|
|
1889
|
+
// Added 2026-06-11
|
|
1890
|
+
platform_editor_external_embed_grid_fix: createBooleanExperiment({
|
|
1891
|
+
productKeys: {
|
|
1892
|
+
confluence: 'platform_editor_external_embed_grid_fix',
|
|
1893
|
+
jira: 'platform_editor_external_embed_grid_fix'
|
|
1894
|
+
},
|
|
1895
|
+
param: 'isEnabled',
|
|
1896
|
+
defaultValue: false
|
|
1897
|
+
}),
|
|
1922
1898
|
// Added 2026-04-08
|
|
1923
1899
|
cc_fd_wb_jira_quick_insert_experiment: createBooleanExperiment({
|
|
1924
1900
|
productKeys: {
|
|
@@ -84,15 +84,6 @@ export var editorExperimentsConfig = {
|
|
|
84
84
|
param: 'isEnabled',
|
|
85
85
|
defaultValue: false
|
|
86
86
|
}),
|
|
87
|
-
// Added 2026-02-20
|
|
88
|
-
editor_a11y_decision_aria_label: createBooleanExperiment({
|
|
89
|
-
productKeys: {
|
|
90
|
-
confluence: 'editor_a11y_decision_aria_label',
|
|
91
|
-
jira: 'editor_a11y_decision_aria_label'
|
|
92
|
-
},
|
|
93
|
-
param: 'isEnabled',
|
|
94
|
-
defaultValue: false
|
|
95
|
-
}),
|
|
96
87
|
// Added 03-09-2025
|
|
97
88
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
98
89
|
productKeys: {
|
|
@@ -117,6 +108,14 @@ export var editorExperimentsConfig = {
|
|
|
117
108
|
param: 'isEnabled',
|
|
118
109
|
defaultValue: false
|
|
119
110
|
}),
|
|
111
|
+
// Added 2026-02-16
|
|
112
|
+
platform_editor_remove_important_in_render_ext: createBooleanExperiment({
|
|
113
|
+
productKeys: {
|
|
114
|
+
confluence: 'platform_editor_remove_important_in_render_ext'
|
|
115
|
+
},
|
|
116
|
+
param: 'isEnabled',
|
|
117
|
+
defaultValue: false
|
|
118
|
+
}),
|
|
120
119
|
// Added 2025-12-10
|
|
121
120
|
confluence_max_width_content_appearance: createBooleanExperiment({
|
|
122
121
|
productKeys: {
|
|
@@ -1148,14 +1147,6 @@ export var editorExperimentsConfig = {
|
|
|
1148
1147
|
param: 'isEnabled',
|
|
1149
1148
|
defaultValue: false
|
|
1150
1149
|
}),
|
|
1151
|
-
// Added 2026-01-12
|
|
1152
|
-
platform_editor_table_sticky_header_patch_11: createBooleanExperiment({
|
|
1153
|
-
productKeys: {
|
|
1154
|
-
confluence: 'platform_editor_table_sticky_header_patch_11'
|
|
1155
|
-
},
|
|
1156
|
-
param: 'isEnabled',
|
|
1157
|
-
defaultValue: false
|
|
1158
|
-
}),
|
|
1159
1150
|
// Added 2026-02-16
|
|
1160
1151
|
platform_editor_ai_fix_insert_after_selection: createBooleanExperiment({
|
|
1161
1152
|
productKeys: {
|
|
@@ -1638,14 +1629,6 @@ export var editorExperimentsConfig = {
|
|
|
1638
1629
|
param: 'isEnabled',
|
|
1639
1630
|
defaultValue: false
|
|
1640
1631
|
}),
|
|
1641
|
-
// Added 2026-03-10
|
|
1642
|
-
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1643
|
-
productKeys: {
|
|
1644
|
-
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1645
|
-
},
|
|
1646
|
-
param: 'isEnabled',
|
|
1647
|
-
defaultValue: false
|
|
1648
|
-
}),
|
|
1649
1632
|
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1650
1633
|
productKeys: {
|
|
1651
1634
|
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
@@ -1789,14 +1772,6 @@ export var editorExperimentsConfig = {
|
|
|
1789
1772
|
param: 'isEnabled',
|
|
1790
1773
|
defaultValue: false
|
|
1791
1774
|
}),
|
|
1792
|
-
// Added 2026-02-004
|
|
1793
|
-
platform_editor_user_highlight_contrast: createBooleanExperiment({
|
|
1794
|
-
productKeys: {
|
|
1795
|
-
confluence: 'platform_editor_user_highlight_contrast'
|
|
1796
|
-
},
|
|
1797
|
-
param: 'isEnabled',
|
|
1798
|
-
defaultValue: false
|
|
1799
|
-
}),
|
|
1800
1775
|
// Added 2026-03-25
|
|
1801
1776
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1802
1777
|
productKeys: {
|
|
@@ -1813,14 +1788,6 @@ export var editorExperimentsConfig = {
|
|
|
1813
1788
|
param: 'isEnabled',
|
|
1814
1789
|
defaultValue: false
|
|
1815
1790
|
}),
|
|
1816
|
-
// Added 2026-03-26
|
|
1817
|
-
platform_editor_fix_comment_border: createBooleanExperiment({
|
|
1818
|
-
productKeys: {
|
|
1819
|
-
confluence: 'platform_editor_fix_comment_border'
|
|
1820
|
-
},
|
|
1821
|
-
param: 'isEnabled',
|
|
1822
|
-
defaultValue: false
|
|
1823
|
-
}),
|
|
1824
1791
|
// Added 2026-04-23
|
|
1825
1792
|
'cc-markdown-mode': createBooleanExperiment({
|
|
1826
1793
|
productKeys: {
|
|
@@ -1919,6 +1886,15 @@ export var editorExperimentsConfig = {
|
|
|
1919
1886
|
param: 'isEnabled',
|
|
1920
1887
|
defaultValue: false
|
|
1921
1888
|
}),
|
|
1889
|
+
// Added 2026-06-11
|
|
1890
|
+
platform_editor_external_embed_grid_fix: createBooleanExperiment({
|
|
1891
|
+
productKeys: {
|
|
1892
|
+
confluence: 'platform_editor_external_embed_grid_fix',
|
|
1893
|
+
jira: 'platform_editor_external_embed_grid_fix'
|
|
1894
|
+
},
|
|
1895
|
+
param: 'isEnabled',
|
|
1896
|
+
defaultValue: false
|
|
1897
|
+
}),
|
|
1922
1898
|
// Added 2026-04-08
|
|
1923
1899
|
cc_fd_wb_jira_quick_insert_experiment: createBooleanExperiment({
|
|
1924
1900
|
productKeys: {
|
|
@@ -107,12 +107,6 @@ export declare const editorExperimentsConfig: {
|
|
|
107
107
|
productKeys?: ProductKeys;
|
|
108
108
|
typeGuard: IsBooleanType;
|
|
109
109
|
};
|
|
110
|
-
editor_a11y_decision_aria_label: {
|
|
111
|
-
defaultValue: boolean;
|
|
112
|
-
param: string;
|
|
113
|
-
productKeys?: ProductKeys;
|
|
114
|
-
typeGuard: IsBooleanType;
|
|
115
|
-
};
|
|
116
110
|
platform_editor_ai_normalized_telemetry: {
|
|
117
111
|
defaultValue: boolean;
|
|
118
112
|
param: string;
|
|
@@ -233,6 +227,12 @@ export declare const editorExperimentsConfig: {
|
|
|
233
227
|
productKeys?: ProductKeys;
|
|
234
228
|
typeGuard: IsBooleanType;
|
|
235
229
|
};
|
|
230
|
+
platform_editor_remove_important_in_render_ext: {
|
|
231
|
+
defaultValue: boolean;
|
|
232
|
+
param: string;
|
|
233
|
+
productKeys?: ProductKeys;
|
|
234
|
+
typeGuard: IsBooleanType;
|
|
235
|
+
};
|
|
236
236
|
confluence_max_width_content_appearance: {
|
|
237
237
|
defaultValue: boolean;
|
|
238
238
|
param: string;
|
|
@@ -852,12 +852,6 @@ export declare const editorExperimentsConfig: {
|
|
|
852
852
|
productKeys?: ProductKeys;
|
|
853
853
|
typeGuard: IsBooleanType;
|
|
854
854
|
};
|
|
855
|
-
platform_editor_table_sticky_header_patch_11: {
|
|
856
|
-
defaultValue: boolean;
|
|
857
|
-
param: string;
|
|
858
|
-
productKeys?: ProductKeys;
|
|
859
|
-
typeGuard: IsBooleanType;
|
|
860
|
-
};
|
|
861
855
|
platform_editor_copy_link_a11y_inconsistency_fix: {
|
|
862
856
|
defaultValue: boolean;
|
|
863
857
|
param: string;
|
|
@@ -998,12 +992,6 @@ export declare const editorExperimentsConfig: {
|
|
|
998
992
|
productKeys?: ProductKeys;
|
|
999
993
|
typeGuard: IsBooleanType;
|
|
1000
994
|
};
|
|
1001
|
-
platform_editor_fix_comment_border: {
|
|
1002
|
-
defaultValue: boolean;
|
|
1003
|
-
param: string;
|
|
1004
|
-
productKeys?: ProductKeys;
|
|
1005
|
-
typeGuard: IsBooleanType;
|
|
1006
|
-
};
|
|
1007
995
|
platform_editor_layout_column_resize_handle: {
|
|
1008
996
|
defaultValue: boolean;
|
|
1009
997
|
param: string;
|
|
@@ -1274,12 +1262,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1274
1262
|
productKeys?: ProductKeys;
|
|
1275
1263
|
typeGuard: IsBooleanType;
|
|
1276
1264
|
};
|
|
1277
|
-
platform_editor_analyse_table_with_merged_cells: {
|
|
1278
|
-
defaultValue: boolean;
|
|
1279
|
-
param: string;
|
|
1280
|
-
productKeys?: ProductKeys;
|
|
1281
|
-
typeGuard: IsBooleanType;
|
|
1282
|
-
};
|
|
1283
1265
|
cc_editor_ttvc_media_hold_fix: {
|
|
1284
1266
|
defaultValue: boolean;
|
|
1285
1267
|
param: string;
|
|
@@ -1346,31 +1328,31 @@ export declare const editorExperimentsConfig: {
|
|
|
1346
1328
|
productKeys?: ProductKeys;
|
|
1347
1329
|
typeGuard: IsBooleanType;
|
|
1348
1330
|
};
|
|
1349
|
-
|
|
1331
|
+
platform_editor_external_embed_grid_fix: {
|
|
1350
1332
|
defaultValue: boolean;
|
|
1351
1333
|
param: string;
|
|
1352
1334
|
productKeys?: ProductKeys;
|
|
1353
1335
|
typeGuard: IsBooleanType;
|
|
1354
1336
|
};
|
|
1355
|
-
|
|
1337
|
+
platform_editor_stricter_panelcolor_typecheck: {
|
|
1356
1338
|
defaultValue: boolean;
|
|
1357
1339
|
param: string;
|
|
1358
1340
|
productKeys?: ProductKeys;
|
|
1359
1341
|
typeGuard: IsBooleanType;
|
|
1360
1342
|
};
|
|
1361
|
-
|
|
1343
|
+
platform_editor_sync_block_ssr_config: {
|
|
1362
1344
|
defaultValue: boolean;
|
|
1363
1345
|
param: string;
|
|
1364
1346
|
productKeys?: ProductKeys;
|
|
1365
1347
|
typeGuard: IsBooleanType;
|
|
1366
1348
|
};
|
|
1367
|
-
|
|
1349
|
+
platform_editor_selection_toolbar_block_handle: {
|
|
1368
1350
|
defaultValue: boolean;
|
|
1369
1351
|
param: string;
|
|
1370
1352
|
productKeys?: ProductKeys;
|
|
1371
1353
|
typeGuard: IsBooleanType;
|
|
1372
1354
|
};
|
|
1373
|
-
|
|
1355
|
+
confluence_fe_create_page_suggestion: {
|
|
1374
1356
|
defaultValue: boolean;
|
|
1375
1357
|
param: string;
|
|
1376
1358
|
productKeys?: ProductKeys;
|
|
@@ -107,12 +107,6 @@ export declare const editorExperimentsConfig: {
|
|
|
107
107
|
productKeys?: ProductKeys;
|
|
108
108
|
typeGuard: IsBooleanType;
|
|
109
109
|
};
|
|
110
|
-
editor_a11y_decision_aria_label: {
|
|
111
|
-
defaultValue: boolean;
|
|
112
|
-
param: string;
|
|
113
|
-
productKeys?: ProductKeys;
|
|
114
|
-
typeGuard: IsBooleanType;
|
|
115
|
-
};
|
|
116
110
|
platform_editor_ai_normalized_telemetry: {
|
|
117
111
|
defaultValue: boolean;
|
|
118
112
|
param: string;
|
|
@@ -233,6 +227,12 @@ export declare const editorExperimentsConfig: {
|
|
|
233
227
|
productKeys?: ProductKeys;
|
|
234
228
|
typeGuard: IsBooleanType;
|
|
235
229
|
};
|
|
230
|
+
platform_editor_remove_important_in_render_ext: {
|
|
231
|
+
defaultValue: boolean;
|
|
232
|
+
param: string;
|
|
233
|
+
productKeys?: ProductKeys;
|
|
234
|
+
typeGuard: IsBooleanType;
|
|
235
|
+
};
|
|
236
236
|
confluence_max_width_content_appearance: {
|
|
237
237
|
defaultValue: boolean;
|
|
238
238
|
param: string;
|
|
@@ -852,12 +852,6 @@ export declare const editorExperimentsConfig: {
|
|
|
852
852
|
productKeys?: ProductKeys;
|
|
853
853
|
typeGuard: IsBooleanType;
|
|
854
854
|
};
|
|
855
|
-
platform_editor_table_sticky_header_patch_11: {
|
|
856
|
-
defaultValue: boolean;
|
|
857
|
-
param: string;
|
|
858
|
-
productKeys?: ProductKeys;
|
|
859
|
-
typeGuard: IsBooleanType;
|
|
860
|
-
};
|
|
861
855
|
platform_editor_copy_link_a11y_inconsistency_fix: {
|
|
862
856
|
defaultValue: boolean;
|
|
863
857
|
param: string;
|
|
@@ -998,12 +992,6 @@ export declare const editorExperimentsConfig: {
|
|
|
998
992
|
productKeys?: ProductKeys;
|
|
999
993
|
typeGuard: IsBooleanType;
|
|
1000
994
|
};
|
|
1001
|
-
platform_editor_fix_comment_border: {
|
|
1002
|
-
defaultValue: boolean;
|
|
1003
|
-
param: string;
|
|
1004
|
-
productKeys?: ProductKeys;
|
|
1005
|
-
typeGuard: IsBooleanType;
|
|
1006
|
-
};
|
|
1007
995
|
platform_editor_layout_column_resize_handle: {
|
|
1008
996
|
defaultValue: boolean;
|
|
1009
997
|
param: string;
|
|
@@ -1274,12 +1262,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1274
1262
|
productKeys?: ProductKeys;
|
|
1275
1263
|
typeGuard: IsBooleanType;
|
|
1276
1264
|
};
|
|
1277
|
-
platform_editor_analyse_table_with_merged_cells: {
|
|
1278
|
-
defaultValue: boolean;
|
|
1279
|
-
param: string;
|
|
1280
|
-
productKeys?: ProductKeys;
|
|
1281
|
-
typeGuard: IsBooleanType;
|
|
1282
|
-
};
|
|
1283
1265
|
cc_editor_ttvc_media_hold_fix: {
|
|
1284
1266
|
defaultValue: boolean;
|
|
1285
1267
|
param: string;
|
|
@@ -1346,31 +1328,31 @@ export declare const editorExperimentsConfig: {
|
|
|
1346
1328
|
productKeys?: ProductKeys;
|
|
1347
1329
|
typeGuard: IsBooleanType;
|
|
1348
1330
|
};
|
|
1349
|
-
|
|
1331
|
+
platform_editor_external_embed_grid_fix: {
|
|
1350
1332
|
defaultValue: boolean;
|
|
1351
1333
|
param: string;
|
|
1352
1334
|
productKeys?: ProductKeys;
|
|
1353
1335
|
typeGuard: IsBooleanType;
|
|
1354
1336
|
};
|
|
1355
|
-
|
|
1337
|
+
platform_editor_stricter_panelcolor_typecheck: {
|
|
1356
1338
|
defaultValue: boolean;
|
|
1357
1339
|
param: string;
|
|
1358
1340
|
productKeys?: ProductKeys;
|
|
1359
1341
|
typeGuard: IsBooleanType;
|
|
1360
1342
|
};
|
|
1361
|
-
|
|
1343
|
+
platform_editor_sync_block_ssr_config: {
|
|
1362
1344
|
defaultValue: boolean;
|
|
1363
1345
|
param: string;
|
|
1364
1346
|
productKeys?: ProductKeys;
|
|
1365
1347
|
typeGuard: IsBooleanType;
|
|
1366
1348
|
};
|
|
1367
|
-
|
|
1349
|
+
platform_editor_selection_toolbar_block_handle: {
|
|
1368
1350
|
defaultValue: boolean;
|
|
1369
1351
|
param: string;
|
|
1370
1352
|
productKeys?: ProductKeys;
|
|
1371
1353
|
typeGuard: IsBooleanType;
|
|
1372
1354
|
};
|
|
1373
|
-
|
|
1355
|
+
confluence_fe_create_page_suggestion: {
|
|
1374
1356
|
defaultValue: boolean;
|
|
1375
1357
|
param: string;
|
|
1376
1358
|
productKeys?: ProductKeys;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "99.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",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"atlaskit:src": "src/index.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/feature-gate-js-client": "^5.
|
|
36
|
+
"@atlaskit/feature-gate-js-client": "^5.8.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
38
|
"@atlaskit/react-ufo": "^6.7.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|