@atlaskit/tmp-editor-statsig 11.0.0 → 11.2.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
+ ## 11.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`3d41d42ada6d5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d41d42ada6d5) -
8
+ [ED-28600] add new experiment for A11Y violation fixes
9
+
10
+ ## 11.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`0412437292a6d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0412437292a6d) -
15
+ Switches linking changes for Preview Panel from FG to an experiment.
16
+
3
17
  ## 11.0.0
4
18
 
5
19
  ### Major Changes
@@ -538,6 +538,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
538
538
  param: 'isEnabled',
539
539
  defaultValue: false
540
540
  }),
541
+ // Added 2025-08-18
542
+ platform_editor_preview_panel_linking_exp: (0, _experimentBuilders.createBooleanExperiment)({
543
+ productKeys: {
544
+ confluence: 'platform_editor_preview_panel_linking_exp',
545
+ jira: 'platform_editor_preview_panel_linking_exp'
546
+ },
547
+ param: 'isEnabled',
548
+ defaultValue: false
549
+ }),
541
550
  // Added 2025--8-05
542
551
  platform_editor_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
543
552
  productKeys: {
@@ -701,5 +710,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
701
710
  },
702
711
  param: 'isEnabled',
703
712
  defaultValue: false
713
+ }),
714
+ // Added 2025-08-18
715
+ platform_editor_find_replace_a11y_fixes: (0, _experimentBuilders.createBooleanExperiment)({
716
+ productKeys: {
717
+ confluence: 'platform_editor_find_replace_a11y_fixes'
718
+ },
719
+ param: 'isEnabled',
720
+ defaultValue: false
704
721
  })
705
722
  };
@@ -532,6 +532,15 @@ export const editorExperimentsConfig = {
532
532
  param: 'isEnabled',
533
533
  defaultValue: false
534
534
  }),
535
+ // Added 2025-08-18
536
+ platform_editor_preview_panel_linking_exp: createBooleanExperiment({
537
+ productKeys: {
538
+ confluence: 'platform_editor_preview_panel_linking_exp',
539
+ jira: 'platform_editor_preview_panel_linking_exp'
540
+ },
541
+ param: 'isEnabled',
542
+ defaultValue: false
543
+ }),
535
544
  // Added 2025--8-05
536
545
  platform_editor_block_menu: createBooleanExperiment({
537
546
  productKeys: {
@@ -695,5 +704,13 @@ export const editorExperimentsConfig = {
695
704
  },
696
705
  param: 'isEnabled',
697
706
  defaultValue: false
707
+ }),
708
+ // Added 2025-08-18
709
+ platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
710
+ productKeys: {
711
+ confluence: 'platform_editor_find_replace_a11y_fixes'
712
+ },
713
+ param: 'isEnabled',
714
+ defaultValue: false
698
715
  })
699
716
  };
@@ -532,6 +532,15 @@ export var editorExperimentsConfig = {
532
532
  param: 'isEnabled',
533
533
  defaultValue: false
534
534
  }),
535
+ // Added 2025-08-18
536
+ platform_editor_preview_panel_linking_exp: createBooleanExperiment({
537
+ productKeys: {
538
+ confluence: 'platform_editor_preview_panel_linking_exp',
539
+ jira: 'platform_editor_preview_panel_linking_exp'
540
+ },
541
+ param: 'isEnabled',
542
+ defaultValue: false
543
+ }),
535
544
  // Added 2025--8-05
536
545
  platform_editor_block_menu: createBooleanExperiment({
537
546
  productKeys: {
@@ -695,5 +704,13 @@ export var editorExperimentsConfig = {
695
704
  },
696
705
  param: 'isEnabled',
697
706
  defaultValue: false
707
+ }),
708
+ // Added 2025-08-18
709
+ platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
710
+ productKeys: {
711
+ confluence: 'platform_editor_find_replace_a11y_fixes'
712
+ },
713
+ param: 'isEnabled',
714
+ defaultValue: false
698
715
  })
699
716
  };
@@ -398,6 +398,12 @@ export declare const editorExperimentsConfig: {
398
398
  productKeys?: import("./types").ProductKeys;
399
399
  param: string;
400
400
  };
401
+ platform_editor_preview_panel_linking_exp: {
402
+ typeGuard: typeof import("./type-guards").isBoolean;
403
+ defaultValue: boolean;
404
+ productKeys?: import("./types").ProductKeys;
405
+ param: string;
406
+ };
401
407
  platform_editor_block_menu: {
402
408
  typeGuard: typeof import("./type-guards").isBoolean;
403
409
  defaultValue: boolean;
@@ -520,4 +526,10 @@ export declare const editorExperimentsConfig: {
520
526
  productKeys?: import("./types").ProductKeys;
521
527
  param: string;
522
528
  };
529
+ platform_editor_find_replace_a11y_fixes: {
530
+ typeGuard: typeof import("./type-guards").isBoolean;
531
+ defaultValue: boolean;
532
+ productKeys?: import("./types").ProductKeys;
533
+ param: string;
534
+ };
523
535
  };
@@ -398,6 +398,12 @@ export declare const editorExperimentsConfig: {
398
398
  productKeys?: import("./types").ProductKeys;
399
399
  param: string;
400
400
  };
401
+ platform_editor_preview_panel_linking_exp: {
402
+ typeGuard: typeof import("./type-guards").isBoolean;
403
+ defaultValue: boolean;
404
+ productKeys?: import("./types").ProductKeys;
405
+ param: string;
406
+ };
401
407
  platform_editor_block_menu: {
402
408
  typeGuard: typeof import("./type-guards").isBoolean;
403
409
  defaultValue: boolean;
@@ -520,4 +526,10 @@ export declare const editorExperimentsConfig: {
520
526
  productKeys?: import("./types").ProductKeys;
521
527
  param: string;
522
528
  };
529
+ platform_editor_find_replace_a11y_fixes: {
530
+ typeGuard: typeof import("./type-guards").isBoolean;
531
+ defaultValue: boolean;
532
+ productKeys?: import("./types").ProductKeys;
533
+ param: string;
534
+ };
523
535
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "11.0.0",
3
+ "version": "11.2.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",