@forge/manifest 13.4.0 → 13.5.0-next.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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.5.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - de915cc: Add `inline-bodied` as a supported layout for Confluence macro modules.
8
+
3
9
  ## 13.4.0
4
10
 
5
11
  ### Minor Changes
@@ -2764,7 +2764,8 @@
2764
2764
  "enum": [
2765
2765
  "inline",
2766
2766
  "block",
2767
- "bodied"
2767
+ "bodied",
2768
+ "inline-bodied"
2768
2769
  ],
2769
2770
  "type": "string",
2770
2771
  "default": "block"
@@ -12863,7 +12863,7 @@ export interface Modules {
12863
12863
  };
12864
12864
  render?: 'native' | 'default';
12865
12865
  renderRuntimeType?: 'webworker' | 'iframe';
12866
- layout?: 'inline' | 'block' | 'bodied';
12866
+ layout?: 'inline' | 'block' | 'bodied' | 'inline-bodied';
12867
12867
  emitsReadyEvent?: boolean;
12868
12868
  hidden?: boolean;
12869
12869
  key: ModuleKeySchema;
@@ -13210,7 +13210,7 @@ export interface Modules {
13210
13210
  };
13211
13211
  render?: 'native' | 'default';
13212
13212
  renderRuntimeType?: 'webworker' | 'iframe';
13213
- layout?: 'inline' | 'block' | 'bodied';
13213
+ layout?: 'inline' | 'block' | 'bodied' | 'inline-bodied';
13214
13214
  emitsReadyEvent?: boolean;
13215
13215
  hidden?: boolean;
13216
13216
  key: ModuleKeySchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.4.0",
3
+ "version": "13.5.0-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {