@atlaskit/tmp-editor-statsig 135.8.0 → 135.10.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 135.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`894f9e2ba765a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/894f9e2ba765a) -
8
+ Decouple paste-as-markdown GFM transformer rollout from `cc-markdown-mode` and gate it with the
9
+ new `platform_editor_paste_as_md_use_gfm` experiment for independent rollout control.
10
+
11
+ Consumers can gate the new transformer path with:
12
+ `expValEquals('platform_editor_paste_as_md_use_gfm', 'isEnabled', true)`.
13
+
14
+ ## 135.9.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`109c3998554f2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/109c3998554f2) -
19
+ Add SSR-safe, experiment-gated CSS overflow shadows for editor tables and keep renderer shadows
20
+ within table bounds when sticky scrollbars are present.
21
+
3
22
  ## 135.8.0
4
23
 
5
24
  ### Minor Changes
@@ -46,6 +46,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
46
46
  param: 'isEnabled',
47
47
  defaultValue: false
48
48
  }),
49
+ // Added 2026-07-28
50
+ platform_editor_table_css_overflow_shadow: (0, _experimentBuilders.createBooleanExperiment)({
51
+ productKeys: {
52
+ confluence: 'platform_editor_table_css_overflow_shadow',
53
+ jira: 'platform_editor_table_css_overflow_shadow'
54
+ },
55
+ param: 'isEnabled',
56
+ defaultValue: false
57
+ }),
49
58
  // Added 2026-07-24
50
59
  platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
51
60
  productKeys: {
@@ -1920,6 +1929,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1920
1929
  param: 'isEnabled',
1921
1930
  defaultValue: false
1922
1931
  }),
1932
+ // Added 2026-07-28
1933
+ platform_editor_paste_as_md_use_gfm: (0, _experimentBuilders.createBooleanExperiment)({
1934
+ productKeys: {
1935
+ confluence: 'platform_editor_paste_as_md_use_gfm'
1936
+ },
1937
+ param: 'isEnabled',
1938
+ defaultValue: false
1939
+ }),
1923
1940
  // Added 2026-03-30
1924
1941
  platform_editor_ai_xstate_migration: (0, _experimentBuilders.createBooleanExperiment)({
1925
1942
  productKeys: {
@@ -40,6 +40,15 @@ export const editorExperimentsConfig = {
40
40
  param: 'isEnabled',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 2026-07-28
44
+ platform_editor_table_css_overflow_shadow: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'platform_editor_table_css_overflow_shadow',
47
+ jira: 'platform_editor_table_css_overflow_shadow'
48
+ },
49
+ param: 'isEnabled',
50
+ defaultValue: false
51
+ }),
43
52
  // Added 2026-07-24
44
53
  platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
45
54
  productKeys: {
@@ -1914,6 +1923,14 @@ export const editorExperimentsConfig = {
1914
1923
  param: 'isEnabled',
1915
1924
  defaultValue: false
1916
1925
  }),
1926
+ // Added 2026-07-28
1927
+ platform_editor_paste_as_md_use_gfm: createBooleanExperiment({
1928
+ productKeys: {
1929
+ confluence: 'platform_editor_paste_as_md_use_gfm'
1930
+ },
1931
+ param: 'isEnabled',
1932
+ defaultValue: false
1933
+ }),
1917
1934
  // Added 2026-03-30
1918
1935
  platform_editor_ai_xstate_migration: createBooleanExperiment({
1919
1936
  productKeys: {
@@ -40,6 +40,15 @@ export var editorExperimentsConfig = {
40
40
  param: 'isEnabled',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 2026-07-28
44
+ platform_editor_table_css_overflow_shadow: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'platform_editor_table_css_overflow_shadow',
47
+ jira: 'platform_editor_table_css_overflow_shadow'
48
+ },
49
+ param: 'isEnabled',
50
+ defaultValue: false
51
+ }),
43
52
  // Added 2026-07-24
44
53
  platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
45
54
  productKeys: {
@@ -1914,6 +1923,14 @@ export var editorExperimentsConfig = {
1914
1923
  param: 'isEnabled',
1915
1924
  defaultValue: false
1916
1925
  }),
1926
+ // Added 2026-07-28
1927
+ platform_editor_paste_as_md_use_gfm: createBooleanExperiment({
1928
+ productKeys: {
1929
+ confluence: 'platform_editor_paste_as_md_use_gfm'
1930
+ },
1931
+ param: 'isEnabled',
1932
+ defaultValue: false
1933
+ }),
1917
1934
  // Added 2026-03-30
1918
1935
  platform_editor_ai_xstate_migration: createBooleanExperiment({
1919
1936
  productKeys: {
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
21
21
  * existing experiments.
22
22
  */
23
23
  export declare const editorExperimentsConfig: {
24
+ platform_editor_table_css_overflow_shadow: {
25
+ defaultValue: boolean;
26
+ param: string;
27
+ productKeys?: ProductKeys;
28
+ typeGuard: IsBooleanType;
29
+ };
24
30
  platform_editor_layout_column_delete_shortcut_fix: {
25
31
  defaultValue: boolean;
26
32
  param: string;
@@ -502,6 +508,12 @@ export declare const editorExperimentsConfig: {
502
508
  productKeys?: ProductKeys;
503
509
  typeGuard: IsBooleanType;
504
510
  };
511
+ platform_editor_paste_as_md_use_gfm: {
512
+ defaultValue: boolean;
513
+ param: string;
514
+ productKeys?: ProductKeys;
515
+ typeGuard: IsBooleanType;
516
+ };
505
517
  platform_editor_exp_lazy_node_views: {
506
518
  defaultValue: boolean;
507
519
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "135.8.0",
3
+ "version": "135.10.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",