@atlaskit/tmp-editor-statsig 13.32.1 → 13.33.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.33.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`fd0c8ec823f49`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fd0c8ec823f49) -
|
|
8
|
+
NOISSUE - Add limited mode check for expensive getTableScalingPercent calls for the table floating
|
|
9
|
+
toolbar alignment button.
|
|
10
|
+
|
|
3
11
|
## 13.32.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1120,5 +1120,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1120
1120
|
},
|
|
1121
1121
|
param: 'isEnabled',
|
|
1122
1122
|
defaultValue: false
|
|
1123
|
+
}),
|
|
1124
|
+
// Added 2025-11-07
|
|
1125
|
+
cc_editor_limited_mode_table_align_bttn: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1126
|
+
productKeys: {
|
|
1127
|
+
confluence: 'cc_editor_limited_mode_table_align_bttn'
|
|
1128
|
+
},
|
|
1129
|
+
param: 'isEnabled',
|
|
1130
|
+
defaultValue: false
|
|
1123
1131
|
})
|
|
1124
1132
|
};
|
|
@@ -1114,5 +1114,13 @@ export const editorExperimentsConfig = {
|
|
|
1114
1114
|
},
|
|
1115
1115
|
param: 'isEnabled',
|
|
1116
1116
|
defaultValue: false
|
|
1117
|
+
}),
|
|
1118
|
+
// Added 2025-11-07
|
|
1119
|
+
cc_editor_limited_mode_table_align_bttn: createBooleanExperiment({
|
|
1120
|
+
productKeys: {
|
|
1121
|
+
confluence: 'cc_editor_limited_mode_table_align_bttn'
|
|
1122
|
+
},
|
|
1123
|
+
param: 'isEnabled',
|
|
1124
|
+
defaultValue: false
|
|
1117
1125
|
})
|
|
1118
1126
|
};
|
|
@@ -1114,5 +1114,13 @@ export var editorExperimentsConfig = {
|
|
|
1114
1114
|
},
|
|
1115
1115
|
param: 'isEnabled',
|
|
1116
1116
|
defaultValue: false
|
|
1117
|
+
}),
|
|
1118
|
+
// Added 2025-11-07
|
|
1119
|
+
cc_editor_limited_mode_table_align_bttn: createBooleanExperiment({
|
|
1120
|
+
productKeys: {
|
|
1121
|
+
confluence: 'cc_editor_limited_mode_table_align_bttn'
|
|
1122
|
+
},
|
|
1123
|
+
param: 'isEnabled',
|
|
1124
|
+
defaultValue: false
|
|
1117
1125
|
})
|
|
1118
1126
|
};
|
|
@@ -824,4 +824,10 @@ export declare const editorExperimentsConfig: {
|
|
|
824
824
|
param: string;
|
|
825
825
|
productKeys?: import("./types").ProductKeys;
|
|
826
826
|
};
|
|
827
|
+
cc_editor_limited_mode_table_align_bttn: {
|
|
828
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
829
|
+
defaultValue: boolean;
|
|
830
|
+
param: string;
|
|
831
|
+
productKeys?: import("./types").ProductKeys;
|
|
832
|
+
};
|
|
827
833
|
};
|
|
@@ -824,4 +824,10 @@ export declare const editorExperimentsConfig: {
|
|
|
824
824
|
param: string;
|
|
825
825
|
productKeys?: import("./types").ProductKeys;
|
|
826
826
|
};
|
|
827
|
+
cc_editor_limited_mode_table_align_bttn: {
|
|
828
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
829
|
+
defaultValue: boolean;
|
|
830
|
+
param: string;
|
|
831
|
+
productKeys?: import("./types").ProductKeys;
|
|
832
|
+
};
|
|
827
833
|
};
|
package/package.json
CHANGED