@atlaskit/tmp-editor-statsig 13.12.0 → 13.13.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,25 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`0560b4dfd1361`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0560b4dfd1361) -
8
+ Experiment with disabling prosemirror rendering in SSR
9
+
10
+ ### Patch Changes
11
+
12
+ - [`b4c5701e7f2be`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b4c5701e7f2be) -
13
+ Adds a PR task to to ensure that if an override was added/removed, it was a safe change.
14
+
15
+ ## 13.12.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [`1c601de07087b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1c601de07087b) -
20
+ Fix for CLS issue in Editor Resizer Component
21
+ - Updated dependencies
22
+
3
23
  ## 13.12.0
4
24
 
5
25
  ### Minor Changes
@@ -278,6 +278,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
278
278
  param: 'isEnabled',
279
279
  defaultValue: false
280
280
  }),
281
+ // Added 2025-10-14
282
+ platform_editor_resizer_cls_fix: (0, _experimentBuilders.createBooleanExperiment)({
283
+ productKeys: {
284
+ confluence: 'platform_editor_resizer_cls_fix'
285
+ },
286
+ param: 'isEnabled',
287
+ defaultValue: false
288
+ }),
281
289
  // Added 2025-03-28
282
290
  platform_editor_ai_proactive_ai_nudge_parameters: (0, _experimentBuilders.createMultivariateExperiment)({
283
291
  productKeys: {
@@ -361,6 +369,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
361
369
  param: 'isEnabled',
362
370
  defaultValue: false
363
371
  }),
372
+ // Added 2025-10-15
373
+ platform_editor_no_ssr: (0, _experimentBuilders.createBooleanExperiment)({
374
+ productKeys: {
375
+ confluence: 'platform_editor_no_ssr'
376
+ },
377
+ param: 'isEnabled',
378
+ defaultValue: false
379
+ }),
364
380
  // Added 2025-08-14
365
381
  platform_editor_jira_advanced_code_blocks: (0, _experimentBuilders.createBooleanExperiment)({
366
382
  productKeys: {
@@ -1030,5 +1046,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1030
1046
  param: 'cohort',
1031
1047
  values: ['control', 'test1', 'test2'],
1032
1048
  defaultValue: 'control'
1049
+ }),
1050
+ // Added 2025-10-10
1051
+ platform_editor_new_list_decorations_logic: (0, _experimentBuilders.createBooleanExperiment)({
1052
+ productKeys: {
1053
+ confluence: 'platform_editor_new_list_decorations_logic'
1054
+ },
1055
+ param: 'isEnabled',
1056
+ defaultValue: false
1033
1057
  })
1034
1058
  };
@@ -272,6 +272,14 @@ export const editorExperimentsConfig = {
272
272
  param: 'isEnabled',
273
273
  defaultValue: false
274
274
  }),
275
+ // Added 2025-10-14
276
+ platform_editor_resizer_cls_fix: createBooleanExperiment({
277
+ productKeys: {
278
+ confluence: 'platform_editor_resizer_cls_fix'
279
+ },
280
+ param: 'isEnabled',
281
+ defaultValue: false
282
+ }),
275
283
  // Added 2025-03-28
