@atlaskit/tmp-editor-statsig 13.10.0 → 13.10.1

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,14 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`18f1ab6ba31b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/18f1ab6ba31b0) -
8
+ improve table overshadow under experiment with variants including variant1: complete remove table
9
+ overflow shadowing, variant2: complete remove table overflow shadowing but have border in table
10
+ outer wrapper, variant3: use css-only driven table overflow shadowing.
11
+
3
12
  ## 13.10.0
4
13
 
5
14
  ### Minor Changes
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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;
@@ -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;
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.10.1",
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",