@forge/manifest 4.4.1 → 4.4.2-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 +6 -0
- package/out/schema/manifest-schema.json +32 -0
- package/out/schema/manifest.d.ts +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2241,6 +2241,14 @@
|
|
|
2241
2241
|
{
|
|
2242
2242
|
"type": "object",
|
|
2243
2243
|
"properties": {
|
|
2244
|
+
"display": {
|
|
2245
|
+
"default": "modal",
|
|
2246
|
+
"enum": [
|
|
2247
|
+
"inline",
|
|
2248
|
+
"modal"
|
|
2249
|
+
],
|
|
2250
|
+
"type": "string"
|
|
2251
|
+
},
|
|
2244
2252
|
"resource": {
|
|
2245
2253
|
"type": "string",
|
|
2246
2254
|
"minLength": 1,
|
|
@@ -2420,6 +2428,14 @@
|
|
|
2420
2428
|
{
|
|
2421
2429
|
"type": "object",
|
|
2422
2430
|
"properties": {
|
|
2431
|
+
"display": {
|
|
2432
|
+
"default": "modal",
|
|
2433
|
+
"enum": [
|
|
2434
|
+
"inline",
|
|
2435
|
+
"modal"
|
|
2436
|
+
],
|
|
2437
|
+
"type": "string"
|
|
2438
|
+
},
|
|
2423
2439
|
"resource": {
|
|
2424
2440
|
"type": "string",
|
|
2425
2441
|
"minLength": 1,
|
|
@@ -2593,6 +2609,14 @@
|
|
|
2593
2609
|
{
|
|
2594
2610
|
"type": "object",
|
|
2595
2611
|
"properties": {
|
|
2612
|
+
"display": {
|
|
2613
|
+
"default": "modal",
|
|
2614
|
+
"enum": [
|
|
2615
|
+
"inline",
|
|
2616
|
+
"modal"
|
|
2617
|
+
],
|
|
2618
|
+
"type": "string"
|
|
2619
|
+
},
|
|
2596
2620
|
"resource": {
|
|
2597
2621
|
"type": "string",
|
|
2598
2622
|
"minLength": 1,
|
|
@@ -2832,6 +2856,14 @@
|
|
|
2832
2856
|
{
|
|
2833
2857
|
"type": "object",
|
|
2834
2858
|
"properties": {
|
|
2859
|
+
"display": {
|
|
2860
|
+
"default": "modal",
|
|
2861
|
+
"enum": [
|
|
2862
|
+
"inline",
|
|
2863
|
+
"modal"
|
|
2864
|
+
],
|
|
2865
|
+
"type": "string"
|
|
2866
|
+
},
|
|
2835
2867
|
"resource": {
|
|
2836
2868
|
"type": "string",
|
|
2837
2869
|
"minLength": 1,
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1334,6 +1334,7 @@ export interface Modules {
|
|
|
1334
1334
|
};
|
|
1335
1335
|
edit?:
|
|
1336
1336
|
| {
|
|
1337
|
+
display?: 'inline' | 'modal';
|
|
1337
1338
|
resource: string;
|
|
1338
1339
|
render?: 'default' | 'native';
|
|
1339
1340
|
[k: string]: unknown;
|
|
@@ -1385,6 +1386,7 @@ export interface Modules {
|
|
|
1385
1386
|
};
|
|
1386
1387
|
edit?:
|
|
1387
1388
|
| {
|
|
1389
|
+
display?: 'inline' | 'modal';
|
|
1388
1390
|
resource: string;
|
|
1389
1391
|
render?: 'default' | 'native';
|
|
1390
1392
|
[k: string]: unknown;
|
|
@@ -1435,6 +1437,7 @@ export interface Modules {
|
|
|
1435
1437
|
};
|
|
1436
1438
|
edit?:
|
|
1437
1439
|
| {
|
|
1440
|
+
display?: 'inline' | 'modal';
|
|
1438
1441
|
resource: string;
|
|
1439
1442
|
render?: 'default' | 'native';
|
|
1440
1443
|
[k: string]: unknown;
|
|
@@ -1486,6 +1489,7 @@ export interface Modules {
|
|
|
1486
1489
|
};
|
|
1487
1490
|
edit?:
|
|
1488
1491
|
| {
|
|
1492
|
+
display?: 'inline' | 'modal';
|
|
1489
1493
|
resource: string;
|
|
1490
1494
|
render?: 'default' | 'native';
|
|
1491
1495
|
[k: string]: unknown;
|
|
@@ -1535,6 +1539,7 @@ export interface Modules {
|
|
|
1535
1539
|
readOnly?: boolean;
|
|
1536
1540
|
edit?:
|
|
1537
1541
|
| {
|
|
1542
|
+
display?: 'inline' | 'modal';
|
|
1538
1543
|
resource: string;
|
|
1539
1544
|
render?: 'default' | 'native';
|
|
1540
1545
|
[k: string]: unknown;
|
|
@@ -1599,6 +1604,7 @@ export interface Modules {
|
|
|
1599
1604
|
readOnly?: boolean;
|
|
1600
1605
|
edit?:
|
|
1601
1606
|
| {
|
|
1607
|
+
display?: 'inline' | 'modal';
|
|
1602
1608
|
resource: string;
|
|
1603
1609
|
render?: 'default' | 'native';
|
|
1604
1610
|
[k: string]: unknown;
|
|
@@ -1662,6 +1668,7 @@ export interface Modules {
|
|
|
1662
1668
|
readOnly?: boolean;
|
|
1663
1669
|
edit?:
|
|
1664
1670
|
| {
|
|
1671
|
+
display?: 'inline' | 'modal';
|
|
1665
1672
|
resource: string;
|
|
1666
1673
|
render?: 'default' | 'native';
|
|
1667
1674
|
[k: string]: unknown;
|
|
@@ -1726,6 +1733,7 @@ export interface Modules {
|
|
|
1726
1733
|
readOnly?: boolean;
|
|
1727
1734
|
edit?:
|
|
1728
1735
|
| {
|
|
1736
|
+
display?: 'inline' | 'modal';
|
|
1729
1737
|
resource: string;
|
|
1730
1738
|
render?: 'default' | 'native';
|
|
1731
1739
|
[k: string]: unknown;
|