@atlaskit/tmp-editor-statsig 13.10.0 → 13.11.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,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`81a75afebab41`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/81a75afebab41) -
8
+ Update api for smarter suggested space recommendations.
9
+
10
+ ## 13.10.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [`18f1ab6ba31b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/18f1ab6ba31b0) -
15
+ improve table overshadow under experiment with variants including variant1: complete remove table
16
+ overflow shadowing, variant2: complete remove table overflow shadowing but have border in table
17
+ outer wrapper, variant3: use css-only driven table overflow shadowing.
18
+
3
19
  ## 13.10.0
4
20
 
5
21
  ### Minor Changes
@@ -346,7 +362,6 @@
346
362
 
347
363
  - [`0d0fe7a300841`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0d0fe7a300841) -
348
364
  Cleanup platform_editor_usesharedpluginstatewithselector experiment
349
-
350
365
  - BREAKING CHANGE: sharedPluginStateHookMigratorFactory is deleted from @atlaskit/editor-common
351
366
 
352
367
  ## 12.8.0
@@ -1148,7 +1163,6 @@
1148
1163
 
1149
1164
  This experiment was only enabled for Confluence and should not have been enabled in other places.
1150
1165
  If for some reason any of the following props/state/methdos were used please remove them:
1151
-
1152
1166
  - isConsumption
1153
1167
  - contentMode
1154
1168
  - initialContentMode
@@ -2085,12 +2099,10 @@
2085
2099
  [ux] [ED-25085] Migrate typography \
2086
2100
 
2087
2101
  editor-plugin-media:
2088
-
2089
2102
  - replace caption placeholder span with button
2090
2103
  - replace x between width and height pixel entry with symbol × \
2091
2104
 
2092
2105
  tmp-editor-statsig:
2093
-
2094
2106
  - Add experiment `platform_editor_typography_migration_ugc`
2095
2107
 
2096
2108
  ## 2.2.1
@@ -2319,7 +2331,6 @@
2319
2331
  [`705fe39cae267`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/705fe39cae267) -
2320
2332
  [ED-24597] Update to log `platform_editor_basic_text_transformations` exposure event only for
2321
2333
  users meet all of 3 checks:
2322
-
2323
2334
  - Are enrolled to the experiment
2324
2335
  - Have AI disabled
2325
2336
  - Make top level text selection
@@ -20,7 +20,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
20
20
  platform_hover_card_preview_panel: 'control',
21
21
  platform_hover_card_preview_panel_modal: 'control',
22
22
  platform_inline_smartcard_connect_button_exp: 'control',
23
- cc_editor_insm_outlier_events: 'test'
23
+ cc_editor_insm_outlier_events: 'test',
24
+ platform_editor_disable_table_overflow_shadows: 'control'
24
25
  };
25
26
  var testBooleanOverrides = exports.testBooleanOverrides = {
26
27
  platform_editor_feedback_mandatory_rating: false,
@@ -27,6 +27,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
27
27
  param: 'isEnabled',
28
28
  defaultValue: false
29
29
  }),
30
+ cc_editor_insm_doc_size_stats: (0, _experimentBuilders.createBooleanExperiment)({
31
+ productKeys: {
32
+ confluence: 'cc_editor_insm_doc_size_stats'
33
+ },
34
+ param: 'isEnabled',
35
+ defaultValue: false
36
+ }),
30
37
  // Added 2025-09-30