276
284
  platform_editor_ai_proactive_ai_nudge_parameters: createMultivariateExperiment({
277
285
  productKeys: {
@@ -355,6 +363,14 @@ export const editorExperimentsConfig = {
355
363
  param: 'isEnabled',
356
364
  defaultValue: false
357
365
  }),
366
+ // Added 2025-10-15
367
+ platform_editor_no_ssr: createBooleanExperiment({
368
+ productKeys: {
369
+ confluence: 'platform_editor_no_ssr'
370
+ },
371
+ param: 'isEnabled',
372
+ defaultValue: false
373
+ }),
358
374
  // Added 2025-08-14
359
375
  platform_editor_jira_advanced_code_blocks: createBooleanExperiment({
360
376
  productKeys: {
@@ -1024,5 +1040,13 @@ export const editorExperimentsConfig = {
1024
1040
  param: 'cohort',
1025
1041
  values: ['control', 'test1', 'test2'],
1026
1042
  defaultValue: 'control'
1043
+ }),
1044
+ // Added 2025-10-10
1045
+ platform_editor_new_list_decorations_logic: createBooleanExperiment({
1046
+ productKeys: {
1047
+ confluence: 'platform_editor_new_list_decorations_logic'
1048
+ },
1049
+ param: 'isEnabled',
1050
+ defaultValue: false
1027
1051
  })
1028
1052
  };
@@ -272,6 +272,14 @@ export var editorExperimentsConfig = {
272
272
  param: 'isEnabled',
273
273
  defaultValue: false
274
274
  }),
275
+ // Added 2025-10-14
276
+ platform_editor_resizer_cls_fix: createBooleanExperiment({
277
+ productKeys: {
278
+ confluence: 'platform_editor_resizer_cls_fix'
279
+ },
280
+ param: 'isEnabled',
281
+ defaultValue: false
282
+ }),
275
283
  // Added 2025-03-28
276
284
  platform_editor_ai_proactive_ai_nudge_parameters: createMultivariateExperiment({
277
285
  productKeys: {
@@ -355,6 +363,14 @@ export var editorExperimentsConfig = {
355
363
  param: 'isEnabled',
356
364
  defaultValue: false
357
365
  }),
366
+ // Added 2025-10-15
367
+ platform_editor_no_ssr: createBooleanExperiment({
368
+ productKeys: {
369
+ confluence: 'platform_editor_no_ssr'
370
+ },
371
+ param: 'isEnabled',
372
+ defaultValue: false
373
+ }),
358
374
  // Added 2025-08-14
359
375
  platform_editor_jira_advanced_code_blocks: createBooleanExperiment({
360
376
  productKeys: {
@@ -1024,5 +1040,13 @@ export var editorExperimentsConfig = {
1024
1040
  param: 'cohort',
1025
1041
  values: ['control', 'test1', 'test2'],
1026
1042
  defaultValue: 'control'
1043
+ }),
1044
+ // Added 2025-10-10
1045
+ platform_editor_new_list_decorations_logic: createBooleanExperiment({
1046
+ productKeys: {
1047
+ confluence: 'platform_editor_new_list_decorations_logic'
1048
+ },
1049
+ param: 'isEnabled',
1050
+ defaultValue: false
1027
1051
  })
1028
1052
  };
@@ -197,6 +197,12 @@ export declare const editorExperimentsConfig: {
197
197
  param: string;
198
198
  productKeys?: import("./types").ProductKeys;
199
199
  };
200
+ platform_editor_resizer_cls_fix: {
201
+ typeGuard: typeof import("./type-guards").isBoolean;
202
+ defaultValue: boolean;
203
+ param: string;
204
+ productKeys?: import("./types").ProductKeys;
205
+ };
200
206
  platform_editor_ai_proactive_ai_nudge_parameters: {
201
207
  values: ("control" | "variant1")[];
202
208
  typeGuard: (value: unknown) => value is "control" | "variant1";
@@ -259,6 +265,12 @@ export declare const editorExperimentsConfig: {
259
265
  param: string;
260
266
  productKeys?: import("./types").ProductKeys;
261
267
  };
268
+ platform_editor_no_ssr: {
269
+ typeGuard: typeof import("./type-guards").isBoolean;
270
+ defaultValue: boolean;
271
+ param: string;
272
+ productKeys?: import("./types").ProductKeys;
273
+ };
262
274
  platform_editor_jira_advanced_code_blocks: {
263
275
  typeGuard: typeof import("./type-guards").isBoolean;
264
276
  defaultValue: boolean;
@@ -754,4 +766,10 @@ export declare const editorExperimentsConfig: {
754
766
  param: string;
755
767
  productKeys?: import("./types").ProductKeys;
756
768
  };
769
+ platform_editor_new_list_decorations_logic: {
770
+ typeGuard: typeof import("./type-guards").isBoolean;
771
+ defaultValue: boolean;
772
+ param: string;
773
+ productKeys?: import("./types").ProductKeys;
774
+ };
757
775
  };
@@ -197,6 +197,12 @@ export declare const editorExperimentsConfig: {
197
197
  param: string;
198
198
  productKeys?: import("./types").ProductKeys;
199
199
  };
200
+ platform_editor_resizer_cls_fix: {
201
+ typeGuard: typeof import("./type-guards").isBoolean;
202
+ defaultValue: boolean;
203
+ param: string;
204
+ productKeys?: import("./types").ProductKeys;
205
+ };
200
206
  platform_editor_ai_proactive_ai_nudge_parameters: {
201
207
  values: ("control" | "variant1")[];
202
208
  typeGuard: (value: unknown) => value is "control" | "variant1";
@@ -259,6 +265,12 @@ export declare const editorExperimentsConfig: {
259
265
  param: string;
260
266
  productKeys?: import("./types").ProductKeys;
261
267
  };
268
+ platform_editor_no_ssr: {
269
+ typeGuard: typeof import("./type-guards").isBoolean;
270
+ defaultValue: boolean;
271
+ param: string;
272
+ productKeys?: import("./types").ProductKeys;
273
+ };
262
274
  platform_editor_jira_advanced_code_blocks: {
263
275
  typeGuard: typeof import("./type-guards").isBoolean;
264
276
  defaultValue: boolean;
@@ -754,4 +766,10 @@ export declare const editorExperimentsConfig: {
754
766
  param: string;
755
767
  productKeys?: import("./types").ProductKeys;
756
768
  };
769
+ platform_editor_new_list_decorations_logic: {
770
+ typeGuard: typeof import("./type-guards").isBoolean;
771
+ defaultValue: boolean;
772
+ param: string;
773
+ productKeys?: import("./types").ProductKeys;
774
+ };
757
775
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.12.0",
3
+ "version": "13.13.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",
@@ -14,7 +14,8 @@
14
14
  "category": "Components"
15
15
  },
16
16
  "prTasks": [
17
- "New experiments added to tmp-editor-statsig configuration have been marked as a MINOR change"
17
+ "New experiments added to tmp-editor-statsig configuration have been marked as a MINOR change",
18
+ "I updated the table on https://hello.atlassian.net/wiki/spaces/EDITOR/pages/5257593537/Libra+testing+FG+override+expectations, tested my changes, and confirm that adding/removing the override is safe"
18
19
  ]
19
20
  },
20
21
  "repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",