@atlaskit/tmp-editor-statsig 103.0.0 → 104.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,49 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 104.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
8
+ Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
9
+
10
+ Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
11
+
12
+ Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
13
+
14
+ ```diff
15
+ - "typesVersions": {
16
+ - ">=4.5 <4.9": {
17
+ - "*": [
18
+ - "dist/types-ts4.5/*",
19
+ - "dist/types-ts4.5/index.d.ts"
20
+ - ]
21
+ - }
22
+ - },
23
+ ```
24
+
25
+ ### Minor Changes
26
+
27
+ - [`458ee17c2c8ee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/458ee17c2c8ee) -
28
+ Register layout column vertical alignment rendering experiment and gate renderer layout column
29
+ vertical alignment styles behind it
30
+
31
+ ### Patch Changes
32
+
33
+ - [`2f16223a8aa3a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2f16223a8aa3a) -
34
+ Extend the right-side Remix button hover zone into the empty right margin beside a block, with a
35
+ reserved gap for the Rovo button on the far right.
36
+ - Updated dependencies
37
+
38
+ ## 103.0.1
39
+
40
+ ### Patch Changes
41
+
42
+ - [`5c8e58785d629`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5c8e58785d629) -
43
+ Add the `cwr-reduce-prompt-suggestion-max-chars` experiment which lowers the CWR prompt
44
+ autocomplete suggestion character limit from 80 to 40. When enabled, suggestions stop being
45
+ requested once the prompt exceeds 40 characters. Default behaviour is unchanged.
46
+
3
47
  ## 103.0.0
4
48
 
5
49
  ### Major Changes
@@ -60,6 +60,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
60
60
  platform_editor_table_menu_updates: false,
61
61
  platform_editor_core_static_css: false,
62
62
  'cwr-modal-ui-refresh': false,
63
+ 'cwr-reduce-prompt-suggestion-max-chars': false,
63
64
  prompt_tile_content_type_localizaiton: false,
64
65
  // [CCI-15904] New AIFC Editor Experience — AND-gated with
65
66
  // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
@@ -39,6 +39,14 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
39
39
  var editorExperimentsConfig = exports.editorExperimentsConfig = {
40
40
  // new format to avoid collisions with other users when updating the file
41
41
 
42
+ // Added 2026-06-09
43
+ remix_button_right_margin_hover: (0, _experimentBuilders.createBooleanExperiment)({
44
+ productKeys: {
45
+ confluence: 'remix_button_right_margin_hover'
46
+ },
47
+ param: 'isEnabled',
48
+ defaultValue: false
49
+ }),
42
50
  // Editor Platform experiments
43
51
  // lwoollard experiments
44
52
 
@@ -1388,6 +1396,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1388
1396
  param: 'isEnabled',
1389
1397
  defaultValue: false
1390
1398
  }),
1399
+ // Added 2026-06-11
1400
+ 'cwr-reduce-prompt-suggestion-max-chars': (0, _experimentBuilders.createBooleanExperiment)({
1401
+ productKeys: {
1402
+ confluence: 'cwr-reduce-prompt-suggestion-max-chars'
1403
+ },
1404
+ param: 'isEnabled',
1405
+ defaultValue: false
1406
+ }),
1391
1407
  // Added 2026-02-12