31
38
  cc_editor_insm_outlier_events: (0, _experimentBuilders.createMultivariateExperiment)({
32
39
  productKeys: {
@@ -36,6 +43,18 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
36
43
  values: ['control', 'test'],
37
44
  defaultValue: 'control'
38
45
  }),
46
+ // Added 2025-09-30
47
+ // variant 1: remove table overflow shadows completely, no table border shown when scrolling.
48
+ // variant 2: remove table overflow shadows, show table border when scrolling.
49
+ // variant 3: replace table overflow shadows with CSS-only solution.
50
+ platform_editor_disable_table_overflow_shadows: (0, _experimentBuilders.createMultivariateExperiment)({
51
+ productKeys: {
52
+ confluence: 'platform_editor_disable_table_overflow_shadows'
53
+ },
54
+ param: 'cohort',
55
+ values: ['control', 'variant1', 'variant2', 'variant3'],
56
+ defaultValue: 'control'
57
+ }),
39
58
  // Added 2025-05-27
40
59
  platform_editor_reduce_noisy_steps_ncs: (0, _experimentBuilders.createBooleanExperiment)({
41
60
  productKeys: {
@@ -961,6 +980,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
961
980
  param: 'isEnabled',
962
981
  defaultValue: false
963
982
  }),
983
+ // Added 2025-10-10
984
+ platform_use_llm_space_recommendations: (0, _experimentBuilders.createBooleanExperiment)({
985
+ productKeys: {
986
+ confluence: 'platform_use_llm_space_recommendations'
987
+ },
988
+ param: 'isEnabled',
989
+ defaultValue: false
990
+ }),
964
991
  // Added 2025-09-15
965
992
  platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
966
993
  productKeys: {
@@ -14,7 +14,8 @@ export const testMultivariateOverrides = {
14
14
  platform_hover_card_preview_panel: 'control',
15
15
  platform_hover_card_preview_panel_modal: 'control',
16
16
  platform_inline_smartcard_connect_button_exp: 'control',
17
- cc_editor_insm_outlier_events: 'test'
17
+ cc_editor_insm_outlier_events: 'test',
18
+ platform_editor_disable_table_overflow_shadows: 'control'
18
19
  };
19
20
  export const testBooleanOverrides = {
20
21
  platform_editor_feedback_mandatory_rating: false,
@@ -21,6 +21,13 @@ export const editorExperimentsConfig = {
21
21
  param: 'isEnabled',
22
22
  defaultValue: false
23
23
  }),
24
+ cc_editor_insm_doc_size_stats: createBooleanExperiment({
25
+ productKeys: {
26
+ confluence: 'cc_editor_insm_doc_size_stats'
27
+ },
28
+ param: 'isEnabled',
29
+ defaultValue: false
30
+ }),
24
31
  // Added 2025-09-30
25
32
  cc_editor_insm_outlier_events: createMultivariateExperiment({
26
33
  productKeys: {
@@ -30,6 +37,18 @@ export const editorExperimentsConfig = {
30
37
  values: ['control', 'test'],
31
38
  defaultValue: 'control'
32
39
  }),
40
+ // Added 2025-09-30
41
+ // variant 1: remove table overflow shadows completely, no table border shown when scrolling.
42
+ // variant 2: remove table overflow shadows, show table border when scrolling.
43
+ // variant 3: replace table overflow shadows with CSS-only solution.
44
+ platform_editor_disable_table_overflow_shadows: createMultivariateExperiment({
45
+ productKeys: {
46
+ confluence: 'platform_editor_disable_table_overflow_shadows'
47
+ },
48
+ param: 'cohort',
49
+ values: ['control', 'variant1', 'variant2', 'variant3'],
50
+ defaultValue: 'control'
51
+ }),
33
52
  // Added 2025-05-27
34
53
  platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
35
54
  productKeys: {
@@ -955,6 +974,14 @@ export const editorExperimentsConfig = {
955
974
  param: 'isEnabled',
956
975
  defaultValue: false
957
976
  }),
977
+ // Added 2025-10-10
978
+ platform_use_llm_space_recommendations: createBooleanExperiment({
979
+ productKeys: {
980
+ confluence: 'platform_use_llm_space_recommendations'
981
+ },
982
+ param: 'isEnabled',
983
+ defaultValue: false
984
+ }),
958
985
  // Added 2025-09-15
959
986
  platform_editor_text_highlight_padding: createBooleanExperiment({
960
987
  productKeys: {
@@ -14,7 +14,8 @@ export var testMultivariateOverrides = {
14
14
  platform_hover_card_preview_panel: 'control',
15
15
  platform_hover_card_preview_panel_modal: 'control',
16
16
  platform_inline_smartcard_connect_button_exp: 'control',
17
- cc_editor_insm_outlier_events: 'test'
17
+ cc_editor_insm_outlier_events: 'test',
18
+ platform_editor_disable_table_overflow_shadows: 'control'
18
19
  };
19
20
  export var testBooleanOverrides = {
20
21
  platform_editor_feedback_mandatory_rating: false,
@@ -21,6 +21,13 @@ export var editorExperimentsConfig = {
21
21
  param: 'isEnabled',
22
22
  defaultValue: false
23
23
  }),
24
+ cc_editor_insm_doc_size_stats: createBooleanExperiment({
25
+ productKeys: {
26
+ confluence: 'cc_editor_insm_doc_size_stats'
27
+ },
28
+ param: 'isEnabled',
29
+ defaultValue: false
30
+ }),
24
31
  // Added 2025-09-30
25
32
  cc_editor_insm_outlier_events: createMultivariateExperiment({
26
33
  productKeys: {
@@ -30,6 +37,18 @@ export var editorExperimentsConfig = {
30
37
  values: ['control', 'test'],
31
38
  defaultValue: 'control'
32
39
  }),
40
+ // Added 2025-09-30
41
+ // variant 1: remove table overflow shadows completely, no table border shown when scrolling.
42
+ // variant 2: remove table overflow shadows, show table border when scrolling.
43
+ // variant 3: replace table overflow shadows with CSS-only solution.
44
+ platform_editor_disable_table_overflow_shadows: createMultivariateExperiment({
45
+ productKeys: {
46
+ confluence: 'platform_editor_disable_table_overflow_shadows'
47
+ },
48
+ param: 'cohort',
49
+ values: ['control', 'variant1', 'variant2', 'variant3'],
50
+ defaultValue: 'control'
51
+ }),
33
52
  // Added 2025-05-27
34
53
  platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
35
54
  productKeys: {
@@ -955,6 +974,14 @@ export var editorExperimentsConfig = {
955
974
  param: 'isEnabled',
956
975
  defaultValue: false
957
976
  }),
977
+ // Added 2025-10-10
978
+ platform_use_llm_space_recommendations: createBooleanExperiment({
979
+ productKeys: {
980
+ confluence: 'platform_use_llm_space_recommendations'
981
+ },
982
+ param: 'isEnabled',
983
+ defaultValue: false
984
+ }),
958
985
  // Added 2025-09-15
959
986
  platform_editor_text_highlight_padding: createBooleanExperiment({
960
987
  productKeys: {
@@ -11,6 +11,12 @@ export declare const editorExperimentsConfig: {
11
11
  param: string;
12
12
  productKeys?: import("./types").ProductKeys;
13
13
  };
14
+ cc_editor_insm_doc_size_stats: {
15
+ typeGuard: typeof import("./type-guards").isBoolean;
16
+ defaultValue: boolean;
17
+ param: string;
18
+ productKeys?: import("./types").ProductKeys;
19
+ };
14
20
  cc_editor_insm_outlier_events: {
15
21
  values: ("test" | "control")[];
16
22
  typeGuard: (value: unknown) => value is "test" | "control";
@@ -18,6 +24,13 @@ export declare const editorExperimentsConfig: {
18
24
  param: string;
19
25
  productKeys?: import("./types").ProductKeys;
20
26
  };
27
+ platform_editor_disable_table_overflow_shadows: {
28
+ values: ("control" | "variant1" | "variant2" | "variant3")[];
29
+ typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
30
+ defaultValue: "control" | "variant1" | "variant2" | "variant3";
31
+ param: string;
32
+ productKeys?: import("./types").ProductKeys;
33
+ };
21
34
  platform_editor_reduce_noisy_steps_ncs: {
22
35
  typeGuard: typeof import("./type-guards").isBoolean;
23
36
  defaultValue: boolean;
@@ -704,6 +717,12 @@ export declare const editorExperimentsConfig: {
704
717
  param: string;
705
718
  productKeys?: import("./types").ProductKeys;
706
719
  };
720
+ platform_use_llm_space_recommendations: {
721
+ typeGuard: typeof import("./type-guards").isBoolean;
722
+ defaultValue: boolean;
723
+ param: string;
724
+ productKeys?: import("./types").ProductKeys;
725
+ };
707
726
  platform_editor_text_highlight_padding: {
708
727
  typeGuard: typeof import("./type-guards").isBoolean;
709
728
  defaultValue: boolean;
@@ -11,6 +11,12 @@ export declare const editorExperimentsConfig: {
11
11
  param: string;
12
12
  productKeys?: import("./types").ProductKeys;
13
13
  };
14
+ cc_editor_insm_doc_size_stats: {
15
+ typeGuard: typeof import("./type-guards").isBoolean;
16
+ defaultValue: boolean;
17
+ param: string;
18
+ productKeys?: import("./types").ProductKeys;
19
+ };
14
20
  cc_editor_insm_outlier_events: {
15
21
  values: ("test" | "control")[];
16
22
  typeGuard: (value: unknown) => value is "test" | "control";
@@ -18,6 +24,13 @@ export declare const editorExperimentsConfig: {
18
24
  param: string;
19
25
  productKeys?: import("./types").ProductKeys;
20
26
  };
27
+ platform_editor_disable_table_overflow_shadows: {
28
+ values: ("control" | "variant1" | "variant2" | "variant3")[];
29
+ typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
30
+ defaultValue: "control" | "variant1" | "variant2" | "variant3";
31
+ param: string;
32
+ productKeys?: import("./types").ProductKeys;
33
+ };
21
34
  platform_editor_reduce_noisy_steps_ncs: {
22
35
  typeGuard: typeof import("./type-guards").isBoolean;
23
36
  defaultValue: boolean;
@@ -704,6 +717,12 @@ export declare const editorExperimentsConfig: {
704
717
  param: string;
705
718
  productKeys?: import("./types").ProductKeys;
706
719
  };
720
+ platform_use_llm_space_recommendations: {
721
+ typeGuard: typeof import("./type-guards").isBoolean;
722
+ defaultValue: boolean;
723
+ param: string;
724
+ productKeys?: import("./types").ProductKeys;
725
+ };
707
726
  platform_editor_text_highlight_padding: {
708
727
  typeGuard: typeof import("./type-guards").isBoolean;
709
728
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.10.0",
3
+ "version": "13.11.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",
@@ -33,7 +33,7 @@
33
33
  "atlaskit:src": "src/index.ts",
34
34
  "dependencies": {
35
35
  "@atlaskit/feature-gate-js-client": "^5.5.0",
36
- "@atlaskit/react-ufo": "^4.11.0",
36
+ "@atlaskit/react-ufo": "^4.12.0",
37
37
  "@babel/runtime": "^7.0.0"
38
38
  },
39
39
  "peerDependencies": {