@atlaskit/tmp-editor-statsig 16.3.1 → 16.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5812c1aff4a50`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5812c1aff4a50) -
|
|
8
|
+
Clean up platform_editor_pasting_nested_table_fix experiment - Fix nested table pasting by using
|
|
9
|
+
getLastPastedSlice
|
|
10
|
+
|
|
3
11
|
## 16.3.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -734,14 +734,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
734
734
|
param: 'isEnabled',
|
|
735
735
|
defaultValue: false
|
|
736
736
|
}),
|
|
737
|
-
// Added 2025-07-30
|
|
738
|
-
platform_editor_pasting_nested_table_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
739
|
-
productKeys: {
|
|
740
|
-
confluence: 'platform_editor_pasting_nested_table_fix'
|
|
741
|
-
},
|
|
742
|
-
param: 'isEnabled',
|
|
743
|
-
defaultValue: false
|
|
744
|
-
}),
|
|
745
737
|
// Added 20205-07-28
|
|
746
738
|
platform_editor_fix_quick_insert_consistency_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
747
739
|
productKeys: {
|
|
@@ -728,14 +728,6 @@ export const editorExperimentsConfig = {
|
|
|
728
728
|
param: 'isEnabled',
|
|
729
729
|
defaultValue: false
|
|
730
730
|
}),
|
|
731
|
-
// Added 2025-07-30
|
|
732
|
-
platform_editor_pasting_nested_table_fix: createBooleanExperiment({
|
|
733
|
-
productKeys: {
|
|
734
|
-
confluence: 'platform_editor_pasting_nested_table_fix'
|
|
735
|
-
},
|
|
736
|
-
param: 'isEnabled',
|
|
737
|
-
defaultValue: false
|
|
738
|
-
}),
|
|
739
731
|
// Added 20205-07-28
|
|
740
732
|
platform_editor_fix_quick_insert_consistency_exp: createBooleanExperiment({
|
|
741
733
|
productKeys: {
|
|
@@ -728,14 +728,6 @@ export var editorExperimentsConfig = {
|
|
|
728
728
|
param: 'isEnabled',
|
|
729
729
|
defaultValue: false
|
|
730
730
|
}),
|
|
731
|
-
// Added 2025-07-30
|
|
732
|
-
platform_editor_pasting_nested_table_fix: createBooleanExperiment({
|
|
733
|
-
productKeys: {
|
|
734
|
-
confluence: 'platform_editor_pasting_nested_table_fix'
|
|
735
|
-
},
|
|
736
|
-
param: 'isEnabled',
|
|
737
|
-
defaultValue: false
|
|
738
|
-
}),
|
|
739
731
|
// Added 20205-07-28
|
|
740
732
|
platform_editor_fix_quick_insert_consistency_exp: createBooleanExperiment({
|
|
741
733
|
productKeys: {
|
|
@@ -537,12 +537,6 @@ export declare const editorExperimentsConfig: {
|
|
|
537
537
|
productKeys?: ProductKeys;
|
|
538
538
|
typeGuard: IsBooleanType;
|
|
539
539
|
};
|
|
540
|
-
platform_editor_pasting_nested_table_fix: {
|
|
541
|
-
defaultValue: boolean;
|
|
542
|
-
param: string;
|
|
543
|
-
productKeys?: ProductKeys;
|
|
544
|
-
typeGuard: IsBooleanType;
|
|
545
|
-
};
|
|
546
540
|
platform_editor_pasting_text_in_panel: {
|
|
547
541
|
defaultValue: boolean;
|
|
548
542
|
param: string;
|
|
@@ -537,12 +537,6 @@ export declare const editorExperimentsConfig: {
|
|
|
537
537
|
productKeys?: ProductKeys;
|
|
538
538
|
typeGuard: IsBooleanType;
|
|
539
539
|
};
|
|
540
|
-
platform_editor_pasting_nested_table_fix: {
|
|
541
|
-
defaultValue: boolean;
|
|
542
|
-
param: string;
|
|
543
|
-
productKeys?: ProductKeys;
|
|
544
|
-
typeGuard: IsBooleanType;
|
|
545
|
-
};
|
|
546
540
|
platform_editor_pasting_text_in_panel: {
|
|
547
541
|
defaultValue: boolean;
|
|
548
542
|
param: string;
|
package/package.json
CHANGED