1392
1408
  platform_editor_a11y_escape_link_dialog: (0, _experimentBuilders.createBooleanExperiment)({
1393
1409
  productKeys: {
@@ -1825,6 +1841,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1825
1841
  param: 'isEnabled',
1826
1842
  defaultValue: false
1827
1843
  }),
1844
+ // Added 2026-06-15
1845
+ platform_editor_layout_column_valign_rendering: (0, _experimentBuilders.createBooleanExperiment)({
1846
+ productKeys: {
1847
+ confluence: 'platform_editor_layout_column_valign_rendering'
1848
+ },
1849
+ param: 'isEnabled',
1850
+ defaultValue: false
1851
+ }),
1828
1852
  // Added 2026-05-21
1829
1853
  platform_editor_layout_typeahead_reorder: (0, _experimentBuilders.createBooleanExperiment)({
1830
1854
  productKeys: {
@@ -54,6 +54,7 @@ export const testBooleanOverrides = {
54
54
  platform_editor_table_menu_updates: false,
55
55
  platform_editor_core_static_css: false,
56
56
  'cwr-modal-ui-refresh': false,
57
+ 'cwr-reduce-prompt-suggestion-max-chars': false,
57
58
  prompt_tile_content_type_localizaiton: false,
58
59
  // [CCI-15904] New AIFC Editor Experience — AND-gated with
59
60
  // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
@@ -33,6 +33,14 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
33
33
  export const editorExperimentsConfig = {
34
34
  // new format to avoid collisions with other users when updating the file
35
35
 
36
+ // Added 2026-06-09
37
+ remix_button_right_margin_hover: createBooleanExperiment({
38
+ productKeys: {
39
+ confluence: 'remix_button_right_margin_hover'
40
+ },
41
+ param: 'isEnabled',
42
+ defaultValue: false
43
+ }),
36
44
  // Editor Platform experiments
37
45
  // lwoollard experiments
38
46
 
@@ -1382,6 +1390,14 @@ export const editorExperimentsConfig = {
1382
1390
  param: 'isEnabled',
1383
1391
  defaultValue: false
1384
1392
  }),
1393
+ // Added 2026-06-11
1394
+ 'cwr-reduce-prompt-suggestion-max-chars': createBooleanExperiment({
1395
+ productKeys: {
1396
+ confluence: 'cwr-reduce-prompt-suggestion-max-chars'
1397
+ },
1398
+ param: 'isEnabled',
1399
+ defaultValue: false
1400
+ }),
1385
1401
  // Added 2026-02-12
1386
1402
  platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
1387
1403
  productKeys: {
@@ -1819,6 +1835,14 @@ export const editorExperimentsConfig = {
1819
1835
  param: 'isEnabled',
1820
1836
  defaultValue: false
1821
1837
  }),
1838
+ // Added 2026-06-15
1839
+ platform_editor_layout_column_valign_rendering: createBooleanExperiment({
1840
+ productKeys: {
1841
+ confluence: 'platform_editor_layout_column_valign_rendering'
1842
+ },
1843
+ param: 'isEnabled',
1844
+ defaultValue: false
1845
+ }),
1822
1846
  // Added 2026-05-21
1823
1847
  platform_editor_layout_typeahead_reorder: createBooleanExperiment({
1824
1848
  productKeys: {
@@ -54,6 +54,7 @@ export var testBooleanOverrides = {
54
54
  platform_editor_table_menu_updates: false,
55
55
  platform_editor_core_static_css: false,
56
56
  'cwr-modal-ui-refresh': false,
57
+ 'cwr-reduce-prompt-suggestion-max-chars': false,
57
58
  prompt_tile_content_type_localizaiton: false,
58
59
  // [CCI-15904] New AIFC Editor Experience — AND-gated with
59
60
  // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
@@ -33,6 +33,14 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
33
33
  export var editorExperimentsConfig = {
34
34
  // new format to avoid collisions with other users when updating the file
35
35
 
36
+ // Added 2026-06-09
37
+ remix_button_right_margin_hover: createBooleanExperiment({
38
+ productKeys: {
39
+ confluence: 'remix_button_right_margin_hover'
40
+ },
41
+ param: 'isEnabled',
42
+ defaultValue: false
43
+ }),
36
44
  // Editor Platform experiments
37
45
  // lwoollard experiments
38
46
 
@@ -1382,6 +1390,14 @@ export var editorExperimentsConfig = {
1382
1390
  param: 'isEnabled',
1383
1391
  defaultValue: false
1384
1392
  }),
1393
+ // Added 2026-06-11
1394
+ 'cwr-reduce-prompt-suggestion-max-chars': createBooleanExperiment({
1395
+ productKeys: {
1396
+ confluence: 'cwr-reduce-prompt-suggestion-max-chars'
1397
+ },
1398
+ param: 'isEnabled',
1399
+ defaultValue: false
1400
+ }),
1385
1401
  // Added 2026-02-12
1386
1402
  platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
1387
1403
  productKeys: {
@@ -1819,6 +1835,14 @@ export var editorExperimentsConfig = {
1819
1835
  param: 'isEnabled',
1820
1836
  defaultValue: false
1821
1837
  }),
1838
+ // Added 2026-06-15
1839
+ platform_editor_layout_column_valign_rendering: createBooleanExperiment({
1840
+ productKeys: {
1841
+ confluence: 'platform_editor_layout_column_valign_rendering'
1842
+ },
1843
+ param: 'isEnabled',
1844
+ defaultValue: false
1845
+ }),
1822
1846
  // Added 2026-05-21
1823
1847
  platform_editor_layout_typeahead_reorder: createBooleanExperiment({
1824
1848
  productKeys: {
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
21
21
  * existing experiments.
22
22
  */
23
23
  export declare const editorExperimentsConfig: {
24
+ remix_button_right_margin_hover: {
25
+ defaultValue: boolean;
26
+ param: string;
27
+ productKeys?: ProductKeys;
28
+ typeGuard: IsBooleanType;
29
+ };
24
30
  advanced_layouts: {
25
31
  defaultValue: boolean;
26
32
  param: string;
@@ -980,6 +986,12 @@ export declare const editorExperimentsConfig: {
980
986
  productKeys?: ProductKeys;
981
987
  typeGuard: IsBooleanType;
982
988
  };
989
+ platform_editor_layout_column_valign_rendering: {
990
+ defaultValue: boolean;
991
+ param: string;
992
+ productKeys?: ProductKeys;
993
+ typeGuard: IsBooleanType;
994
+ };
983
995
  platform_editor_layout_typeahead_reorder: {
984
996
  defaultValue: boolean;
985
997
  param: string;
@@ -1070,6 +1082,12 @@ export declare const editorExperimentsConfig: {
1070
1082
  productKeys?: ProductKeys;
1071
1083
  typeGuard: IsBooleanType;
1072
1084
  };
1085
+ 'cwr-reduce-prompt-suggestion-max-chars': {
1086
+ defaultValue: boolean;
1087
+ param: string;
1088
+ productKeys?: ProductKeys;
1089
+ typeGuard: IsBooleanType;
1090
+ };
1073
1091
  platform_editor_a11y_escape_link_dialog: {
1074
1092
  defaultValue: boolean;
1075
1093
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "103.0.0",
3
+ "version": "104.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",
@@ -23,19 +23,11 @@
23
23
  "module": "dist/esm/index.js",
24
24
  "module:es2019": "dist/es2019/index.js",
25
25
  "types": "dist/types/index.d.ts",
26
- "typesVersions": {
27
- ">=4.5 <5.4": {
28
- "*": [
29
- "dist/types-ts4.5/*",
30
- "dist/types-ts4.5/index.d.ts"
31
- ]
32
- }
33
- },
34
26
  "atlaskit:src": "src/index.ts",
35
27
  "dependencies": {
36
- "@atlaskit/feature-gate-js-client": "^5.8.0",
37
- "@atlaskit/platform-feature-flags": "^1.1.0",
38
- "@atlaskit/react-ufo": "^6.7.0",
28
+ "@atlaskit/feature-gate-js-client": "^6.0.0",
29
+ "@atlaskit/platform-feature-flags": "^2.0.0",
30
+ "@atlaskit/react-ufo": "^7.0.0",
39
31
  "@babel/runtime": "^7.0.0"
40
32
  },
41
33
  "platform-feature-flags": {