@atlaskit/tmp-editor-statsig 140.0.0 → 141.1.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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 141.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`95510ea98e287`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/95510ea98e287) -
|
|
8
|
+
Added `bbc-auto-generate-pr-description` experiment to config
|
|
9
|
+
|
|
10
|
+
## 141.0.0
|
|
11
|
+
|
|
12
|
+
### Major Changes
|
|
13
|
+
|
|
14
|
+
- [`1f436e4732b98`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1f436e4732b98) -
|
|
15
|
+
Clean up the shipped smart link drag-and-drop feature gate and make the drag-and-drop path
|
|
16
|
+
permanent.
|
|
17
|
+
|
|
3
18
|
## 140.0.0
|
|
4
19
|
|
|
5
20
|
### Major Changes
|
|
@@ -1706,14 +1706,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1706
1706
|
param: 'isEnabled',
|
|
1707
1707
|
defaultValue: false
|
|
1708
1708
|
}),
|
|
1709
|
-
// Added 2026-03-05
|
|
1710
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1711
|
-
productKeys: {
|
|
1712
|
-
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1713
|
-
},
|
|
1714
|
-
param: 'isEnabled',
|
|
1715
|
-
defaultValue: false
|
|
1716
|
-
}),
|
|
1717
1709
|
platform_editor_small_font_size: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1718
1710
|
productKeys: {
|
|
1719
1711
|
confluence: 'platform_editor_small_font_size',
|
|
@@ -1700,14 +1700,6 @@ export const editorExperimentsConfig = {
|
|
|
1700
1700
|
param: 'isEnabled',
|
|
1701
1701
|
defaultValue: false
|
|
1702
1702
|
}),
|
|
1703
|
-
// Added 2026-03-05
|
|
1704
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1705
|
-
productKeys: {
|
|
1706
|
-
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1707
|
-
},
|
|
1708
|
-
param: 'isEnabled',
|
|
1709
|
-
defaultValue: false
|
|
1710
|
-
}),
|
|
1711
1703
|
platform_editor_small_font_size: createBooleanExperiment({
|
|
1712
1704
|
productKeys: {
|
|
1713
1705
|
confluence: 'platform_editor_small_font_size',
|
|
@@ -1700,14 +1700,6 @@ export var editorExperimentsConfig = {
|
|
|
1700
1700
|
param: 'isEnabled',
|
|
1701
1701
|
defaultValue: false
|
|
1702
1702
|
}),
|
|
1703
|
-
// Added 2026-03-05
|
|
1704
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1705
|
-
productKeys: {
|
|
1706
|
-
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1707
|
-
},
|
|
1708
|
-
param: 'isEnabled',
|
|
1709
|
-
defaultValue: false
|
|
1710
|
-
}),
|
|
1711
1703
|
platform_editor_small_font_size: createBooleanExperiment({
|
|
1712
1704
|
productKeys: {
|
|
1713
1705
|
confluence: 'platform_editor_small_font_size',
|
|
@@ -1317,12 +1317,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1317
1317
|
productKeys?: ProductKeys;
|
|
1318
1318
|
typeGuard: IsBooleanType;
|
|
1319
1319
|
};
|
|
1320
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1321
|
-
defaultValue: boolean;
|
|
1322
|
-
param: string;
|
|
1323
|
-
productKeys?: ProductKeys;
|
|
1324
|
-
typeGuard: IsBooleanType;
|
|
1325
|
-
};
|
|
1326
1320
|
platform_editor_small_font_size: {
|
|
1327
1321
|
defaultValue: boolean;
|
|
1328
1322
|
param: string;
|
package/package.json
CHANGED