@atlaskit/tmp-editor-statsig 150.0.0 → 151.0.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,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 151.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`1eb42bae392d7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1eb42bae392d7) -
|
|
8
|
+
Clean up experiment `platform_editor_remove_bidi_char_warning`. Bidirectional character warnings
|
|
9
|
+
are no longer rendered in code blocks: `codeBidiWarningPlugin` is no longer registered by any
|
|
10
|
+
preset, and the renderer passes `hasBidiWarnings={false}` to `@atlaskit/code` code blocks. Bidi
|
|
11
|
+
warnings on inline `code` marks are unaffected.
|
|
12
|
+
|
|
13
|
+
`codeBidiWarning` has been removed from the plugin lists and plugin options of the Confluence
|
|
14
|
+
full-page, Confluence markdown, and Company Hub presets, so consumers no longer need to pass
|
|
15
|
+
`pluginOptions.codeBidiWarning` or `enabledOptionalPlugins.codeBidiWarning`.
|
|
16
|
+
|
|
17
|
+
`@atlaskit/editor-plugin-code-bidi-warning` is retained but now has no consumers; it is scheduled
|
|
18
|
+
for removal in a follow-up.
|
|
19
|
+
|
|
3
20
|
## 150.0.0
|
|
4
21
|
|
|
5
22
|
### Major Changes
|
|
@@ -940,14 +940,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
940
940
|
param: 'isEnabled',
|
|
941
941
|
defaultValue: false
|
|
942
942
|
}),
|
|
943
|
-
// Added 2025-10-22
|
|
944
|
-
platform_editor_remove_bidi_char_warning: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
945
|
-
productKeys: {
|
|
946
|
-
confluence: 'platform_editor_remove_bidi_char_warning'
|
|
947
|
-
},
|
|
948
|
-
param: 'isEnabled',
|
|
949
|
-
defaultValue: false
|
|
950
|
-
}),
|
|
951
943
|
// Added 2025-10-27
|
|
952
944
|
platform_editor_table_sticky_header_improvements: (0, _createMultivariateExperiment.createMultivariateExperiment)({
|
|
953
945
|
productKeys: {
|
|
@@ -934,14 +934,6 @@ export const editorExperimentsConfig = {
|
|
|
934
934
|
param: 'isEnabled',
|
|
935
935
|
defaultValue: false
|
|
936
936
|
}),
|
|
937
|
-
// Added 2025-10-22
|
|
938
|
-
platform_editor_remove_bidi_char_warning: createBooleanExperiment({
|
|
939
|
-
productKeys: {
|
|
940
|
-
confluence: 'platform_editor_remove_bidi_char_warning'
|
|
941
|
-
},
|
|
942
|
-
param: 'isEnabled',
|
|
943
|
-
defaultValue: false
|
|
944
|
-
}),
|
|
945
937
|
// Added 2025-10-27
|
|
946
938
|
platform_editor_table_sticky_header_improvements: createMultivariateExperiment({
|
|
947
939
|
productKeys: {
|
|
@@ -934,14 +934,6 @@ export var editorExperimentsConfig = {
|
|
|
934
934
|
param: 'isEnabled',
|
|
935
935
|
defaultValue: false
|
|
936
936
|
}),
|
|
937
|
-
// Added 2025-10-22
|
|
938
|
-
platform_editor_remove_bidi_char_warning: createBooleanExperiment({
|
|
939
|
-
productKeys: {
|
|
940
|
-
confluence: 'platform_editor_remove_bidi_char_warning'
|
|
941
|
-
},
|
|
942
|
-
param: 'isEnabled',
|
|
943
|
-
defaultValue: false
|
|
944
|
-
}),
|
|
945
937
|
// Added 2025-10-27
|
|
946
938
|
platform_editor_table_sticky_header_improvements: createMultivariateExperiment({
|
|
947
939
|
productKeys: {
|
|
@@ -640,12 +640,6 @@ export declare const editorExperimentsConfig: {
|
|
|
640
640
|
productKeys?: ProductKeys;
|
|
641
641
|
typeGuard: IsBooleanType;
|
|
642
642
|
};
|
|
643
|
-
platform_editor_remove_bidi_char_warning: {
|
|
644
|
-
defaultValue: boolean;
|
|
645
|
-
param: string;
|
|
646
|
-
productKeys?: ProductKeys;
|
|
647
|
-
typeGuard: IsBooleanType;
|
|
648
|
-
};
|
|
649
643
|
platform_editor_renderer_extension_width_fix: {
|
|
650
644
|
defaultValue: boolean;
|
|
651
645
|
param: string;
|
package/package.json
CHANGED