@atlaskit/tmp-editor-statsig 9.28.0 → 10.0.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 10.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`e2bb51245dcec`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e2bb51245dcec) -
8
+ ED-28774 add native editor anchor support
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 9.29.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`01301aa6646c4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/01301aa6646c4) -
19
+ Add advanced codeblocks experiment for jira.
20
+
3
21
  ## 9.28.0
4
22
 
5
23
  ### Minor Changes
@@ -367,6 +367,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
367
367
  param: 'isEnabled',
368
368
  defaultValue: false
369
369
  }),
370
+ // Added 2025-08-14
371
+ platform_editor_jira_advanced_code_blocks: (0, _experimentBuilders.createBooleanExperiment)({
372
+ productKeys: {
373
+ jira: 'platform_editor_jira_advanced_code_blocks'
374
+ },
375
+ param: 'isEnabled',
376
+ defaultValue: false
377
+ }),
370
378
  // Added 2025-07-08 - Jira work sync description comment summary
371
379
  'jira-work-sync-desc-comment-summary': (0, _experimentBuilders.createBooleanExperiment)({
372
380
  productKeys: {
@@ -669,6 +677,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
669
677
  defaultValue: false
670
678
  }),
671
679
  // Added 2025-08-05
680
+ platform_editor_native_anchor_support: (0, _experimentBuilders.createBooleanExperiment)({
681
+ productKeys: {
682
+ confluence: 'platform_editor_native_anchor_support'
683
+ },
684
+ param: 'isEnabled',
685
+ defaultValue: false
686
+ }),
687
+ // Added 2025-08-05
672
688
  platform_editor_tables_scaling_css: (0, _experimentBuilders.createBooleanExperiment)({
673
689
  productKeys: {
674
690
  confluence: 'platform_editor_tables_scaling_css'
@@ -361,6 +361,14 @@ export const editorExperimentsConfig = {
361
361
  param: 'isEnabled',
362
362
  defaultValue: false
363
363
  }),
364
+ // Added 2025-08-14
365
+ platform_editor_jira_advanced_code_blocks: createBooleanExperiment({
366
+ productKeys: {
367
+ jira: 'platform_editor_jira_advanced_code_blocks'
368
+ },
369
+ param: 'isEnabled',
370
+ defaultValue: false
371
+ }),
364
372
  // Added 2025-07-08 - Jira work sync description comment summary
365
373
  'jira-work-sync-desc-comment-summary': createBooleanExperiment({
366
374
  productKeys: {
@@ -663,6 +671,14 @@ export const editorExperimentsConfig = {
663
671
  defaultValue: false
664
672
  }),
665
673
  // Added 2025-08-05
674
+ platform_editor_native_anchor_support: createBooleanExperiment({
675
+ productKeys: {
676
+ confluence: 'platform_editor_native_anchor_support'
677
+ },
678
+ param: 'isEnabled',
679
+ defaultValue: false
680
+ }),
681
+ // Added 2025-08-05
666
682
  platform_editor_tables_scaling_css: createBooleanExperiment({
667
683
  productKeys: {
668
684
  confluence: 'platform_editor_tables_scaling_css'
@@ -361,6 +361,14 @@ export var editorExperimentsConfig = {
361
361
  param: 'isEnabled',
362
362
  defaultValue: false
363
363
  }),
364
+ // Added 2025-08-14
365
+ platform_editor_jira_advanced_code_blocks: createBooleanExperiment({
366
+ productKeys: {
367
+ jira: 'platform_editor_jira_advanced_code_blocks'
368
+ },
369
+ param: 'isEnabled',
370
+ defaultValue: false
371
+ }),
364
372
  // Added 2025-07-08 - Jira work sync description comment summary
365
373
  'jira-work-sync-desc-comment-summary': createBooleanExperiment({
366
374
  productKeys: {
@@ -663,6 +671,14 @@ export var editorExperimentsConfig = {
663
671
  defaultValue: false
664
672
  }),
665
673
  // Added 2025-08-05
674
+ platform_editor_native_anchor_support: createBooleanExperiment({
675
+ productKeys: {
676
+ confluence: 'platform_editor_native_anchor_support'
677
+ },
678
+ param: 'isEnabled',
679
+ defaultValue: false
680
+ }),
681
+ // Added 2025-08-05
666
682
  platform_editor_tables_scaling_css: createBooleanExperiment({
667
683
  productKeys: {
668
684
  confluence: 'platform_editor_tables_scaling_css'
@@ -269,6 +269,12 @@ export declare const editorExperimentsConfig: {
269
269
  productKeys?: import("./types").ProductKeys;
270
270
  param: string;
271
271
  };
272
+ platform_editor_jira_advanced_code_blocks: {
273
+ typeGuard: typeof import("./type-guards").isBoolean;
274
+ defaultValue: boolean;
275
+ productKeys?: import("./types").ProductKeys;
276
+ param: string;
277
+ };
272
278
  'jira-work-sync-desc-comment-summary': {
273
279
  typeGuard: typeof import("./type-guards").isBoolean;
274
280
  defaultValue: boolean;
@@ -495,6 +501,12 @@ export declare const editorExperimentsConfig: {
495
501
  productKeys?: import("./types").ProductKeys;
496
502
  param: string;
497
503
  };
504
+ platform_editor_native_anchor_support: {
505
+ typeGuard: typeof import("./type-guards").isBoolean;
506
+ defaultValue: boolean;
507
+ productKeys?: import("./types").ProductKeys;
508
+ param: string;
509
+ };
498
510
  platform_editor_tables_scaling_css: {
499
511
  typeGuard: typeof import("./type-guards").isBoolean;
500
512
  defaultValue: boolean;
@@ -269,6 +269,12 @@ export declare const editorExperimentsConfig: {
269
269
  productKeys?: import("./types").ProductKeys;
270
270
  param: string;
271
271
  };
272
+ platform_editor_jira_advanced_code_blocks: {
273
+ typeGuard: typeof import("./type-guards").isBoolean;
274
+ defaultValue: boolean;
275
+ productKeys?: import("./types").ProductKeys;
276
+ param: string;
277
+ };
272
278
  'jira-work-sync-desc-comment-summary': {
273
279
  typeGuard: typeof import("./type-guards").isBoolean;
274
280
  defaultValue: boolean;
@@ -495,6 +501,12 @@ export declare const editorExperimentsConfig: {
495
501
  productKeys?: import("./types").ProductKeys;
496
502
  param: string;
497
503
  };
504
+ platform_editor_native_anchor_support: {
505
+ typeGuard: typeof import("./type-guards").isBoolean;
506
+ defaultValue: boolean;
507
+ productKeys?: import("./types").ProductKeys;
508
+ param: string;
509
+ };
498
510
  platform_editor_tables_scaling_css: {
499
511
  typeGuard: typeof import("./type-guards").isBoolean;
500
512
  defaultValue: boolean;
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/editor-experiments-test-utils.js",
6
6
  "types": "../dist/types/editor-experiments-test-utils.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/editor-experiments-test-utils.d.ts"
11
11
  ]
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/exp-val-equals.js",
6
6
  "types": "../dist/types/exp-val-equals.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/exp-val-equals.d.ts"
11
11
  ]
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/exp-val-equals-no-exposure.js",
6
6
  "types": "../dist/types/exp-val-equals-no-exposure.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/exp-val-equals-no-exposure.d.ts"
11
11
  ]
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/expVal.js",
6
6
  "types": "../dist/types/expVal.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/expVal.d.ts"
11
11
  ]
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/experiments.js",
6
6
  "types": "../dist/types/experiments.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/experiments.d.ts"
11
11
  ]
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/experiments-config.js",
6
6
  "types": "../dist/types/experiments-config.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/experiments-config.d.ts"
11
11
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "9.28.0",
3
+ "version": "10.0.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",
@@ -5,7 +5,7 @@
5
5
  "module:es2019": "../dist/es2019/setup.js",
6
6
  "types": "../dist/types/setup.d.ts",
7
7
  "typesVersions": {
8
- ">=4.5 <5.4": {
8
+ ">=4.5 <5.9": {
9
9
  "*": [
10
10
  "../dist/types-ts4.5/setup.d.ts"
11
11
  ]