@atlaskit/tmp-editor-statsig 13.18.2 → 13.19.1
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 +15 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.19.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`da82d015556d4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/da82d015556d4) -
|
|
8
|
+
Fix a bug where repeatedly cloning the media plugin state would cause severe performance
|
|
9
|
+
degradation over time
|
|
10
|
+
|
|
11
|
+
## 13.19.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`ce0b8f9e44b69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ce0b8f9e44b69) -
|
|
16
|
+
[ux] [ED-29581] Removes bidi character scanning from code blocks and code snippets
|
|
17
|
+
|
|
3
18
|
## 13.18.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -1073,5 +1073,21 @@ 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
|
|
1084
|
+
}),
|
|
1085
|
+
// Added 2025-10-24
|
|
1086
|
+
platform_editor_fix_clone_nesting_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1087
|
+
productKeys: {
|
|
1088
|
+
confluence: 'platform_editor_fix_clone_nesting_exp'
|
|
1089
|
+
},
|
|
1090
|
+
param: 'isEnabled',
|
|
1091
|
+
defaultValue: false
|
|
1076
1092
|
})
|
|
1077
1093
|
};
|
|
@@ -1067,5 +1067,21 @@ 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
|
|
1078
|
+
}),
|
|
1079
|
+
// Added 2025-10-24
|
|
1080
|
+
platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
|
|
1081
|
+
productKeys: {
|
|
1082
|
+
confluence: 'platform_editor_fix_clone_nesting_exp'
|
|
1083
|
+
},
|
|
1084
|
+
param: 'isEnabled',
|
|
1085
|
+
defaultValue: false
|
|
1070
1086
|
})
|
|
1071
1087
|
};
|
|
@@ -1067,5 +1067,21 @@ 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
|
|
1078
|
+
}),
|
|
1079
|
+
// Added 2025-10-24
|
|
1080
|
+
platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
|
|
1081
|
+
productKeys: {
|
|
1082
|
+
confluence: 'platform_editor_fix_clone_nesting_exp'
|
|
1083
|
+
},
|
|
1084
|
+
param: 'isEnabled',
|
|
1085
|
+
defaultValue: false
|
|
1070
1086
|
})
|
|
1071
1087
|
};
|
|
@@ -787,4 +787,16 @@ 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
|
+
};
|
|
796
|
+
platform_editor_fix_clone_nesting_exp: {
|
|
797
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
798
|
+
defaultValue: boolean;
|
|
799
|
+
param: string;
|
|
800
|
+
productKeys?: import("./types").ProductKeys;
|
|
801
|
+
};
|
|
790
802
|
};
|
|
@@ -787,4 +787,16 @@ 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
|
+
};
|
|
796
|
+
platform_editor_fix_clone_nesting_exp: {
|
|
797
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
798
|
+
defaultValue: boolean;
|
|
799
|
+
param: string;
|
|
800
|
+
productKeys?: import("./types").ProductKeys;
|
|
801
|
+
};
|
|
790
802
|
};
|
package/package.json
CHANGED