@atlaskit/tmp-editor-statsig 88.1.1 → 88.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,15 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 88.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`64a45bf9306e9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/64a45bf9306e9) -
8
+ [ux] [EDITOR-7024] update the ADF schema behind platform_editor_lovability_text_bg_color
9
+ experiment such that textColor and backgroundColor can coexist
10
+ - [`8cb3cdbbc5467`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8cb3cdbbc5467) -
11
+ Fix TypeError in getExtensionLozengeData when macroMetadata.placeholder is not an array
12
+
3
13
  ## 88.1.1
4
14
 
5
15
  ### Patch Changes
@@ -2087,6 +2087,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2087
2087
  param: 'isEnabled',
2088
2088
  defaultValue: false
2089
2089
  }),
2090
+ // Added 2026-06-02
2091
+ platform_editor_macro_placeholder_array_guard: (0, _experimentBuilders.createBooleanExperiment)({
2092
+ productKeys: {
2093
+ confluence: 'platform_editor_macro_placeholder_array_guard',
2094
+ jira: 'platform_editor_macro_placeholder_array_guard'
2095
+ },
2096
+ param: 'isEnabled',
2097
+ defaultValue: true
2098
+ }),
2090
2099
  // Added 2026-04-14
2091
2100
  platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
2092
2101
  productKeys: {
@@ -2315,5 +2324,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2315
2324
  },
2316
2325
  param: 'isEnabled',
2317
2326
  defaultValue: false
2327
+ }),
2328
+ // Added 2026-06-01
2329
+ platform_editor_lovability_text_bg_color: (0, _experimentBuilders.createBooleanExperiment)({
2330
+ productKeys: {
2331
+ confluence: 'platform_editor_lovability_text_bg_color',
2332
+ jira: 'platform_editor_lovability_text_bg_color'
2333
+ },
2334
+ param: 'isEnabled',
2335
+ defaultValue: false
2318
2336
  })
2319
2337
  };
@@ -2081,6 +2081,15 @@ export const editorExperimentsConfig = {
2081
2081
  param: 'isEnabled',
2082
2082
  defaultValue: false
2083
2083
  }),
2084
+ // Added 2026-06-02
2085
+ platform_editor_macro_placeholder_array_guard: createBooleanExperiment({
2086
+ productKeys: {
2087
+ confluence: 'platform_editor_macro_placeholder_array_guard',
2088
+ jira: 'platform_editor_macro_placeholder_array_guard'
2089
+ },
2090
+ param: 'isEnabled',
2091
+ defaultValue: true
2092
+ }),
2084
2093
  // Added 2026-04-14
2085
2094
  platform_editor_ai_rename_add_polish: createBooleanExperiment({
2086
2095
  productKeys: {
@@ -2309,5 +2318,14 @@ export const editorExperimentsConfig = {
2309
2318
  },
2310
2319
  param: 'isEnabled',
2311
2320
  defaultValue: false
2321
+ }),
2322
+ // Added 2026-06-01
2323
+ platform_editor_lovability_text_bg_color: createBooleanExperiment({
2324
+ productKeys: {
2325
+ confluence: 'platform_editor_lovability_text_bg_color',
2326
+ jira: 'platform_editor_lovability_text_bg_color'
2327
+ },
2328
+ param: 'isEnabled',
2329
+ defaultValue: false
2312
2330
  })
2313
2331
  };
@@ -2081,6 +2081,15 @@ export var editorExperimentsConfig = {
2081
2081
  param: 'isEnabled',
2082
2082
  defaultValue: false
2083
2083
  }),
2084
+ // Added 2026-06-02
2085
+ platform_editor_macro_placeholder_array_guard: createBooleanExperiment({
2086
+ productKeys: {
2087
+ confluence: 'platform_editor_macro_placeholder_array_guard',
2088
+ jira: 'platform_editor_macro_placeholder_array_guard'
2089
+ },
2090
+ param: 'isEnabled',
2091
+ defaultValue: true
2092
+ }),
2084
2093
  // Added 2026-04-14
2085
2094
  platform_editor_ai_rename_add_polish: createBooleanExperiment({
2086
2095
  productKeys: {
@@ -2309,5 +2318,14 @@ export var editorExperimentsConfig = {
2309
2318
  },
2310
2319
  param: 'isEnabled',
2311
2320
  defaultValue: false
2321
+ }),
2322
+ // Added 2026-06-01
2323
+ platform_editor_lovability_text_bg_color: createBooleanExperiment({
2324
+ productKeys: {
2325
+ confluence: 'platform_editor_lovability_text_bg_color',
2326
+ jira: 'platform_editor_lovability_text_bg_color'
2327
+ },
2328
+ param: 'isEnabled',
2329
+ defaultValue: false
2312
2330
  })
2313
2331
  };
@@ -1537,6 +1537,12 @@ export declare const editorExperimentsConfig: {
1537
1537
  productKeys?: ProductKeys;
1538
1538
  typeGuard: IsBooleanType;
1539
1539
  };
1540
+ platform_editor_macro_placeholder_array_guard: {
1541
+ defaultValue: boolean;
1542
+ param: string;
1543
+ productKeys?: ProductKeys;
1544
+ typeGuard: IsBooleanType;
1545
+ };
1540
1546
  platform_editor_ai_rename_add_polish: {
1541
1547
  defaultValue: boolean;
1542
1548
  param: string;
@@ -1694,5 +1700,11 @@ export declare const editorExperimentsConfig: {
1694
1700
  productKeys?: ProductKeys;
1695
1701
  typeGuard: IsBooleanType;
1696
1702
  };
1703
+ platform_editor_lovability_text_bg_color: {
1704
+ defaultValue: boolean;
1705
+ param: string;
1706
+ productKeys?: ProductKeys;
1707
+ typeGuard: IsBooleanType;
1708
+ };
1697
1709
  };
1698
1710
  export {};
@@ -1537,6 +1537,12 @@ export declare const editorExperimentsConfig: {
1537
1537
  productKeys?: ProductKeys;
1538
1538
  typeGuard: IsBooleanType;
1539
1539
  };
1540
+ platform_editor_macro_placeholder_array_guard: {
1541
+ defaultValue: boolean;
1542
+ param: string;
1543
+ productKeys?: ProductKeys;
1544
+ typeGuard: IsBooleanType;
1545
+ };
1540
1546
  platform_editor_ai_rename_add_polish: {
1541
1547
  defaultValue: boolean;
1542
1548
  param: string;
@@ -1694,5 +1700,11 @@ export declare const editorExperimentsConfig: {
1694
1700
  productKeys?: ProductKeys;
1695
1701
  typeGuard: IsBooleanType;
1696
1702
  };
1703
+ platform_editor_lovability_text_bg_color: {
1704
+ defaultValue: boolean;
1705
+ param: string;
1706
+ productKeys?: ProductKeys;
1707
+ typeGuard: IsBooleanType;
1708
+ };
1697
1709
  };
1698
1710
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "88.1.1",
3
+ "version": "88.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",