@atlaskit/tmp-editor-statsig 13.18.2 → 13.19.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
|
+
## 13.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ce0b8f9e44b69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ce0b8f9e44b69) -
|
|
8
|
+
[ux] [ED-29581] Removes bidi character scanning from code blocks and code snippets
|
|
9
|
+
|
|
3
10
|
## 13.18.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1073,5 +1073,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1073
1073
|
param: 'cohort',
|
|
1074
1074
|
values: ['control', 'test_blank', 'test_diagram'],
|
|
1075
1075
|
defaultValue: 'control'
|
|
1076
|
+
}),
|
|
1077
|
+
// Added 2025-10-22
|
|
1078
|
+
platform_editor_remove_bidi_char_warning: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1079
|
+
productKeys: {
|
|
1080
|
+
confluence: 'platform_editor_remove_bidi_char_warning'
|
|
1081
|
+
},
|
|
1082
|
+
param: 'isEnabled',
|
|
1083
|
+
defaultValue: false
|
|
1076
1084
|
})
|
|
1077
1085
|
};
|
|
@@ -1067,5 +1067,13 @@ export const editorExperimentsConfig = {
|
|
|
1067
1067
|
param: 'cohort',
|
|
1068
1068
|
values: ['control', 'test_blank', 'test_diagram'],
|
|
1069
1069
|
defaultValue: 'control'
|
|
1070
|
+
}),
|
|
1071
|
+
// Added 2025-10-22
|
|
1072
|
+
platform_editor_remove_bidi_char_warning: createBooleanExperiment({
|
|
1073
|
+
productKeys: {
|
|
1074
|
+
confluence: 'platform_editor_remove_bidi_char_warning'
|
|
1075
|
+
},
|
|
1076
|
+
param: 'isEnabled',
|
|
1077
|
+
defaultValue: false
|
|
1070
1078
|
})
|
|
1071
1079
|
};
|
|
@@ -1067,5 +1067,13 @@ export var editorExperimentsConfig = {
|
|
|
1067
1067
|
param: 'cohort',
|
|
1068
1068
|
values: ['control', 'test_blank', 'test_diagram'],
|
|
1069
1069
|
defaultValue: 'control'
|
|
1070
|
+
}),
|
|
1071
|
+
// Added 2025-10-22
|
|
1072
|
+
platform_editor_remove_bidi_char_warning: createBooleanExperiment({
|
|
1073
|
+
productKeys: {
|
|
1074
|
+
confluence: 'platform_editor_remove_bidi_char_warning'
|
|
1075
|
+
},
|
|
1076
|
+
param: 'isEnabled',
|
|
1077
|
+
defaultValue: false
|
|
1070
1078
|
})
|
|
1071
1079
|
};
|
|
@@ -787,4 +787,10 @@ export declare const editorExperimentsConfig: {
|
|
|
787
787
|
param: string;
|
|
788
788
|
productKeys?: import("./types").ProductKeys;
|
|
789
789
|
};
|
|
790
|
+
platform_editor_remove_bidi_char_warning: {
|
|
791
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
792
|
+
defaultValue: boolean;
|
|
793
|
+
param: string;
|
|
794
|
+
productKeys?: import("./types").ProductKeys;
|
|
795
|
+
};
|
|
790
796
|
};
|
|
@@ -787,4 +787,10 @@ export declare const editorExperimentsConfig: {
|
|
|
787
787
|
param: string;
|
|
788
788
|
productKeys?: import("./types").ProductKeys;
|
|
789
789
|
};
|
|
790
|
+
platform_editor_remove_bidi_char_warning: {
|
|
791
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
792
|
+
defaultValue: boolean;
|
|
793
|
+
param: string;
|
|
794
|
+
productKeys?: import("./types").ProductKeys;
|
|
795
|
+
};
|
|
790
796
|
};
|
package/package.json
CHANGED