@atlaskit/tmp-editor-statsig 34.3.0 → 34.4.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
|
+
## 34.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1d6c102310afb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1d6c102310afb) -
|
|
8
|
+
[ux] Use editor-smart-link-draggable package ti implement React-based drag preview, and design
|
|
9
|
+
system compliance. Updated editor-plugin-card to reference the new package.
|
|
10
|
+
|
|
3
11
|
## 34.3.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1632,5 +1632,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1632
1632
|
},
|
|
1633
1633
|
param: 'isEnabled',
|
|
1634
1634
|
defaultValue: false
|
|
1635
|
+
}),
|
|
1636
|
+
// Added 2026-03-05
|
|
1637
|
+
cc_drag_and_drop_smart_link_from_content_to_tree: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1638
|
+
productKeys: {
|
|
1639
|
+
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1640
|
+
},
|
|
1641
|
+
param: 'isEnabled',
|
|
1642
|
+
defaultValue: false
|
|
1635
1643
|
})
|
|
1636
1644
|
};
|
|
@@ -1626,5 +1626,13 @@ export const editorExperimentsConfig = {
|
|
|
1626
1626
|
},
|
|
1627
1627
|
param: 'isEnabled',
|
|
1628
1628
|
defaultValue: false
|
|
1629
|
+
}),
|
|
1630
|
+
// Added 2026-03-05
|
|
1631
|
+
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1632
|
+
productKeys: {
|
|
1633
|
+
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1634
|
+
},
|
|
1635
|
+
param: 'isEnabled',
|
|
1636
|
+
defaultValue: false
|
|
1629
1637
|
})
|
|
1630
1638
|
};
|
|
@@ -1626,5 +1626,13 @@ export var editorExperimentsConfig = {
|
|
|
1626
1626
|
},
|
|
1627
1627
|
param: 'isEnabled',
|
|
1628
1628
|
defaultValue: false
|
|
1629
|
+
}),
|
|
1630
|
+
// Added 2026-03-05
|
|
1631
|
+
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1632
|
+
productKeys: {
|
|
1633
|
+
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1634
|
+
},
|
|
1635
|
+
param: 'isEnabled',
|
|
1636
|
+
defaultValue: false
|
|
1629
1637
|
})
|
|
1630
1638
|
};
|
|
@@ -1200,5 +1200,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1200
1200
|
productKeys?: ProductKeys;
|
|
1201
1201
|
typeGuard: IsBooleanType;
|
|
1202
1202
|
};
|
|
1203
|
+
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1204
|
+
defaultValue: boolean;
|
|
1205
|
+
param: string;
|
|
1206
|
+
productKeys?: ProductKeys;
|
|
1207
|
+
typeGuard: IsBooleanType;
|
|
1208
|
+
};
|
|
1203
1209
|
};
|
|
1204
1210
|
export {};
|
|
@@ -1200,5 +1200,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1200
1200
|
productKeys?: ProductKeys;
|
|
1201
1201
|
typeGuard: IsBooleanType;
|
|
1202
1202
|
};
|
|
1203
|
+
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1204
|
+
defaultValue: boolean;
|
|
1205
|
+
param: string;
|
|
1206
|
+
productKeys?: ProductKeys;
|
|
1207
|
+
typeGuard: IsBooleanType;
|
|
1208
|
+
};
|
|
1203
1209
|
};
|
|
1204
1210
|
export {};
|
package/package.json
CHANGED