@atlaskit/tmp-editor-statsig 135.3.0 → 135.5.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,30 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 135.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`90510b2e6e5af`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90510b2e6e5af) -
8
+ Prevent nested renderer tables from incorrectly using content-width mode
9
+
10
+ ## 135.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`069c5c0253ba5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/069c5c0253ba5) -
15
+ [ux] Improve Remix button hover reliability near the right edge of narrow editor layouts behind
16
+ the `cc_maui_remix_button_hover_corridor` experiment.
17
+
18
+ Consumers can check the new typed boolean experiment at the behavior callsite:
19
+
20
+ ```ts
21
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
22
+
23
+ if (expValEquals('cc_maui_remix_button_hover_corridor', 'isEnabled', true)) {
24
+ // Apply the treatment behavior.
25
+ }
26
+ ```
27
+
3
28
  ## 135.3.0
4
29
 
5
30
  ### Minor Changes
@@ -38,7 +38,14 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
38
38
  */
39
39
  var editorExperimentsConfig = exports.editorExperimentsConfig = {
40
40
  // new format to avoid collisions with other users when updating the file
41
-
41
+ // Added 2026-07-18
42
+ cc_maui_remix_button_hover_corridor: (0, _experimentBuilders.createBooleanExperiment)({
43
+ productKeys: {
44
+ confluence: 'cc_maui_remix_button_hover_corridor'
45
+ },
46
+ param: 'isEnabled',
47
+ defaultValue: false
48
+ }),
42
49
  // Added 2026-07-24
43
50
  platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
44
51
  productKeys: {
@@ -1794,6 +1801,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1794
1801
  param: 'isEnabled',
1795
1802
  defaultValue: false
1796
1803
  }),
1804
+ // Added 2026-07-28
1805
+ platform_editor_table_nested_content_mode_fix: (0, _experimentBuilders.createBooleanExperiment)({
1806
+ productKeys: {
1807
+ confluence: 'platform_editor_table_nested_content_mode_fix'
1808
+ },
1809
+ param: 'isEnabled',
1810
+ defaultValue: false
1811
+ }),
1797
1812
  platform_editor_table_fit_to_content_on_demand: (0, _experimentBuilders.createBooleanExperiment)({
1798
1813
  productKeys: {
1799
1814
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -32,7 +32,14 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
32
32
  */
33
33
  export const editorExperimentsConfig = {
34
34
  // new format to avoid collisions with other users when updating the file
35
-
35
+ // Added 2026-07-18
36
+ cc_maui_remix_button_hover_corridor: createBooleanExperiment({
37
+ productKeys: {
38
+ confluence: 'cc_maui_remix_button_hover_corridor'
39
+ },
40
+ param: 'isEnabled',
41
+ defaultValue: false
42
+ }),
36
43
  // Added 2026-07-24
37
44
  platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
38
45
  productKeys: {
@@ -1788,6 +1795,14 @@ export const editorExperimentsConfig = {
1788
1795
  param: 'isEnabled',
1789
1796
  defaultValue: false
1790
1797
  }),
1798
+ // Added 2026-07-28
1799
+ platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
1800
+ productKeys: {
1801
+ confluence: 'platform_editor_table_nested_content_mode_fix'
1802
+ },
1803
+ param: 'isEnabled',
1804
+ defaultValue: false
1805
+ }),
1791
1806
  platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
1792
1807
  productKeys: {
1793
1808
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -32,7 +32,14 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
32
32
  */
33
33
  export var editorExperimentsConfig = {
34
34
  // new format to avoid collisions with other users when updating the file
35
-
35
+ // Added 2026-07-18
36
+ cc_maui_remix_button_hover_corridor: createBooleanExperiment({
37
+ productKeys: {
38
+ confluence: 'cc_maui_remix_button_hover_corridor'
39
+ },
40
+ param: 'isEnabled',
41
+ defaultValue: false
42
+ }),
36
43
  // Added 2026-07-24
37
44
  platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
38
45
  productKeys: {
@@ -1788,6 +1795,14 @@ export var editorExperimentsConfig = {
1788
1795
  param: 'isEnabled',
1789
1796
  defaultValue: false
1790
1797
  }),
1798
+ // Added 2026-07-28
1799
+ platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
1800
+ productKeys: {
1801
+ confluence: 'platform_editor_table_nested_content_mode_fix'
1802
+ },
1803
+ param: 'isEnabled',
1804
+ defaultValue: false
1805
+ }),
1791
1806
  platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
1792
1807
  productKeys: {
1793
1808
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -27,6 +27,12 @@ export declare const editorExperimentsConfig: {
27
27
  productKeys?: ProductKeys;
28
28
  typeGuard: IsBooleanType;
29
29
  };
30
+ cc_maui_remix_button_hover_corridor: {
31
+ defaultValue: boolean;
32
+ param: string;
33
+ productKeys?: ProductKeys;
34
+ typeGuard: IsBooleanType;
35
+ };
30
36
  platform_editor_agent_be_streaming: {
31
37
  defaultValue: boolean;
32
38
  param: string;
@@ -1395,6 +1401,12 @@ export declare const editorExperimentsConfig: {
1395
1401
  productKeys?: ProductKeys;
1396
1402
  typeGuard: IsBooleanType;
1397
1403
  };
1404
+ platform_editor_table_nested_content_mode_fix: {
1405
+ defaultValue: boolean;
1406
+ param: string;
1407
+ productKeys?: ProductKeys;
1408
+ typeGuard: IsBooleanType;
1409
+ };
1398
1410
  platform_editor_table_fit_to_content_on_demand: {
1399
1411
  defaultValue: boolean;
1400
1412
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "135.3.0",
3
+ "version": "135.5.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",