@atlaskit/tmp-editor-statsig 130.0.0 → 130.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,29 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 130.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`c3b8441edbd29`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c3b8441edbd29) -
8
+ Allow Remix previews to request local iframe heights through the shared content bridge, scrolling
9
+ within a viewport-capped host wrapper only when the requested content exceeds the available space.
10
+
11
+ Register a resize handler with the shared command:
12
+
13
+ ```ts
14
+ import { NativeEmbedRequestResizeCommand } from '@atlassian/rovo-content-bridge-api-commands/commands/native-embed-request-resize-command';
15
+
16
+ bridge.on(parentClientId, NativeEmbedRequestResizeCommand, ({ height }) => {
17
+ setPreviewHeight(height);
18
+ });
19
+ ```
20
+
21
+ Enable request resizing for a Smart Creation preview:
22
+
23
+ ```tsx
24
+ <PreviewIframe {...props} enableRequestResize />
25
+ ```
26
+
3
27
  ## 130.0.0
4
28
 
5
29
  ### Major Changes
@@ -2468,5 +2468,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2468
2468
  },
2469
2469
  param: 'isEnabled',
2470
2470
  defaultValue: false
2471
+ }),
2472
+ // Added 2026-07-17
2473
+ revert_remix_ephemeral_iframe_sizing_fix: (0, _experimentBuilders.createBooleanExperiment)({
2474
+ productKeys: {
2475
+ confluence: 'revert_remix_ephemeral_iframe_sizing_fix',
2476
+ jira: 'revert_remix_ephemeral_iframe_sizing_fix'
2477
+ },
2478
+ param: 'value',
2479
+ defaultValue: false
2471
2480
  })
2472
2481
  };
@@ -2462,5 +2462,14 @@ export const editorExperimentsConfig = {
2462
2462
  },
2463
2463
  param: 'isEnabled',
2464
2464
  defaultValue: false
2465
+ }),
2466
+ // Added 2026-07-17
2467
+ revert_remix_ephemeral_iframe_sizing_fix: createBooleanExperiment({
2468
+ productKeys: {
2469
+ confluence: 'revert_remix_ephemeral_iframe_sizing_fix',
2470
+ jira: 'revert_remix_ephemeral_iframe_sizing_fix'
2471
+ },
2472
+ param: 'value',
2473
+ defaultValue: false
2465
2474
  })
2466
2475
  };
@@ -2462,5 +2462,14 @@ export var editorExperimentsConfig = {
2462
2462
  },
2463
2463
  param: 'isEnabled',
2464
2464
  defaultValue: false
2465
+ }),
2466
+ // Added 2026-07-17
2467
+ revert_remix_ephemeral_iframe_sizing_fix: createBooleanExperiment({
2468
+ productKeys: {
2469
+ confluence: 'revert_remix_ephemeral_iframe_sizing_fix',
2470
+ jira: 'revert_remix_ephemeral_iframe_sizing_fix'
2471
+ },
2472
+ param: 'value',
2473
+ defaultValue: false
2465
2474
  })
2466
2475
  };
@@ -1799,5 +1799,11 @@ export declare const editorExperimentsConfig: {
1799
1799
  productKeys?: ProductKeys;
1800
1800
  typeGuard: IsBooleanType;
1801
1801
  };
1802
+ revert_remix_ephemeral_iframe_sizing_fix: {
1803
+ defaultValue: boolean;
1804
+ param: string;
1805
+ productKeys?: ProductKeys;
1806
+ typeGuard: IsBooleanType;
1807
+ };
1802
1808
  };
1803
1809
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "130.0.0",
3
+ "version": "130.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",