@atlaskit/tmp-editor-statsig 12.28.0 → 12.29.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,15 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 12.29.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`6d186dc817ef9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d186dc817ef9) -
8
+ [ux] ED-26884 fix bug where resize columns for nested table results in a scrollbar
9
+ - [`e49f1d35e507a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e49f1d35e507a) -
10
+ [https://product-fabric.atlassian.net/browse/ED-29349](ED-29349) - add one tick provider (SSR)
11
+ support for emojis in editor and live pages
12
+
3
13
  ## 12.28.0
4
14
 
5
15
  ### Minor Changes
@@ -592,6 +592,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
592
592
  param: 'isEnabled',
593
593
  defaultValue: false
594
594
  }),
595
+ // Added 2025-09-16
596
+ platform_editor_emoji_otp: (0, _experimentBuilders.createBooleanExperiment)({
597
+ productKeys: {
598
+ confluence: 'platform_editor_emoji_otp'
599
+ },
600
+ param: 'isEnabled',
601
+ defaultValue: false
602
+ }),
595
603
  // Added 2025-07-23
596
604
  platform_editor_renderer_breakout_fix: (0, _experimentBuilders.createBooleanExperiment)({
597
605
  productKeys: {
@@ -1025,6 +1033,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1025
1033
  param: 'isEnabled',
1026
1034
  defaultValue: false
1027
1035
  }),
1036
+ // Added 2025-09-16
1037
+ platform_editor_nested_table_refresh_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
1038
+ productKeys: {
1039
+ confluence: 'platform_editor_nested_table_refresh_width_fix'
1040
+ },
1041
+ param: 'isEnabled',
1042
+ defaultValue: false
1043
+ }),
1028
1044
  // Added 10-09-2025
1029
1045
  platform_editor_toolbar_task_list_menu_item: (0, _experimentBuilders.createBooleanExperiment)({
1030
1046
  productKeys: {
@@ -586,6 +586,14 @@ export const editorExperimentsConfig = {
586
586
  param: 'isEnabled',
587
587
  defaultValue: false
588
588
  }),
589
+ // Added 2025-09-16
590
+ platform_editor_emoji_otp: createBooleanExperiment({
591
+ productKeys: {
592
+ confluence: 'platform_editor_emoji_otp'
593
+ },
594
+ param: 'isEnabled',
595
+ defaultValue: false
596
+ }),
589
597
  // Added 2025-07-23
590
598
  platform_editor_renderer_breakout_fix: createBooleanExperiment({
591
599
  productKeys: {
@@ -1019,6 +1027,14 @@ export const editorExperimentsConfig = {
1019
1027
  param: 'isEnabled',
1020
1028
  defaultValue: false
1021
1029
  }),
1030
+ // Added 2025-09-16
1031
+ platform_editor_nested_table_refresh_width_fix: createBooleanExperiment({
1032
+ productKeys: {
1033
+ confluence: 'platform_editor_nested_table_refresh_width_fix'
1034
+ },
1035
+ param: 'isEnabled',
1036
+ defaultValue: false
1037
+ }),
1022
1038
  // Added 10-09-2025
1023
1039
  platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
1024
1040
  productKeys: {
@@ -586,6 +586,14 @@ export var editorExperimentsConfig = {
586
586
  param: 'isEnabled',
587
587
  defaultValue: false
588
588
  }),
589
+ // Added 2025-09-16
590
+ platform_editor_emoji_otp: createBooleanExperiment({
591
+ productKeys: {
592
+ confluence: 'platform_editor_emoji_otp'
593
+ },
594
+ param: 'isEnabled',
595
+ defaultValue: false
596
+ }),
589
597
  // Added 2025-07-23
590
598
  platform_editor_renderer_breakout_fix: createBooleanExperiment({
591
599
  productKeys: {
@@ -1019,6 +1027,14 @@ export var editorExperimentsConfig = {
1019
1027
  param: 'isEnabled',
1020
1028
  defaultValue: false
1021
1029
  }),
1030
+ // Added 2025-09-16
1031
+ platform_editor_nested_table_refresh_width_fix: createBooleanExperiment({
1032
+ productKeys: {
1033
+ confluence: 'platform_editor_nested_table_refresh_width_fix'
1034
+ },
1035
+ param: 'isEnabled',
1036
+ defaultValue: false
1037
+ }),
1022
1038
  // Added 10-09-2025
1023
1039
  platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
1024
1040
  productKeys: {
@@ -437,6 +437,12 @@ export declare const editorExperimentsConfig: {
437
437
  param: string;
438
438
  productKeys?: import("./types").ProductKeys;
439
439
  };
440
+ platform_editor_emoji_otp: {
441
+ typeGuard: typeof import("./type-guards").isBoolean;
442
+ defaultValue: boolean;
443
+ param: string;
444
+ productKeys?: import("./types").ProductKeys;
445
+ };
440
446
  platform_editor_renderer_breakout_fix: {
441
447
  typeGuard: typeof import("./type-guards").isBoolean;
442
448
  defaultValue: boolean;
@@ -752,6 +758,12 @@ export declare const editorExperimentsConfig: {
752
758
  param: string;
753
759
  productKeys?: import("./types").ProductKeys;
754
760
  };
761
+ platform_editor_nested_table_refresh_width_fix: {
762
+ typeGuard: typeof import("./type-guards").isBoolean;
763
+ defaultValue: boolean;
764
+ param: string;
765
+ productKeys?: import("./types").ProductKeys;
766
+ };
755
767
  platform_editor_toolbar_task_list_menu_item: {
756
768
  typeGuard: typeof import("./type-guards").isBoolean;
757
769
  defaultValue: boolean;
@@ -437,6 +437,12 @@ export declare const editorExperimentsConfig: {
437
437
  param: string;
438
438
  productKeys?: import("./types").ProductKeys;
439
439
  };
440
+ platform_editor_emoji_otp: {
441
+ typeGuard: typeof import("./type-guards").isBoolean;
442
+ defaultValue: boolean;
443
+ param: string;
444
+ productKeys?: import("./types").ProductKeys;
445
+ };
440
446
  platform_editor_renderer_breakout_fix: {
441
447
  typeGuard: typeof import("./type-guards").isBoolean;
442
448
  defaultValue: boolean;
@@ -752,6 +758,12 @@ export declare const editorExperimentsConfig: {
752
758
  param: string;
753
759
  productKeys?: import("./types").ProductKeys;
754
760
  };
761
+ platform_editor_nested_table_refresh_width_fix: {
762
+ typeGuard: typeof import("./type-guards").isBoolean;
763
+ defaultValue: boolean;
764
+ param: string;
765
+ productKeys?: import("./types").ProductKeys;
766
+ };
755
767
  platform_editor_toolbar_task_list_menu_item: {
756
768
  typeGuard: typeof import("./type-guards").isBoolean;
757
769
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "12.28.0",
3
+ "version": "12.29.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",