@atlaskit/tmp-editor-statsig 84.3.1 → 84.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 +19 -0
- package/dist/cjs/experiments-config.js +14 -8
- package/dist/es2019/experiments-config.js +14 -8
- package/dist/esm/experiments-config.js +14 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 84.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0ded3f82666cb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0ded3f82666cb) -
|
|
8
|
+
Remove platform_editor_ai_disable_bridge_without_ai experiment gate. The bridge now always
|
|
9
|
+
requires aiExperience and aiStreamingOrchestrator to be present before initializing.
|
|
10
|
+
|
|
11
|
+
## 84.3.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`cf6977530a136`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cf6977530a136) -
|
|
16
|
+
Support fullwidth slash / (U+FF0F) as a quick insert trigger for Japanese/CJK keyboard users.
|
|
17
|
+
Japanese keyboards produce the fullwidth slash when pressing the / key, which previously did not
|
|
18
|
+
open the quick insert menu. The fix adds a `customRegex` to the quick-insert typeahead handler
|
|
19
|
+
that matches both ASCII slash `/` and fullwidth slash `/`, and extends the trigger cleanup logic
|
|
20
|
+
in `openTypeAheadAtCursor` to handle `customRegex` alternatives.
|
|
21
|
+
|
|
3
22
|
## 84.3.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1167,14 +1167,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1167
1167
|
param: 'isEnabled',
|
|
1168
1168
|
defaultValue: false
|
|
1169
1169
|
}),
|
|
1170
|
-
// Added 2026-02-02
|
|
1171
|
-
platform_editor_ai_disable_bridge_without_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1172
|
-
productKeys: {
|
|
1173
|
-
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1174
|
-
},
|
|
1175
|
-
param: 'isEnabled',
|
|
1176
|
-
defaultValue: false
|
|
1177
|
-
}),
|
|
1178
1170
|
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1179
1171
|
platform_editor_aifc_expand_collapses_oncreate_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1180
1172
|
productKeys: {
|
|
@@ -2259,6 +2251,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2259
2251
|
param: 'isEnabled',
|
|
2260
2252
|
defaultValue: false
|
|
2261
2253
|
}),
|
|
2254
|
+
platform_rovo_support_create_inline_comment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2255
|
+
productKeys: {
|
|
2256
|
+
confluence: 'platform_rovo_support_create_inline_comment'
|
|
2257
|
+
},
|
|
2258
|
+
param: 'isEnabled',
|
|
2259
|
+
defaultValue: false
|
|
2260
|
+
}),
|
|
2262
2261
|
// Added 2026-05-15
|
|
2263
2262
|
platform_editor_fix_sticky_header_malfunction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2264
2263
|
productKeys: {
|
|
@@ -2295,5 +2294,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2295
2294
|
},
|
|
2296
2295
|
param: 'isEnabled',
|
|
2297
2296
|
defaultValue: false
|
|
2297
|
+
}),
|
|
2298
|
+
platform_editor_wide_slash_trigger: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2299
|
+
productKeys: {
|
|
2300
|
+
confluence: 'platform_editor_wide_slash_trigger'
|
|
2301
|
+
},
|
|
2302
|
+
param: 'isEnabled',
|
|
2303
|
+
defaultValue: false
|
|
2298
2304
|
})
|
|
2299
2305
|
};
|
|
@@ -1161,14 +1161,6 @@ export const editorExperimentsConfig = {
|
|
|
1161
1161
|
param: 'isEnabled',
|
|
1162
1162
|
defaultValue: false
|
|
1163
1163
|
}),
|
|
1164
|
-
// Added 2026-02-02
|
|
1165
|
-
platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
|
|
1166
|
-
productKeys: {
|
|
1167
|
-
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1168
|
-
},
|
|
1169
|
-
param: 'isEnabled',
|
|
1170
|
-
defaultValue: false
|
|
1171
|
-
}),
|
|
1172
1164
|
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1173
1165
|
platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
|
|
1174
1166
|
productKeys: {
|
|
@@ -2253,6 +2245,13 @@ export const editorExperimentsConfig = {
|
|
|
2253
2245
|
param: 'isEnabled',
|
|
2254
2246
|
defaultValue: false
|
|
2255
2247
|
}),
|
|
2248
|
+
platform_rovo_support_create_inline_comment: createBooleanExperiment({
|
|
2249
|
+
productKeys: {
|
|
2250
|
+
confluence: 'platform_rovo_support_create_inline_comment'
|
|
2251
|
+
},
|
|
2252
|
+
param: 'isEnabled',
|
|
2253
|
+
defaultValue: false
|
|
2254
|
+
}),
|
|
2256
2255
|
// Added 2026-05-15
|
|
2257
2256
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2258
2257
|
productKeys: {
|
|
@@ -2289,5 +2288,12 @@ export const editorExperimentsConfig = {
|
|
|
2289
2288
|
},
|
|
2290
2289
|
param: 'isEnabled',
|
|
2291
2290
|
defaultValue: false
|
|
2291
|
+
}),
|
|
2292
|
+
platform_editor_wide_slash_trigger: createBooleanExperiment({
|
|
2293
|
+
productKeys: {
|
|
2294
|
+
confluence: 'platform_editor_wide_slash_trigger'
|
|
2295
|
+
},
|
|
2296
|
+
param: 'isEnabled',
|
|
2297
|
+
defaultValue: false
|
|
2292
2298
|
})
|
|
2293
2299
|
};
|
|
@@ -1161,14 +1161,6 @@ export var editorExperimentsConfig = {
|
|
|
1161
1161
|
param: 'isEnabled',
|
|
1162
1162
|
defaultValue: false
|
|
1163
1163
|
}),
|
|
1164
|
-
// Added 2026-02-02
|
|
1165
|
-
platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
|
|
1166
|
-
productKeys: {
|
|
1167
|
-
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1168
|
-
},
|
|
1169
|
-
param: 'isEnabled',
|
|
1170
|
-
defaultValue: false
|
|
1171
|
-
}),
|
|
1172
1164
|
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1173
1165
|
platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
|
|
1174
1166
|
productKeys: {
|
|
@@ -2253,6 +2245,13 @@ export var editorExperimentsConfig = {
|
|
|
2253
2245
|
param: 'isEnabled',
|
|
2254
2246
|
defaultValue: false
|
|
2255
2247
|
}),
|
|
2248
|
+
platform_rovo_support_create_inline_comment: createBooleanExperiment({
|
|
2249
|
+
productKeys: {
|
|
2250
|
+
confluence: 'platform_rovo_support_create_inline_comment'
|
|
2251
|
+
},
|
|
2252
|
+
param: 'isEnabled',
|
|
2253
|
+
defaultValue: false
|
|
2254
|
+
}),
|
|
2256
2255
|
// Added 2026-05-15
|
|
2257
2256
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2258
2257
|
productKeys: {
|
|
@@ -2289,5 +2288,12 @@ export var editorExperimentsConfig = {
|
|
|
2289
2288
|
},
|
|
2290
2289
|
param: 'isEnabled',
|
|
2291
2290
|
defaultValue: false
|
|
2291
|
+
}),
|
|
2292
|
+
platform_editor_wide_slash_trigger: createBooleanExperiment({
|
|
2293
|
+
productKeys: {
|
|
2294
|
+
confluence: 'platform_editor_wide_slash_trigger'
|
|
2295
|
+
},
|
|
2296
|
+
param: 'isEnabled',
|
|
2297
|
+
defaultValue: false
|
|
2292
2298
|
})
|
|
2293
2299
|
};
|
|
@@ -833,12 +833,6 @@ export declare const editorExperimentsConfig: {
|
|
|
833
833
|
productKeys?: ProductKeys;
|
|
834
834
|
typeGuard: IsBooleanType;
|
|
835
835
|
};
|
|
836
|
-
platform_editor_ai_disable_bridge_without_ai: {
|
|
837
|
-
defaultValue: boolean;
|
|
838
|
-
param: string;
|
|
839
|
-
productKeys?: ProductKeys;
|
|
840
|
-
typeGuard: IsBooleanType;
|
|
841
|
-
};
|
|
842
836
|
platform_editor_aifc_sync_block_stream_fix: {
|
|
843
837
|
defaultValue: boolean;
|
|
844
838
|
param: string;
|
|
@@ -1664,6 +1658,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1664
1658
|
productKeys?: ProductKeys;
|
|
1665
1659
|
typeGuard: IsBooleanType;
|
|
1666
1660
|
};
|
|
1661
|
+
platform_rovo_support_create_inline_comment: {
|
|
1662
|
+
defaultValue: boolean;
|
|
1663
|
+
param: string;
|
|
1664
|
+
productKeys?: ProductKeys;
|
|
1665
|
+
typeGuard: IsBooleanType;
|
|
1666
|
+
};
|
|
1667
1667
|
platform_editor_ai_improve_formatting_toolbar: {
|
|
1668
1668
|
defaultValue: boolean;
|
|
1669
1669
|
param: string;
|
|
@@ -1682,5 +1682,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1682
1682
|
productKeys?: ProductKeys;
|
|
1683
1683
|
typeGuard: IsBooleanType;
|
|
1684
1684
|
};
|
|
1685
|
+
platform_editor_wide_slash_trigger: {
|
|
1686
|
+
defaultValue: boolean;
|
|
1687
|
+
param: string;
|
|
1688
|
+
productKeys?: ProductKeys;
|
|
1689
|
+
typeGuard: IsBooleanType;
|
|
1690
|
+
};
|
|
1685
1691
|
};
|
|
1686
1692
|
export {};
|
|
@@ -833,12 +833,6 @@ export declare const editorExperimentsConfig: {
|
|
|
833
833
|
productKeys?: ProductKeys;
|
|
834
834
|
typeGuard: IsBooleanType;
|
|
835
835
|
};
|
|
836
|
-
platform_editor_ai_disable_bridge_without_ai: {
|
|
837
|
-
defaultValue: boolean;
|
|
838
|
-
param: string;
|
|
839
|
-
productKeys?: ProductKeys;
|
|
840
|
-
typeGuard: IsBooleanType;
|
|
841
|
-
};
|
|
842
836
|
platform_editor_aifc_sync_block_stream_fix: {
|
|
843
837
|
defaultValue: boolean;
|
|
844
838
|
param: string;
|
|
@@ -1664,6 +1658,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1664
1658
|
productKeys?: ProductKeys;
|
|
1665
1659
|
typeGuard: IsBooleanType;
|
|
1666
1660
|
};
|
|
1661
|
+
platform_rovo_support_create_inline_comment: {
|
|
1662
|
+
defaultValue: boolean;
|
|
1663
|
+
param: string;
|
|
1664
|
+
productKeys?: ProductKeys;
|
|
1665
|
+
typeGuard: IsBooleanType;
|
|
1666
|
+
};
|
|
1667
1667
|
platform_editor_ai_improve_formatting_toolbar: {
|
|
1668
1668
|
defaultValue: boolean;
|
|
1669
1669
|
param: string;
|
|
@@ -1682,5 +1682,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1682
1682
|
productKeys?: ProductKeys;
|
|
1683
1683
|
typeGuard: IsBooleanType;
|
|
1684
1684
|
};
|
|
1685
|
+
platform_editor_wide_slash_trigger: {
|
|
1686
|
+
defaultValue: boolean;
|
|
1687
|
+
param: string;
|
|
1688
|
+
productKeys?: ProductKeys;
|
|
1689
|
+
typeGuard: IsBooleanType;
|
|
1690
|
+
};
|
|
1685
1691
|
};
|
|
1686
1692
|
export {};
|
package/package.json
CHANGED