@atlaskit/tmp-editor-statsig 52.0.0 → 52.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,25 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 52.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`89c9f0b61cb49`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/89c9f0b61cb49) -
8
+ ENGHEALTH-49654 add aria label to rovo inline chat dialog
9
+
10
+ ## 52.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`91f722df43475`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/91f722df43475) -
15
+ [ux] [EDITOR-5815] the fix adds a check for column width changes so that we update the table on
16
+ click of 'distribute columns' button. this is gated behind the
17
+ `platform_editor_lovability_distribute_column_fix` experiment.
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+
3
23
  ## 52.0.0
4
24
 
5
25
  ### Major Changes
@@ -1714,6 +1714,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1714
1714
  param: 'isEnabled',
1715
1715
  defaultValue: false
1716
1716
  }),
1717
+ // Added 2026-04-01
1718
+ platform_editor_rovo_inline_chat_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
1719
+ productKeys: {
1720
+ confluence: 'platform_editor_rovo_inline_chat_aria_label'
1721
+ },
1722
+ param: 'isEnabled',
1723
+ defaultValue: false
1724
+ }),
1717
1725
  // Added 2026-03-11
1718
1726
  platform_editor_are_nodes_equal_ignore_mark_order: (0, _experimentBuilders.createBooleanExperiment)({
1719
1727
  productKeys: {
@@ -1846,5 +1854,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1846
1854
  },
1847
1855
  param: 'isEnabled',
1848
1856
  defaultValue: false
1857
+ }),
1858
+ // Added 2026-03-31
1859
+ platform_editor_lovability_distribute_column_fix: (0, _experimentBuilders.createBooleanExperiment)({
1860
+ productKeys: {
1861
+ confluence: 'platform_editor_lovability_distribute_column_fix'
1862
+ },
1863
+ param: 'isEnabled',
1864
+ defaultValue: false
1849
1865
  })
1850
1866
  };
@@ -1708,6 +1708,14 @@ export const editorExperimentsConfig = {
1708
1708
  param: 'isEnabled',
1709
1709
  defaultValue: false
1710
1710
  }),
1711
+ // Added 2026-04-01
1712
+ platform_editor_rovo_inline_chat_aria_label: createBooleanExperiment({
1713
+ productKeys: {
1714
+ confluence: 'platform_editor_rovo_inline_chat_aria_label'
1715
+ },
1716
+ param: 'isEnabled',
1717
+ defaultValue: false
1718
+ }),
1711
1719
  // Added 2026-03-11
1712
1720
  platform_editor_are_nodes_equal_ignore_mark_order: createBooleanExperiment({
1713
1721
  productKeys: {
@@ -1840,5 +1848,13 @@ export const editorExperimentsConfig = {
1840
1848
  },
1841
1849
  param: 'isEnabled',
1842
1850
  defaultValue: false
1851
+ }),
1852
+ // Added 2026-03-31
1853
+ platform_editor_lovability_distribute_column_fix: createBooleanExperiment({
1854
+ productKeys: {
1855
+ confluence: 'platform_editor_lovability_distribute_column_fix'
1856
+ },
1857
+ param: 'isEnabled',
1858
+ defaultValue: false
1843
1859
  })
1844
1860
  };
@@ -1708,6 +1708,14 @@ export var editorExperimentsConfig = {
1708
1708
  param: 'isEnabled',
1709
1709
  defaultValue: false
1710
1710
  }),
1711
+ // Added 2026-04-01
1712
+ platform_editor_rovo_inline_chat_aria_label: createBooleanExperiment({
1713
+ productKeys: {
1714
+ confluence: 'platform_editor_rovo_inline_chat_aria_label'
1715
+ },
1716
+ param: 'isEnabled',
1717
+ defaultValue: false
1718
+ }),
1711
1719
  // Added 2026-03-11
1712
1720
  platform_editor_are_nodes_equal_ignore_mark_order: createBooleanExperiment({
1713
1721
  productKeys: {
@@ -1840,5 +1848,13 @@ export var editorExperimentsConfig = {
1840
1848
  },
1841
1849
  param: 'isEnabled',
1842
1850
  defaultValue: false
1851
+ }),
1852
+ // Added 2026-03-31
1853
+ platform_editor_lovability_distribute_column_fix: createBooleanExperiment({
1854
+ productKeys: {
1855
+ confluence: 'platform_editor_lovability_distribute_column_fix'
1856
+ },
1857
+ param: 'isEnabled',
1858
+ defaultValue: false
1843
1859
  })
1844
1860
  };
@@ -529,6 +529,12 @@ export declare const editorExperimentsConfig: {
529
529
  productKeys?: ProductKeys;
530
530
  typeGuard: IsBooleanType;
531
531
  };
532
+ platform_editor_lovability_distribute_column_fix: {
533
+ defaultValue: boolean;
534
+ param: string;
535
+ productKeys?: ProductKeys;
536
+ typeGuard: IsBooleanType;
537
+ };
532
538
  platform_editor_media_error_analytics: {
533
539
  defaultValue: boolean;
534
540
  param: string;
@@ -1272,6 +1278,12 @@ export declare const editorExperimentsConfig: {
1272
1278
  productKeys?: ProductKeys;
1273
1279
  typeGuard: IsBooleanType;
1274
1280
  };
1281
+ platform_editor_rovo_inline_chat_aria_label: {
1282
+ defaultValue: boolean;
1283
+ param: string;
1284
+ productKeys?: ProductKeys;
1285
+ typeGuard: IsBooleanType;
1286
+ };
1275
1287
  platform_editor_are_nodes_equal_ignore_mark_order: {
1276
1288
  defaultValue: boolean;
1277
1289
  param: string;
@@ -529,6 +529,12 @@ export declare const editorExperimentsConfig: {
529
529
  productKeys?: ProductKeys;
530
530
  typeGuard: IsBooleanType;
531
531
  };
532
+ platform_editor_lovability_distribute_column_fix: {
533
+ defaultValue: boolean;
534
+ param: string;
535
+ productKeys?: ProductKeys;
536
+ typeGuard: IsBooleanType;
537
+ };
532
538
  platform_editor_media_error_analytics: {
533
539
  defaultValue: boolean;
534
540
  param: string;
@@ -1272,6 +1278,12 @@ export declare const editorExperimentsConfig: {
1272
1278
  productKeys?: ProductKeys;
1273
1279
  typeGuard: IsBooleanType;
1274
1280
  };
1281
+ platform_editor_rovo_inline_chat_aria_label: {
1282
+ defaultValue: boolean;
1283
+ param: string;
1284
+ productKeys?: ProductKeys;
1285
+ typeGuard: IsBooleanType;
1286
+ };
1275
1287
  platform_editor_are_nodes_equal_ignore_mark_order: {
1276
1288
  defaultValue: boolean;
1277
1289
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "52.0.0",
3
+ "version": "52.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",
@@ -34,7 +34,7 @@
34
34
  "atlaskit:src": "src/index.ts",
35
35
  "dependencies": {
36
36
  "@atlaskit/feature-gate-js-client": "^5.5.0",
37
- "@atlaskit/react-ufo": "^5.8.0",
37
+ "@atlaskit/react-ufo": "^5.10.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {