@atlaskit/tmp-editor-statsig 84.3.1 → 84.3.2
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 +11 -0
- package/dist/cjs/experiments-config.js +14 -0
- package/dist/es2019/experiments-config.js +14 -0
- package/dist/esm/experiments-config.js +14 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 84.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`cf6977530a136`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cf6977530a136) -
|
|
8
|
+
Support fullwidth slash / (U+FF0F) as a quick insert trigger for Japanese/CJK keyboard users.
|
|
9
|
+
Japanese keyboards produce the fullwidth slash when pressing the / key, which previously did not
|
|
10
|
+
open the quick insert menu. The fix adds a `customRegex` to the quick-insert typeahead handler
|
|
11
|
+
that matches both ASCII slash `/` and fullwidth slash `/`, and extends the trigger cleanup logic
|
|
12
|
+
in `openTypeAheadAtCursor` to handle `customRegex` alternatives.
|
|
13
|
+
|
|
3
14
|
## 84.3.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -2259,6 +2259,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2259
2259
|
param: 'isEnabled',
|
|
2260
2260
|
defaultValue: false
|
|
2261
2261
|
}),
|
|
2262
|
+
platform_rovo_support_create_inline_comment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2263
|
+
productKeys: {
|
|
2264
|
+
confluence: 'platform_rovo_support_create_inline_comment'
|
|
2265
|
+
},
|
|
2266
|
+
param: 'isEnabled',
|
|
2267
|
+
defaultValue: false
|
|
2268
|
+
}),
|
|
2262
2269
|
// Added 2026-05-15
|
|
2263
2270
|
platform_editor_fix_sticky_header_malfunction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2264
2271
|
productKeys: {
|
|
@@ -2295,5 +2302,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2295
2302
|
},
|
|
2296
2303
|
param: 'isEnabled',
|
|
2297
2304
|
defaultValue: false
|
|
2305
|
+
}),
|
|
2306
|
+
platform_editor_wide_slash_trigger: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2307
|
+
productKeys: {
|
|
2308
|
+
confluence: 'platform_editor_wide_slash_trigger'
|
|
2309
|
+
},
|
|
2310
|
+
param: 'isEnabled',
|
|
2311
|
+
defaultValue: false
|
|
2298
2312
|
})
|
|
2299
2313
|
};
|
|
@@ -2253,6 +2253,13 @@ export const editorExperimentsConfig = {
|
|
|
2253
2253
|
param: 'isEnabled',
|
|
2254
2254
|
defaultValue: false
|
|
2255
2255
|
}),
|
|
2256
|
+
platform_rovo_support_create_inline_comment: createBooleanExperiment({
|
|
2257
|
+
productKeys: {
|
|
2258
|
+
confluence: 'platform_rovo_support_create_inline_comment'
|
|
2259
|
+
},
|
|
2260
|
+
param: 'isEnabled',
|
|
2261
|
+
defaultValue: false
|
|
2262
|
+
}),
|
|
2256
2263
|
// Added 2026-05-15
|
|
2257
2264
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2258
2265
|
productKeys: {
|
|
@@ -2289,5 +2296,12 @@ export const editorExperimentsConfig = {
|
|
|
2289
2296
|
},
|
|
2290
2297
|
param: 'isEnabled',
|
|
2291
2298
|
defaultValue: false
|
|
2299
|
+
}),
|
|
2300
|
+
platform_editor_wide_slash_trigger: createBooleanExperiment({
|
|
2301
|
+
productKeys: {
|
|
2302
|
+
confluence: 'platform_editor_wide_slash_trigger'
|
|
2303
|
+
},
|
|
2304
|
+
param: 'isEnabled',
|
|
2305
|
+
defaultValue: false
|
|
2292
2306
|
})
|
|
2293
2307
|
};
|
|
@@ -2253,6 +2253,13 @@ export var editorExperimentsConfig = {
|
|
|
2253
2253
|
param: 'isEnabled',
|
|
2254
2254
|
defaultValue: false
|
|
2255
2255
|
}),
|
|
2256
|
+
platform_rovo_support_create_inline_comment: createBooleanExperiment({
|
|
2257
|
+
productKeys: {
|
|
2258
|
+
confluence: 'platform_rovo_support_create_inline_comment'
|
|
2259
|
+
},
|
|
2260
|
+
param: 'isEnabled',
|
|
2261
|
+
defaultValue: false
|
|
2262
|
+
}),
|
|
2256
2263
|
// Added 2026-05-15
|
|
2257
2264
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2258
2265
|
productKeys: {
|
|
@@ -2289,5 +2296,12 @@ export var editorExperimentsConfig = {
|
|
|
2289
2296
|
},
|
|
2290
2297
|
param: 'isEnabled',
|
|
2291
2298
|
defaultValue: false
|
|
2299
|
+
}),
|
|
2300
|
+
platform_editor_wide_slash_trigger: createBooleanExperiment({
|
|
2301
|
+
productKeys: {
|
|
2302
|
+
confluence: 'platform_editor_wide_slash_trigger'
|
|
2303
|
+
},
|
|
2304
|
+
param: 'isEnabled',
|
|
2305
|
+
defaultValue: false
|
|
2292
2306
|
})
|
|
2293
2307
|
};
|
|
@@ -1664,6 +1664,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1664
1664
|
productKeys?: ProductKeys;
|
|
1665
1665
|
typeGuard: IsBooleanType;
|
|
1666
1666
|
};
|
|
1667
|
+
platform_rovo_support_create_inline_comment: {
|
|
1668
|
+
defaultValue: boolean;
|
|
1669
|
+
param: string;
|
|
1670
|
+
productKeys?: ProductKeys;
|
|
1671
|
+
typeGuard: IsBooleanType;
|
|
1672
|
+
};
|
|
1667
1673
|
platform_editor_ai_improve_formatting_toolbar: {
|
|
1668
1674
|
defaultValue: boolean;
|
|
1669
1675
|
param: string;
|
|
@@ -1682,5 +1688,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1682
1688
|
productKeys?: ProductKeys;
|
|
1683
1689
|
typeGuard: IsBooleanType;
|
|
1684
1690
|
};
|
|
1691
|
+
platform_editor_wide_slash_trigger: {
|
|
1692
|
+
defaultValue: boolean;
|
|
1693
|
+
param: string;
|
|
1694
|
+
productKeys?: ProductKeys;
|
|
1695
|
+
typeGuard: IsBooleanType;
|
|
1696
|
+
};
|
|
1685
1697
|
};
|
|
1686
1698
|
export {};
|
|
@@ -1664,6 +1664,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1664
1664
|
productKeys?: ProductKeys;
|
|
1665
1665
|
typeGuard: IsBooleanType;
|
|
1666
1666
|
};
|
|
1667
|
+
platform_rovo_support_create_inline_comment: {
|
|
1668
|
+
defaultValue: boolean;
|
|
1669
|
+
param: string;
|
|
1670
|
+
productKeys?: ProductKeys;
|
|
1671
|
+
typeGuard: IsBooleanType;
|
|
1672
|
+
};
|
|
1667
1673
|
platform_editor_ai_improve_formatting_toolbar: {
|
|
1668
1674
|
defaultValue: boolean;
|
|
1669
1675
|
param: string;
|
|
@@ -1682,5 +1688,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1682
1688
|
productKeys?: ProductKeys;
|
|
1683
1689
|
typeGuard: IsBooleanType;
|
|
1684
1690
|
};
|
|
1691
|
+
platform_editor_wide_slash_trigger: {
|
|
1692
|
+
defaultValue: boolean;
|
|
1693
|
+
param: string;
|
|
1694
|
+
productKeys?: ProductKeys;
|
|
1695
|
+
typeGuard: IsBooleanType;
|
|
1696
|
+
};
|
|
1685
1697
|
};
|
|
1686
1698
|
export {};
|
package/package.json
CHANGED