@atlaskit/tmp-editor-statsig 13.38.1 → 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,23 @@
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
+
10
+ ## 13.39.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`d2da08dd6c682`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d2da08dd6c682) -
15
+ use css driven width for extension styles in renderer
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 13.38.1
4
22
 
5
23
  ### Patch Changes
@@ -58,6 +58,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
58
58
  values: ['control', 'test'],
59
59
  defaultValue: 'control'
60
60
  }),
61
+ // Added 2025-11-17
62
+ platform_editor_renderer_extension_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
63
+ productKeys: {
64
+ confluence: 'platform_editor_renderer_extension_width_fix'
65
+ },
66
+ param: 'isEnabled',
67
+ defaultValue: false
68
+ }),
61
69
  // Added 2025-09-30
62
70
  // variant 1: remove table overflow shadows completely, no table border shown when scrolling.
63
71
  // variant 2: remove table overflow shadows, show table border when scrolling.
@@ -719,6 +727,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
719
727
  param: 'isEnabled',
720
728
  defaultValue: false
721
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
+ }),
722
738
  // Added 2025-07-31
723
739
  platform_editor_fix_a11y_aria_posinset_0: (0, _experimentBuilders.createBooleanExperiment)({
724
740
  productKeys: {
@@ -52,6 +52,14 @@ export const editorExperimentsConfig = {
52
52
  values: ['control', 'test'],
53
53
  defaultValue: 'control'
54
54
  }),
55
+ // Added 2025-11-17
56
+ platform_editor_renderer_extension_width_fix: createBooleanExperiment({
57
+ productKeys: {
58
+ confluence: 'platform_editor_renderer_extension_width_fix'
59
+ },
60
+ param: 'isEnabled',
61
+ defaultValue: false
62
+ }),
55
63
  // Added 2025-09-30
56
64
  // variant 1: remove table overflow shadows completely, no table border shown when scrolling.
57
65
  // variant 2: remove table overflow shadows, show table border when scrolling.
@@ -713,6 +721,14 @@ export const editorExperimentsConfig = {
713
721
  param: 'isEnabled',
714
722
  defaultValue: false
715
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
+ }),
716
732
  // Added 2025-07-31
717
733
  platform_editor_fix_a11y_aria_posinset_0: createBooleanExperiment({
718
734
  productKeys: {
@@ -52,6 +52,14 @@ export var editorExperimentsConfig = {
52
52
  values: ['control', 'test'],
53
53
  defaultValue: 'control'
54
54
  }),
55
+ // Added 2025-11-17
56
+ platform_editor_renderer_extension_width_fix: createBooleanExperiment({
57
+ productKeys: {
58
+ confluence: 'platform_editor_renderer_extension_width_fix'
59
+ },
60
+ param: 'isEnabled',
61
+ defaultValue: false
62
+ }),
55
63
  // Added 2025-09-30
56
64
  // variant 1: remove table overflow shadows completely, no table border shown when scrolling.
57
65
  // variant 2: remove table overflow shadows, show table border when scrolling.
@@ -713,6 +721,14 @@ export var editorExperimentsConfig = {
713
721
  param: 'isEnabled',
714
722
  defaultValue: false
715
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
+ }),
716
732
  // Added 2025-07-31
717
733
  platform_editor_fix_a11y_aria_posinset_0: createBooleanExperiment({
718
734
  productKeys: {
@@ -36,6 +36,12 @@ export declare const editorExperimentsConfig: {
36
36
  param: string;
37
37
  productKeys?: import("./types").ProductKeys;
38
38
  };
39
+ platform_editor_renderer_extension_width_fix: {
40
+ typeGuard: typeof import("./type-guards").isBoolean;
41
+ defaultValue: boolean;
42
+ param: string;
43
+ productKeys?: import("./types").ProductKeys;
44
+ };
39
45
  platform_editor_disable_table_overflow_shadows: {
40
46
  values: ("control" | "variant1" | "variant2" | "variant3")[];
41
47
  typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
@@ -524,6 +530,12 @@ export declare const editorExperimentsConfig: {
524
530
  param: string;
525
531
  productKeys?: import("./types").ProductKeys;
526
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
+ };
527
539
  platform_editor_fix_a11y_aria_posinset_0: {
528
540
  typeGuard: typeof import("./type-guards").isBoolean;
529
541
  defaultValue: boolean;
@@ -36,6 +36,12 @@ export declare const editorExperimentsConfig: {
36
36
  param: string;
37
37
  productKeys?: import("./types").ProductKeys;
38
38
  };
39
+ platform_editor_renderer_extension_width_fix: {
40
+ typeGuard: typeof import("./type-guards").isBoolean;
41
+ defaultValue: boolean;
42
+ param: string;
43
+ productKeys?: import("./types").ProductKeys;
44
+ };
39
45
  platform_editor_disable_table_overflow_shadows: {
40
46
  values: ("control" | "variant1" | "variant2" | "variant3")[];
41
47
  typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
@@ -524,6 +530,12 @@ export declare const editorExperimentsConfig: {
524
530
  param: string;
525
531
  productKeys?: import("./types").ProductKeys;
526
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
+ };
527
539
  platform_editor_fix_a11y_aria_posinset_0: {
528
540
  typeGuard: typeof import("./type-guards").isBoolean;
529
541
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.38.1",
3
+ "version": "13.40.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",