@atlaskit/tmp-editor-statsig 15.2.0 → 15.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
|
+
## 15.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1ba00564a98cd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1ba00564a98cd) -
|
|
8
|
+
Moves the scroll gutter fix behind platform_editor_scroll_gutter_fix out of the hydratable ui
|
|
9
|
+
experiment
|
|
10
|
+
|
|
3
11
|
## 15.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1174,6 +1174,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1174
1174
|
param: 'isEnabled',
|
|
1175
1175
|
defaultValue: false
|
|
1176
1176
|
}),
|
|
1177
|
+
// Added 2025-12-04
|
|
1178
|
+
platform_editor_scroll_gutter_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1179
|
+
productKeys: {
|
|
1180
|
+
confluence: 'platform_editor_scroll_gutter_fix'
|
|
1181
|
+
},
|
|
1182
|
+
param: 'isEnabled',
|
|
1183
|
+
defaultValue: false
|
|
1184
|
+
}),
|
|
1177
1185
|
// Added 2025-12-08
|
|
1178
1186
|
platform_editor_add_image_editing: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1179
1187
|
productKeys: {
|
|
@@ -1168,6 +1168,14 @@ export const editorExperimentsConfig = {
|
|
|
1168
1168
|
param: 'isEnabled',
|
|
1169
1169
|
defaultValue: false
|
|
1170
1170
|
}),
|
|
1171
|
+
// Added 2025-12-04
|
|
1172
|
+
platform_editor_scroll_gutter_fix: createBooleanExperiment({
|
|
1173
|
+
productKeys: {
|
|
1174
|
+
confluence: 'platform_editor_scroll_gutter_fix'
|
|
1175
|
+
},
|
|
1176
|
+
param: 'isEnabled',
|
|
1177
|
+
defaultValue: false
|
|
1178
|
+
}),
|
|
1171
1179
|
// Added 2025-12-08
|
|
1172
1180
|
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1173
1181
|
productKeys: {
|
|
@@ -1168,6 +1168,14 @@ export var editorExperimentsConfig = {
|
|
|
1168
1168
|
param: 'isEnabled',
|
|
1169
1169
|
defaultValue: false
|
|
1170
1170
|
}),
|
|
1171
|
+
// Added 2025-12-04
|
|
1172
|
+
platform_editor_scroll_gutter_fix: createBooleanExperiment({
|
|
1173
|
+
productKeys: {
|
|
1174
|
+
confluence: 'platform_editor_scroll_gutter_fix'
|
|
1175
|
+
},
|
|
1176
|
+
param: 'isEnabled',
|
|
1177
|
+
defaultValue: false
|
|
1178
|
+
}),
|
|
1171
1179
|
// Added 2025-12-08
|
|
1172
1180
|
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1173
1181
|
productKeys: {
|
|
@@ -870,5 +870,11 @@ export declare const editorExperimentsConfig: {
|
|
|
870
870
|
productKeys?: ProductKeys;
|
|
871
871
|
typeGuard: IsBooleanType;
|
|
872
872
|
};
|
|
873
|
+
platform_editor_scroll_gutter_fix: {
|
|
874
|
+
defaultValue: boolean;
|
|
875
|
+
param: string;
|
|
876
|
+
productKeys?: ProductKeys;
|
|
877
|
+
typeGuard: IsBooleanType;
|
|
878
|
+
};
|
|
873
879
|
};
|
|
874
880
|
export {};
|
|
@@ -870,5 +870,11 @@ export declare const editorExperimentsConfig: {
|
|
|
870
870
|
productKeys?: ProductKeys;
|
|
871
871
|
typeGuard: IsBooleanType;
|
|
872
872
|
};
|
|
873
|
+
platform_editor_scroll_gutter_fix: {
|
|
874
|
+
defaultValue: boolean;
|
|
875
|
+
param: string;
|
|
876
|
+
productKeys?: ProductKeys;
|
|
877
|
+
typeGuard: IsBooleanType;
|
|
878
|
+
};
|
|
873
879
|
};
|
|
874
880
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.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",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"I updated the table on https://hello.atlassian.net/wiki/spaces/EDITOR/pages/5257593537/Libra+testing+FG+override+expectations, tested my changes, and confirm that adding/removing the override is safe"
|
|
19
19
|
]
|
|
20
20
|
},
|
|
21
|
-
"repository": "https://
|
|
21
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
|
|
22
22
|
"main": "dist/cjs/index.js",
|
|
23
23
|
"module": "dist/esm/index.js",
|
|
24
24
|
"module:es2019": "dist/es2019/index.js",
|