@atlaskit/tmp-editor-statsig 71.0.0 → 71.1.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
+ ## 71.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`251c0e140edf6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/251c0e140edf6) -
8
+ [EDITOR-6540] AI-mate error screen dismissal incorrectly triggers discard confirmation, bug fix.
9
+
10
+ ## 71.0.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [`0281a1c2161a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0281a1c2161a9) -
15
+ [ux] cleanup platform_editor_table_remove_last_cell_decoration
16
+
3
17
  ## 71.0.0
4
18
 
5
19
  ### Major Changes
@@ -1612,14 +1612,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1612
1612
  param: 'isEnabled',
1613
1613
  defaultValue: false
1614
1614
  }),
1615
- // Added 2026-03-07
1616
- platform_editor_table_remove_last_cell_decoration: (0, _experimentBuilders.createBooleanExperiment)({
1617
- productKeys: {
1618
- confluence: 'platform_editor_table_remove_last_cell_decoration'
1619
- },
1620
- param: 'isEnabled',
1621
- defaultValue: false
1622
- }),
1623
1615
  platform_editor_small_font_size: (0, _experimentBuilders.createBooleanExperiment)({
1624
1616
  productKeys: {
1625
1617
  confluence: 'platform_editor_small_font_size',
@@ -2049,5 +2041,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2049
2041
  },
2050
2042
  param: 'isEnabled',
2051
2043
  defaultValue: false
2044
+ }),
2045
+ // Added 2026-04-24
2046
+ platform_editor_ai_fix_error_discard_screen: (0, _experimentBuilders.createBooleanExperiment)({
2047
+ productKeys: {
2048
+ confluence: 'platform_editor_ai_fix_error_discard_screen'
2049
+ },
2050
+ param: 'isEnabled',
2051
+ defaultValue: false
2052
2052
  })
2053
2053
  };
@@ -1606,14 +1606,6 @@ export const editorExperimentsConfig = {
1606
1606
  param: 'isEnabled',
1607
1607
  defaultValue: false
1608
1608
  }),
1609
- // Added 2026-03-07
1610
- platform_editor_table_remove_last_cell_decoration: createBooleanExperiment({
1611
- productKeys: {
1612
- confluence: 'platform_editor_table_remove_last_cell_decoration'
1613
- },
1614
- param: 'isEnabled',
1615
- defaultValue: false
1616
- }),
1617
1609
  platform_editor_small_font_size: createBooleanExperiment({
1618
1610
  productKeys: {
1619
1611
  confluence: 'platform_editor_small_font_size',
@@ -2043,5 +2035,13 @@ export const editorExperimentsConfig = {
2043
2035
  },
2044
2036
  param: 'isEnabled',
2045
2037
  defaultValue: false
2038
+ }),
2039
+ // Added 2026-04-24
2040
+ platform_editor_ai_fix_error_discard_screen: createBooleanExperiment({
2041
+ productKeys: {
2042
+ confluence: 'platform_editor_ai_fix_error_discard_screen'
2043
+ },
2044
+ param: 'isEnabled',
2045
+ defaultValue: false
2046
2046
  })
2047
2047
  };
@@ -1606,14 +1606,6 @@ export var editorExperimentsConfig = {
1606
1606
  param: 'isEnabled',
1607
1607
  defaultValue: false
1608
1608
  }),
1609
- // Added 2026-03-07
1610
- platform_editor_table_remove_last_cell_decoration: createBooleanExperiment({
1611
- productKeys: {
1612
- confluence: 'platform_editor_table_remove_last_cell_decoration'
1613
- },
1614
- param: 'isEnabled',
1615
- defaultValue: false
1616
- }),
1617
1609
  platform_editor_small_font_size: createBooleanExperiment({
1618
1610
  productKeys: {
1619
1611
  confluence: 'platform_editor_small_font_size',
@@ -2043,5 +2035,13 @@ export var editorExperimentsConfig = {
2043
2035
  },
2044
2036
  param: 'isEnabled',
2045
2037
  defaultValue: false
2038
+ }),
2039
+ // Added 2026-04-24
2040
+ platform_editor_ai_fix_error_discard_screen: createBooleanExperiment({
2041
+ productKeys: {
2042
+ confluence: 'platform_editor_ai_fix_error_discard_screen'
2043
+ },
2044
+ param: 'isEnabled',
2045
+ defaultValue: false
2046
2046
  })
2047
2047
  };
@@ -1224,12 +1224,6 @@ export declare const editorExperimentsConfig: {
1224
1224
  productKeys?: ProductKeys;
1225
1225
  typeGuard: IsBooleanType;
1226
1226
  };
1227
- platform_editor_table_remove_last_cell_decoration: {
1228
- defaultValue: boolean;
1229
- param: string;
1230
- productKeys?: ProductKeys;
1231
- typeGuard: IsBooleanType;
1232
- };
1233
1227
  platform_editor_small_font_size: {
1234
1228
  defaultValue: boolean;
1235
1229
  param: string;
@@ -1506,5 +1500,11 @@ export declare const editorExperimentsConfig: {
1506
1500
  productKeys?: ProductKeys;
1507
1501
  typeGuard: IsBooleanType;
1508
1502
  };
1503
+ platform_editor_ai_fix_error_discard_screen: {
1504
+ defaultValue: boolean;
1505
+ param: string;
1506
+ productKeys?: ProductKeys;
1507
+ typeGuard: IsBooleanType;
1508
+ };
1509
1509
  };
1510
1510
  export {};
@@ -1224,12 +1224,6 @@ export declare const editorExperimentsConfig: {
1224
1224
  productKeys?: ProductKeys;
1225
1225
  typeGuard: IsBooleanType;
1226
1226
  };
1227
- platform_editor_table_remove_last_cell_decoration: {
1228
- defaultValue: boolean;
1229
- param: string;
1230
- productKeys?: ProductKeys;
1231
- typeGuard: IsBooleanType;
1232
- };
1233
1227
  platform_editor_small_font_size: {
1234
1228
  defaultValue: boolean;
1235
1229
  param: string;
@@ -1506,5 +1500,11 @@ export declare const editorExperimentsConfig: {
1506
1500
  productKeys?: ProductKeys;
1507
1501
  typeGuard: IsBooleanType;
1508
1502
  };
1503
+ platform_editor_ai_fix_error_discard_screen: {
1504
+ defaultValue: boolean;
1505
+ param: string;
1506
+ productKeys?: ProductKeys;
1507
+ typeGuard: IsBooleanType;
1508
+ };
1509
1509
  };
1510
1510
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "71.0.0",
3
+ "version": "71.1.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",