@forge/manifest 13.4.0-next.6 → 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 +21 -0
- package/out/schema/manifest-schema.json +2 -1
- package/out/schema/manifest.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
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
|
+
|
|
9
|
+
## 13.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- a804b36: Add migration:macrosToIndex module
|
|
14
|
+
- f2c080f: Add migration:managedExports module
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- db66d54: Stop requiring app.compatibility for global:ui and global:fullPage modules
|
|
19
|
+
- 40260f5: Add dashboards filter module
|
|
20
|
+
- 0795370: Accept `.cjs` function handler files
|
|
21
|
+
- c62c72a: Update manifest definitions
|
|
22
|
+
- 6479f6e: Update manifest definitions
|
|
23
|
+
|
|
3
24
|
## 13.4.0-next.6
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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;
|