@atlaskit/tmp-editor-statsig 126.2.0 → 126.3.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
|
+
## 126.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`acacc85e527ff`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acacc85e527ff) -
|
|
8
|
+
[ux] Fixed an issue where the left resize handle of an Editor embed would appear to 'lag' when the
|
|
9
|
+
embed is right-aligned. Gated behind platform_editor_fix_lagging_embed_resize_handle.
|
|
10
|
+
|
|
3
11
|
## 126.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1225,6 +1225,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1225
1225
|
param: 'isEnabled',
|
|
1226
1226
|
defaultValue: false
|
|
1227
1227
|
}),
|
|
1228
|
+
// Added 2026-07-16
|
|
1229
|
+
platform_editor_fix_lagging_embed_resize_handle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1230
|
+
productKeys: {
|
|
1231
|
+
confluence: 'platform_editor_fix_lagging_embed_resize_handle'
|
|
1232
|
+
},
|
|
1233
|
+
param: 'isEnabled',
|
|
1234
|
+
defaultValue: false
|
|
1235
|
+
}),
|
|
1228
1236
|
// Added 2026-03-16
|
|
1229
1237
|
platform_editor_ignore_metadata_connection_errors: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1230
1238
|
productKeys: {
|
|
@@ -1219,6 +1219,14 @@ export const editorExperimentsConfig = {
|
|
|
1219
1219
|
param: 'isEnabled',
|
|
1220
1220
|
defaultValue: false
|
|
1221
1221
|
}),
|
|
1222
|
+
// Added 2026-07-16
|
|
1223
|
+
platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
|
|
1224
|
+
productKeys: {
|
|
1225
|
+
confluence: 'platform_editor_fix_lagging_embed_resize_handle'
|
|
1226
|
+
},
|
|
1227
|
+
param: 'isEnabled',
|
|
1228
|
+
defaultValue: false
|
|
1229
|
+
}),
|
|
1222
1230
|
// Added 2026-03-16
|
|
1223
1231
|
platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
|
|
1224
1232
|
productKeys: {
|
|
@@ -1219,6 +1219,14 @@ export var editorExperimentsConfig = {
|
|
|
1219
1219
|
param: 'isEnabled',
|
|
1220
1220
|
defaultValue: false
|
|
1221
1221
|
}),
|
|
1222
|
+
// Added 2026-07-16
|
|
1223
|
+
platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
|
|
1224
|
+
productKeys: {
|
|
1225
|
+
confluence: 'platform_editor_fix_lagging_embed_resize_handle'
|
|
1226
|
+
},
|
|
1227
|
+
param: 'isEnabled',
|
|
1228
|
+
defaultValue: false
|
|
1229
|
+
}),
|
|
1222
1230
|
// Added 2026-03-16
|
|
1223
1231
|
platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
|
|
1224
1232
|
productKeys: {
|
|
@@ -1131,6 +1131,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1131
1131
|
productKeys?: ProductKeys;
|
|
1132
1132
|
typeGuard: IsBooleanType;
|
|
1133
1133
|
};
|
|
1134
|
+
platform_editor_fix_lagging_embed_resize_handle: {
|
|
1135
|
+
defaultValue: boolean;
|
|
1136
|
+
param: string;
|
|
1137
|
+
productKeys?: ProductKeys;
|
|
1138
|
+
typeGuard: IsBooleanType;
|
|
1139
|
+
};
|
|
1134
1140
|
'cwr-staging-area-close-as-minimize-button': {
|
|
1135
1141
|
defaultValue: boolean;
|
|
1136
1142
|
param: string;
|
package/package.json
CHANGED