@atlaskit/tmp-editor-statsig 16.10.0 → 16.11.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
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0095cf9cd3e6f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0095cf9cd3e6f) -
|
|
8
|
+
NOISSUE Clean up feature gate cc_editor_limited_mode_table_align_bttn
|
|
9
|
+
|
|
10
|
+
Remove the feature gate `cc_editor_limited_mode_table_align_bttn` and assume it's always enabled.
|
|
11
|
+
The performance optimization for table column distribution in limited mode is now always active
|
|
12
|
+
when limited mode is enabled.
|
|
13
|
+
|
|
3
14
|
## 16.10.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1048,14 +1048,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1048
1048
|
param: 'isEnabled',
|
|
1049
1049
|
defaultValue: false
|
|
1050
1050
|
}),
|
|
1051
|
-
// Added 2025-11-07
|
|
1052
|
-
cc_editor_limited_mode_table_align_bttn: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1053
|
-
productKeys: {
|
|
1054
|
-
confluence: 'cc_editor_limited_mode_table_align_bttn'
|
|
1055
|
-
},
|
|
1056
|
-
param: 'isEnabled',
|
|
1057
|
-
defaultValue: false
|
|
1058
|
-
}),
|
|
1059
1051
|
// Added 2025-12-18
|
|
1060
1052
|
platform_editor_blockquote_zero_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1061
1053
|
productKeys: {
|
|
@@ -1042,14 +1042,6 @@ export const editorExperimentsConfig = {
|
|
|
1042
1042
|
param: 'isEnabled',
|
|
1043
1043
|
defaultValue: false
|
|
1044
1044
|
}),
|
|
1045
|
-
// Added 2025-11-07
|
|
1046
|
-
cc_editor_limited_mode_table_align_bttn: createBooleanExperiment({
|
|
1047
|
-
productKeys: {
|
|
1048
|
-
confluence: 'cc_editor_limited_mode_table_align_bttn'
|
|
1049
|
-
},
|
|
1050
|
-
param: 'isEnabled',
|
|
1051
|
-
defaultValue: false
|
|
1052
|
-
}),
|
|
1053
1045
|
// Added 2025-12-18
|
|
1054
1046
|
platform_editor_blockquote_zero_padding: createBooleanExperiment({
|
|
1055
1047
|
productKeys: {
|
|
@@ -1042,14 +1042,6 @@ export var editorExperimentsConfig = {
|
|
|
1042
1042
|
param: 'isEnabled',
|
|
1043
1043
|
defaultValue: false
|
|
1044
1044
|
}),
|
|
1045
|
-
// Added 2025-11-07
|
|
1046
|
-
cc_editor_limited_mode_table_align_bttn: createBooleanExperiment({
|
|
1047
|
-
productKeys: {
|
|
1048
|
-
confluence: 'cc_editor_limited_mode_table_align_bttn'
|
|
1049
|
-
},
|
|
1050
|
-
param: 'isEnabled',
|
|
1051
|
-
defaultValue: false
|
|
1052
|
-
}),
|
|
1053
1045
|
// Added 2025-12-18
|
|
1054
1046
|
platform_editor_blockquote_zero_padding: createBooleanExperiment({
|
|
1055
1047
|
productKeys: {
|
|
@@ -82,12 +82,6 @@ export declare const editorExperimentsConfig: {
|
|
|
82
82
|
productKeys?: ProductKeys;
|
|
83
83
|
typeGuard: IsBooleanType;
|
|
84
84
|
};
|
|
85
|
-
cc_editor_limited_mode_table_align_bttn: {
|
|
86
|
-
defaultValue: boolean;
|
|
87
|
-
param: string;
|
|
88
|
-
productKeys?: ProductKeys;
|
|
89
|
-
typeGuard: IsBooleanType;
|
|
90
|
-
};
|
|
91
85
|
cc_editor_ttvc_release_bundle_one: {
|
|
92
86
|
defaultValue: boolean;
|
|
93
87
|
param: string;
|
|
@@ -82,12 +82,6 @@ export declare const editorExperimentsConfig: {
|
|
|
82
82
|
productKeys?: ProductKeys;
|
|
83
83
|
typeGuard: IsBooleanType;
|
|
84
84
|
};
|
|
85
|
-
cc_editor_limited_mode_table_align_bttn: {
|
|
86
|
-
defaultValue: boolean;
|
|
87
|
-
param: string;
|
|
88
|
-
productKeys?: ProductKeys;
|
|
89
|
-
typeGuard: IsBooleanType;
|
|
90
|
-
};
|
|
91
85
|
cc_editor_ttvc_release_bundle_one: {
|
|
92
86
|
defaultValue: boolean;
|
|
93
87
|
param: string;
|
package/package.json
CHANGED