@atlaskit/tmp-editor-statsig 164.0.0 → 165.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 165.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`f34bb99565856`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f34bb99565856) -
8
+ Remove the `platform_editor_table_q4_patch_3` experiment and permanently retain interaction-aware
9
+ table cell highlighting.
10
+
11
+ ## 164.1.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`ae3b452f54cbe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ae3b452f54cbe) -
16
+ Add clean granular subpath exports `@atlaskit/tmp-editor-statsig/editor-experiment` and
17
+ `@atlaskit/tmp-editor-statsig/unstable-editor-experiment-param`, so `editorExperiment` and
18
+ `unstable_editorExperimentParam` each have a non-deprecated import target (Volt Stage-1). The
19
+ existing `@atlaskit/tmp-editor-statsig/experiments` shim is unchanged.
20
+
3
21
  ## 164.0.0
4
22
 
5
23
  ### Major Changes
@@ -1751,15 +1751,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1751
1751
  param: 'isEnabled',
1752
1752
  defaultValue: false
1753
1753
  }),
1754
- // Added 2026-07-16
1755
- platform_editor_table_q4_patch_3: (0, _createBooleanExperiment.createBooleanExperiment)({
1756
- productKeys: {
1757
- confluence: 'platform_editor_table_q4_patch_3',
1758
- jira: 'platform_editor_table_q4_patch_3'
1759
- },
1760
- param: 'isEnabled',
1761
- defaultValue: false
1762
- }),
1763
1754
  // Added 2026-07-21
1764
1755
  platform_editor_table_q4_patch_4: (0, _createBooleanExperiment.createBooleanExperiment)({
1765
1756
  productKeys: {
@@ -1745,15 +1745,6 @@ export const editorExperimentsConfig = {
1745
1745
  param: 'isEnabled',
1746
1746
  defaultValue: false
1747
1747
  }),
1748
- // Added 2026-07-16
1749
- platform_editor_table_q4_patch_3: createBooleanExperiment({
1750
- productKeys: {
1751
- confluence: 'platform_editor_table_q4_patch_3',
1752
- jira: 'platform_editor_table_q4_patch_3'
1753
- },
1754
- param: 'isEnabled',
1755
- defaultValue: false
1756
- }),
1757
1748
  // Added 2026-07-21
1758
1749
  platform_editor_table_q4_patch_4: createBooleanExperiment({
1759
1750
  productKeys: {
@@ -1745,15 +1745,6 @@ export var editorExperimentsConfig = {
1745
1745
  param: 'isEnabled',
1746
1746
  defaultValue: false
1747
1747
  }),
1748
- // Added 2026-07-16
1749
- platform_editor_table_q4_patch_3: createBooleanExperiment({
1750
- productKeys: {
1751
- confluence: 'platform_editor_table_q4_patch_3',
1752
- jira: 'platform_editor_table_q4_patch_3'
1753
- },
1754
- param: 'isEnabled',
1755
- defaultValue: false
1756
- }),
1757
1748
  // Added 2026-07-21
1758
1749
  platform_editor_table_q4_patch_4: createBooleanExperiment({
1759
1750
  productKeys: {
@@ -1268,12 +1268,6 @@ export declare const editorExperimentsConfig: {
1268
1268
  productKeys?: ProductKeys;
1269
1269
  typeGuard: IsBooleanType;
1270
1270
  };
1271
- platform_editor_table_q4_patch_3: {
1272
- defaultValue: boolean;
1273
- param: string;
1274
- productKeys?: ProductKeys;
1275
- typeGuard: IsBooleanType;
1276
- };
1277
1271
  platform_editor_table_q4_patch_4: {
1278
1272
  defaultValue: boolean;
1279
1273
  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": "164.0.0",
3
+ "version": "165.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",
@@ -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
+ }