@atlaskit/tmp-editor-statsig 36.2.0 → 36.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 36.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3e12453af02dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e12453af02dd) -
|
|
8
|
+
EDITOR-5922: Fix space shortcut activating opt in flow
|
|
9
|
+
|
|
3
10
|
## 36.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1634,6 +1634,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1634
1634
|
param: 'isEnabled',
|
|
1635
1635
|
defaultValue: false
|
|
1636
1636
|
}),
|
|
1637
|
+
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1638
|
+
platform_editor_ai_aifc_space_shortcut_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1639
|
+
productKeys: {
|
|
1640
|
+
confluence: 'platform_editor_ai_aifc_space_shortcut_patch'
|
|
1641
|
+
},
|
|
1642
|
+
param: 'isEnabled',
|
|
1643
|
+
defaultValue: false
|
|
1644
|
+
}),
|
|
1637
1645
|
// Added 2026-03-05
|
|
1638
1646
|
platform_editor_eslint_suppression_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1639
1647
|
productKeys: {
|
|
@@ -1628,6 +1628,14 @@ export const editorExperimentsConfig = {
|
|
|
1628
1628
|
param: 'isEnabled',
|
|
1629
1629
|
defaultValue: false
|
|
1630
1630
|
}),
|
|
1631
|
+
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1632
|
+
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1633
|
+
productKeys: {
|
|
1634
|
+
confluence: 'platform_editor_ai_aifc_space_shortcut_patch'
|
|
1635
|
+
},
|
|
1636
|
+
param: 'isEnabled',
|
|
1637
|
+
defaultValue: false
|
|
1638
|
+
}),
|
|
1631
1639
|
// Added 2026-03-05
|
|
1632
1640
|
platform_editor_eslint_suppression_fix: createBooleanExperiment({
|
|
1633
1641
|
productKeys: {
|
|
@@ -1628,6 +1628,14 @@ export var editorExperimentsConfig = {
|
|
|
1628
1628
|
param: 'isEnabled',
|
|
1629
1629
|
defaultValue: false
|
|
1630
1630
|
}),
|
|
1631
|
+
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1632
|
+
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1633
|
+
productKeys: {
|
|
1634
|
+
confluence: 'platform_editor_ai_aifc_space_shortcut_patch'
|
|
1635
|
+
},
|
|
1636
|
+
param: 'isEnabled',
|
|
1637
|
+
defaultValue: false
|
|
1638
|
+
}),
|
|
1631
1639
|
// Added 2026-03-05
|
|
1632
1640
|
platform_editor_eslint_suppression_fix: createBooleanExperiment({
|
|
1633
1641
|
productKeys: {
|
|
@@ -1188,6 +1188,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1188
1188
|
productKeys?: ProductKeys;
|
|
1189
1189
|
typeGuard: IsBooleanType;
|
|
1190
1190
|
};
|
|
1191
|
+
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1192
|
+
defaultValue: boolean;
|
|
1193
|
+
param: string;
|
|
1194
|
+
productKeys?: ProductKeys;
|
|
1195
|
+
typeGuard: IsBooleanType;
|
|
1196
|
+
};
|
|
1191
1197
|
platform_editor_media_reliability_observability: {
|
|
1192
1198
|
defaultValue: boolean;
|
|
1193
1199
|
param: string;
|
|
@@ -1188,6 +1188,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1188
1188
|
productKeys?: ProductKeys;
|
|
1189
1189
|
typeGuard: IsBooleanType;
|
|
1190
1190
|
};
|
|
1191
|
+
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1192
|
+
defaultValue: boolean;
|
|
1193
|
+
param: string;
|
|
1194
|
+
productKeys?: ProductKeys;
|
|
1195
|
+
typeGuard: IsBooleanType;
|
|
1196
|
+
};
|
|
1191
1197
|
platform_editor_media_reliability_observability: {
|
|
1192
1198
|
defaultValue: boolean;
|
|
1193
1199
|
param: string;
|
package/package.json
CHANGED