@atlaskit/tmp-editor-statsig 103.0.1 → 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,40 @@
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
+
3
38
  ## 103.0.1
4
39
 
5
40
  ### Patch Changes
@@ -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
 
@@ -1833,6 +1841,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1833
1841
  param: 'isEnabled',
1834
1842
  defaultValue: false
1835
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
+ }),
1836
1852
  // Added 2026-05-21
1837
1853
  platform_editor_layout_typeahead_reorder: (0, _experimentBuilders.createBooleanExperiment)({
1838
1854
  productKeys: {
@@ -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
 
@@ -1827,6 +1835,14 @@ export const editorExperimentsConfig = {
1827
1835
  param: 'isEnabled',
1828
1836
  defaultValue: false
1829
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
+ }),
1830
1846
  // Added 2026-05-21
1831
1847
  platform_editor_layout_typeahead_reorder: createBooleanExperiment({
1832
1848
  productKeys: {
@@ -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
 
@@ -1827,6 +1835,14 @@ export var editorExperimentsConfig = {
1827
1835
  param: 'isEnabled',
1828
1836
  defaultValue: false
1829
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
+ }),
1830
1846
  // Added 2026-05-21
1831
1847
  platform_editor_layout_typeahead_reorder: createBooleanExperiment({
1832
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "103.0.1",
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": {