@atlaskit/tmp-editor-statsig 15.1.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 +15 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
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
|
+
|
|
11
|
+
## 15.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`6ecbe7ee10388`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6ecbe7ee10388) -
|
|
16
|
+
Started an experiment on image editing, added a button in the floating toolbar
|
|
17
|
+
|
|
3
18
|
## 15.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -1173,5 +1173,21 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1173
1173
|
},
|
|
1174
1174
|
param: 'isEnabled',
|
|
1175
1175
|
defaultValue: false
|
|
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
|
+
}),
|
|
1185
|
+
// Added 2025-12-08
|
|
1186
|
+
platform_editor_add_image_editing: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1187
|
+
productKeys: {
|
|
1188
|
+
confluence: 'platform_editor_add_image_editing'
|
|
1189
|
+
},
|
|
1190
|
+
param: 'isEnabled',
|
|
1191
|
+
defaultValue: false
|
|
1176
1192
|
})
|
|
1177
1193
|
};
|
|
@@ -1167,5 +1167,21 @@ export const editorExperimentsConfig = {
|
|
|
1167
1167
|
},
|
|
1168
1168
|
param: 'isEnabled',
|
|
1169
1169
|
defaultValue: false
|
|
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
|
+
}),
|
|
1179
|
+
// Added 2025-12-08
|
|
1180
|
+
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1181
|
+
productKeys: {
|
|
1182
|
+
confluence: 'platform_editor_add_image_editing'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1170
1186
|
})
|
|
1171
1187
|
};
|
|
@@ -1167,5 +1167,21 @@ export var editorExperimentsConfig = {
|
|
|
1167
1167
|
},
|
|
1168
1168
|
param: 'isEnabled',
|
|
1169
1169
|
defaultValue: false
|
|
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
|
+
}),
|
|
1179
|
+
// Added 2025-12-08
|
|
1180
|
+
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1181
|
+
productKeys: {
|
|
1182
|
+
confluence: 'platform_editor_add_image_editing'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1170
1186
|
})
|
|
1171
1187
|
};
|
|
@@ -775,6 +775,12 @@ export declare const editorExperimentsConfig: {
|
|
|
775
775
|
productKeys?: ProductKeys;
|
|
776
776
|
typeGuard: IsBooleanType;
|
|
777
777
|
};
|
|
778
|
+
platform_editor_add_image_editing: {
|
|
779
|
+
defaultValue: boolean;
|
|
780
|
+
param: string;
|
|
781
|
+
productKeys?: ProductKeys;
|
|
782
|
+
typeGuard: IsBooleanType;
|
|
783
|
+
};
|
|
778
784
|
platform_hover_card_preview_panel: {
|
|
779
785
|
defaultValue: 'control' | 'test';
|
|
780
786
|
param: string;
|
|
@@ -864,5 +870,11 @@ export declare const editorExperimentsConfig: {
|
|
|
864
870
|
productKeys?: ProductKeys;
|
|
865
871
|
typeGuard: IsBooleanType;
|
|
866
872
|
};
|
|
873
|
+
platform_editor_scroll_gutter_fix: {
|
|
874
|
+
defaultValue: boolean;
|
|
875
|
+
param: string;
|
|
876
|
+
productKeys?: ProductKeys;
|
|
877
|
+
typeGuard: IsBooleanType;
|
|
878
|
+
};
|
|
867
879
|
};
|
|
868
880
|
export {};
|
|
@@ -775,6 +775,12 @@ export declare const editorExperimentsConfig: {
|
|
|
775
775
|
productKeys?: ProductKeys;
|
|
776
776
|
typeGuard: IsBooleanType;
|
|
777
777
|
};
|
|
778
|
+
platform_editor_add_image_editing: {
|
|
779
|
+
defaultValue: boolean;
|
|
780
|
+
param: string;
|
|
781
|
+
productKeys?: ProductKeys;
|
|
782
|
+
typeGuard: IsBooleanType;
|
|
783
|
+
};
|
|
778
784
|
platform_hover_card_preview_panel: {
|
|
779
785
|
defaultValue: 'control' | 'test';
|
|
780
786
|
param: string;
|
|
@@ -864,5 +870,11 @@ export declare const editorExperimentsConfig: {
|
|
|
864
870
|
productKeys?: ProductKeys;
|
|
865
871
|
typeGuard: IsBooleanType;
|
|
866
872
|
};
|
|
873
|
+
platform_editor_scroll_gutter_fix: {
|
|
874
|
+
defaultValue: boolean;
|
|
875
|
+
param: string;
|
|
876
|
+
productKeys?: ProductKeys;
|
|
877
|
+
typeGuard: IsBooleanType;
|
|
878
|
+
};
|
|
867
879
|
};
|
|
868
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",
|