@atlaskit/tmp-editor-statsig 163.0.0 → 164.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 164.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`ae3b452f54cbe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ae3b452f54cbe) -
8
+ Add clean granular subpath exports `@atlaskit/tmp-editor-statsig/editor-experiment` and
9
+ `@atlaskit/tmp-editor-statsig/unstable-editor-experiment-param`, so `editorExperiment` and
10
+ `unstable_editorExperimentParam` each have a non-deprecated import target (Volt Stage-1). The
11
+ existing `@atlaskit/tmp-editor-statsig/experiments` shim is unchanged.
12
+
13
+ ## 164.0.0
14
+
15
+ ### Major Changes
16
+
17
+ - [`12a986f8ae94a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/12a986f8ae94a) -
18
+ Ship fix_copy_paste_external_media_renderer_to_editor permanently by always hoisting external
19
+ media copied from renderer markup. Remove its temporary Statsig experiment configuration;
20
+ consumers should remove any calls that read this experiment.
21
+
3
22
  ## 163.0.0
4
23
 
5
24
  ### Major Changes
@@ -1835,15 +1835,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1835
1835
  param: 'isEnabled',
1836
1836
  defaultValue: false
1837
1837
  }),
1838
- // Added 2026-06-05
1839
- fix_copy_paste_external_media_renderer_to_editor: (0, _createBooleanExperiment.createBooleanExperiment)({
1840
- productKeys: {
1841
- confluence: 'fix_copy_paste_external_media_renderer_to_editor',
1842
- jira: 'fix_copy_paste_external_media_renderer_to_editor'
1843
- },
1844
- param: 'isEnabled',
1845
- defaultValue: false
1846
- }),
1847
1838
  // Added 2026-04-30
1848
1839
  platform_editor_insert_menu_ai: (0, _createBooleanExperiment.createBooleanExperiment)({
1849
1840
  productKeys: {
@@ -1829,15 +1829,6 @@ export const editorExperimentsConfig = {
1829
1829
  param: 'isEnabled',
1830
1830
  defaultValue: false
1831
1831
  }),
1832
- // Added 2026-06-05
1833
- fix_copy_paste_external_media_renderer_to_editor: createBooleanExperiment({
1834
- productKeys: {
1835
- confluence: 'fix_copy_paste_external_media_renderer_to_editor',
1836
- jira: 'fix_copy_paste_external_media_renderer_to_editor'
1837
- },
1838
- param: 'isEnabled',
1839
- defaultValue: false
1840
- }),
1841
1832
  // Added 2026-04-30
1842
1833
  platform_editor_insert_menu_ai: createBooleanExperiment({
1843
1834
  productKeys: {
@@ -1829,15 +1829,6 @@ export var editorExperimentsConfig = {
1829
1829
  param: 'isEnabled',
1830
1830
  defaultValue: false
1831
1831
  }),
1832
- // Added 2026-06-05
1833
- fix_copy_paste_external_media_renderer_to_editor: createBooleanExperiment({
1834
- productKeys: {
1835
- confluence: 'fix_copy_paste_external_media_renderer_to_editor',
1836
- jira: 'fix_copy_paste_external_media_renderer_to_editor'
1837
- },
1838
- param: 'isEnabled',
1839
- defaultValue: false
1840
- }),
1841
1832
  // Added 2026-04-30
1842
1833
  platform_editor_insert_menu_ai: createBooleanExperiment({
1843
1834
  productKeys: {
@@ -1340,12 +1340,6 @@ export declare const editorExperimentsConfig: {
1340
1340
  productKeys?: ProductKeys;
1341
1341
  typeGuard: IsBooleanType;
1342
1342
  };
1343
- fix_copy_paste_external_media_renderer_to_editor: {
1344
- defaultValue: boolean;
1345
- param: string;
1346
- productKeys?: ProductKeys;
1347
- typeGuard: IsBooleanType;
1348
- };
1349
1343
  platform_editor_fix_sticky_header_malfunction: {
1350
1344
  defaultValue: boolean;
1351
1345
  param: string;
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "@atlaskit/tmp-editor-statsig/editor-experiment",
3
+ "main": "../dist/cjs/editor-experiment.js",
4
+ "module": "../dist/esm/editor-experiment.js",
5
+ "module:es2019": "../dist/es2019/editor-experiment.js",
6
+ "types": "../dist/types/editor-experiment.d.ts"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "163.0.0",
3
+ "version": "164.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",
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "@atlaskit/tmp-editor-statsig/unstable-editor-experiment-param",
3
+ "main": "../dist/cjs/unstable-editor-experiment-param.js",
4
+ "module": "../dist/esm/unstable-editor-experiment-param.js",
5
+ "module:es2019": "../dist/es2019/unstable-editor-experiment-param.js",
6
+ "types": "../dist/types/unstable-editor-experiment-param.d.ts"
7
+ }