@atlaskit/tmp-editor-statsig 17.3.0 → 17.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`707c5a42b5358`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/707c5a42b5358) -
8
+ [ux] Updates LCM for new Read only mode. Also adds a new static property setter to the insm api.
9
+
10
+ ## 17.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`b855c9d819b09`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b855c9d819b09) -
15
+ Support sharded routing for collab edit socket connections
16
+
3
17
  ## 17.3.0
4
18
 
5
19
  ### Minor Changes
@@ -46,6 +46,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
46
46
  param: 'contentPlaceholder',
47
47
  defaultValue: false
48
48
  }),
49
+ // Added 20-01-2026
50
+ cc_editor_lcm_readonly_initial: (0, _experimentBuilders.createBooleanExperiment)({
51
+ productKeys: {
52
+ confluence: 'cc_editor_lcm_readonly_initial'
53
+ },
54
+ param: 'isEnabled',
55
+ defaultValue: false
56
+ }),
49
57
  // Added 02-12-2025
50
58
  cc_fix_hydration_ttvc: (0, _experimentBuilders.createBooleanExperiment)({
51
59
  productKeys: {
@@ -1049,6 +1057,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1049
1057
  param: 'isEnabled',
1050
1058
  defaultValue: false
1051
1059
  }),
1060
+ // Added 2025-01-23
1061
+ platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
1062
+ productKeys: {
1063
+ confluence: 'platform_editor_to_use_pmr_for_collab_edit_none_ic'
1064
+ },
1065
+ param: 'isEnabled',
1066
+ defaultValue: false
1067
+ }),
1052
1068
  // Added 2025-12-12
1053
1069
  platform_editor_toolbar_delay_render_fix: (0, _experimentBuilders.createBooleanExperiment)({
1054
1070
  productKeys: {
@@ -40,6 +40,14 @@ export const editorExperimentsConfig = {
40
40
  param: 'contentPlaceholder',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 20-01-2026
44
+ cc_editor_lcm_readonly_initial: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'cc_editor_lcm_readonly_initial'
47
+ },
48
+ param: 'isEnabled',
49
+ defaultValue: false
50
+ }),
43
51
  // Added 02-12-2025
44
52
  cc_fix_hydration_ttvc: createBooleanExperiment({
45
53
  productKeys: {
@@ -1043,6 +1051,14 @@ export const editorExperimentsConfig = {
1043
1051
  param: 'isEnabled',
1044
1052
  defaultValue: false
1045
1053
  }),
1054
+ // Added 2025-01-23
1055
+ platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1056
+ productKeys: {
1057
+ confluence: 'platform_editor_to_use_pmr_for_collab_edit_none_ic'
1058
+ },
1059
+ param: 'isEnabled',
1060
+ defaultValue: false
1061
+ }),
1046
1062
  // Added 2025-12-12
1047
1063
  platform_editor_toolbar_delay_render_fix: createBooleanExperiment({
1048
1064
  productKeys: {
@@ -40,6 +40,14 @@ export var editorExperimentsConfig = {
40
40
  param: 'contentPlaceholder',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 20-01-2026
44
+ cc_editor_lcm_readonly_initial: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'cc_editor_lcm_readonly_initial'
47
+ },
48
+ param: 'isEnabled',
49
+ defaultValue: false
50
+ }),
43
51
  // Added 02-12-2025
44
52
  cc_fix_hydration_ttvc: createBooleanExperiment({
45
53
  productKeys: {
@@ -1043,6 +1051,14 @@ export var editorExperimentsConfig = {
1043
1051
  param: 'isEnabled',
1044
1052
  defaultValue: false
1045
1053
  }),
1054
+ // Added 2025-01-23
1055
+ platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1056
+ productKeys: {
1057
+ confluence: 'platform_editor_to_use_pmr_for_collab_edit_none_ic'
1058
+ },
1059
+ param: 'isEnabled',
1060
+ defaultValue: false
1061
+ }),
1046
1062
  // Added 2025-12-12
1047
1063
  platform_editor_toolbar_delay_render_fix: createBooleanExperiment({
1048
1064
  productKeys: {
@@ -76,6 +76,12 @@ export declare const editorExperimentsConfig: {
76
76
  productKeys?: ProductKeys;
77
77
  typeGuard: IsBooleanType;
78
78
  };
79
+ cc_editor_lcm_readonly_initial: {
80
+ defaultValue: boolean;
81
+ param: string;
82
+ productKeys?: ProductKeys;
83
+ typeGuard: IsBooleanType;
84
+ };
79
85
  cc_fix_hydration_ttvc: {
80
86
  defaultValue: boolean;
81
87
  param: string;
@@ -779,6 +785,12 @@ export declare const editorExperimentsConfig: {
779
785
  productKeys?: ProductKeys;
780
786
  typeGuard: IsBooleanType;
781
787
  };
788
+ platform_editor_to_use_pmr_for_collab_edit_none_ic: {
789
+ defaultValue: boolean;
790
+ param: string;
791
+ productKeys?: ProductKeys;
792
+ typeGuard: IsBooleanType;
793
+ };
782
794
  'test-new-experiments-package': {
783
795
  defaultValue: boolean;
784
796
  param: string;
@@ -76,6 +76,12 @@ export declare const editorExperimentsConfig: {
76
76
  productKeys?: ProductKeys;
77
77
  typeGuard: IsBooleanType;
78
78
  };
79
+ cc_editor_lcm_readonly_initial: {
80
+ defaultValue: boolean;
81
+ param: string;
82
+ productKeys?: ProductKeys;
83
+ typeGuard: IsBooleanType;
84
+ };
79
85
  cc_fix_hydration_ttvc: {
80
86
  defaultValue: boolean;
81
87
  param: string;
@@ -779,6 +785,12 @@ export declare const editorExperimentsConfig: {
779
785
  productKeys?: ProductKeys;
780
786
  typeGuard: IsBooleanType;
781
787
  };
788
+ platform_editor_to_use_pmr_for_collab_edit_none_ic: {
789
+ defaultValue: boolean;
790
+ param: string;
791
+ productKeys?: ProductKeys;
792
+ typeGuard: IsBooleanType;
793
+ };
782
794
  'test-new-experiments-package': {
783
795
  defaultValue: boolean;
784
796
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.3.0",
3
+ "version": "17.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",