@atlaskit/tmp-editor-statsig 13.39.0 → 13.40.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.40.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c94c7bb357496`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c94c7bb357496) -
|
|
8
|
+
[ux] EDITOR-3317 Fix beahavior when pasting paragraph from panel into list inside panel
|
|
9
|
+
|
|
3
10
|
## 13.39.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -727,6 +727,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
727
727
|
param: 'isEnabled',
|
|
728
728
|
defaultValue: false
|
|
729
729
|
}),
|
|
730
|
+
//Added 2025-11-19
|
|
731
|
+
platform_editor_pasting_text_in_panel: (0, _experimentBuilders.createBooleanExperiment)({
|
|
732
|
+
productKeys: {
|
|
733
|
+
confluence: 'platform_editor_pasting_text_in_panel'
|
|
734
|
+
},
|
|
735
|
+
param: 'isEnabled',
|
|
736
|
+
defaultValue: false
|
|
737
|
+
}),
|
|
730
738
|
// Added 2025-07-31
|
|
731
739
|
platform_editor_fix_a11y_aria_posinset_0: (0, _experimentBuilders.createBooleanExperiment)({
|
|
732
740
|
productKeys: {
|
|
@@ -721,6 +721,14 @@ export const editorExperimentsConfig = {
|
|
|
721
721
|
param: 'isEnabled',
|
|
722
722
|
defaultValue: false
|
|
723
723
|
}),
|
|
724
|
+
//Added 2025-11-19
|
|
725
|
+
platform_editor_pasting_text_in_panel: createBooleanExperiment({
|
|
726
|
+
productKeys: {
|
|
727
|
+
confluence: 'platform_editor_pasting_text_in_panel'
|
|
728
|
+
},
|
|
729
|
+
param: 'isEnabled',
|
|
730
|
+
defaultValue: false
|
|
731
|
+
}),
|
|
724
732
|
// Added 2025-07-31
|
|
725
733
|
platform_editor_fix_a11y_aria_posinset_0: createBooleanExperiment({
|
|
726
734
|
productKeys: {
|
|
@@ -721,6 +721,14 @@ export var editorExperimentsConfig = {
|
|
|
721
721
|
param: 'isEnabled',
|
|
722
722
|
defaultValue: false
|
|
723
723
|
}),
|
|
724
|
+
//Added 2025-11-19
|
|
725
|
+
platform_editor_pasting_text_in_panel: createBooleanExperiment({
|
|
726
|
+
productKeys: {
|
|
727
|
+
confluence: 'platform_editor_pasting_text_in_panel'
|
|
728
|
+
},
|
|
729
|
+
param: 'isEnabled',
|
|
730
|
+
defaultValue: false
|
|
731
|
+
}),
|
|
724
732
|
// Added 2025-07-31
|
|
725
733
|
platform_editor_fix_a11y_aria_posinset_0: createBooleanExperiment({
|
|
726
734
|
productKeys: {
|
|
@@ -530,6 +530,12 @@ export declare const editorExperimentsConfig: {
|
|
|
530
530
|
param: string;
|
|
531
531
|
productKeys?: import("./types").ProductKeys;
|
|
532
532
|
};
|
|
533
|
+
platform_editor_pasting_text_in_panel: {
|
|
534
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
535
|
+
defaultValue: boolean;
|
|
536
|
+
param: string;
|
|
537
|
+
productKeys?: import("./types").ProductKeys;
|
|
538
|
+
};
|
|
533
539
|
platform_editor_fix_a11y_aria_posinset_0: {
|
|
534
540
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
535
541
|
defaultValue: boolean;
|
|
@@ -530,6 +530,12 @@ export declare const editorExperimentsConfig: {
|
|
|
530
530
|
param: string;
|
|
531
531
|
productKeys?: import("./types").ProductKeys;
|
|
532
532
|
};
|
|
533
|
+
platform_editor_pasting_text_in_panel: {
|
|
534
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
535
|
+
defaultValue: boolean;
|
|
536
|
+
param: string;
|
|
537
|
+
productKeys?: import("./types").ProductKeys;
|
|
538
|
+
};
|
|
533
539
|
platform_editor_fix_a11y_aria_posinset_0: {
|
|
534
540
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
535
541
|
defaultValue: boolean;
|
package/package.json
CHANGED