@forge/manifest 2.6.0-next.12 → 2.6.0-next.13
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 +9 -0
- package/out/mapping/product-event-to-scope-mapping.json +8 -8
- package/out/schema/manifest-schema.json +1147 -381
- package/out/schema/manifest.d.ts +549 -281
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1278,92 +1278,224 @@ export interface Modules {
|
|
|
1278
1278
|
'jira:adminPage'?: [
|
|
1279
1279
|
(
|
|
1280
1280
|
| {
|
|
1281
|
+
function: string;
|
|
1281
1282
|
title: string;
|
|
1282
1283
|
icon?: string;
|
|
1283
|
-
layout?: '
|
|
1284
|
-
function: string;
|
|
1284
|
+
layout?: 'basic' | 'native';
|
|
1285
1285
|
key: ModuleKeySchema;
|
|
1286
|
-
[k: string]: unknown;
|
|
1287
1286
|
}
|
|
1288
1287
|
| {
|
|
1288
|
+
resource: string;
|
|
1289
|
+
resourceUploadId?: string;
|
|
1290
|
+
resolver?: {
|
|
1291
|
+
function: string;
|
|
1292
|
+
};
|
|
1289
1293
|
title: string;
|
|
1290
1294
|
icon?: string;
|
|
1291
|
-
layout?: '
|
|
1295
|
+
layout?: 'basic' | 'native';
|
|
1296
|
+
key: ModuleKeySchema;
|
|
1297
|
+
}
|
|
1298
|
+
| {
|
|
1299
|
+
pages: {
|
|
1300
|
+
title: string;
|
|
1301
|
+
route: string;
|
|
1302
|
+
icon?: string;
|
|
1303
|
+
}[];
|
|
1304
|
+
resource: string;
|
|
1305
|
+
resourceUploadId?: string;
|
|
1292
1306
|
resolver?: {
|
|
1293
1307
|
function: string;
|
|
1294
1308
|
};
|
|
1309
|
+
title: string;
|
|
1310
|
+
icon?: string;
|
|
1311
|
+
layout?: 'basic' | 'native';
|
|
1312
|
+
key: ModuleKeySchema;
|
|
1313
|
+
}
|
|
1314
|
+
| {
|
|
1315
|
+
sections: {
|
|
1316
|
+
header?: string;
|
|
1317
|
+
pages: {
|
|
1318
|
+
title: string;
|
|
1319
|
+
route: string;
|
|
1320
|
+
icon?: string;
|
|
1321
|
+
}[];
|
|
1322
|
+
}[];
|
|
1295
1323
|
resource: string;
|
|
1296
1324
|
resourceUploadId?: string;
|
|
1325
|
+
resolver?: {
|
|
1326
|
+
function: string;
|
|
1327
|
+
};
|
|
1328
|
+
title: string;
|
|
1329
|
+
icon?: string;
|
|
1330
|
+
layout?: 'basic' | 'native';
|
|
1297
1331
|
key: ModuleKeySchema;
|
|
1298
|
-
[k: string]: unknown;
|
|
1299
1332
|
}
|
|
1300
1333
|
),
|
|
1301
1334
|
...(
|
|
1302
1335
|
| {
|
|
1336
|
+
function: string;
|
|
1303
1337
|
title: string;
|
|
1304
1338
|
icon?: string;
|
|
1305
|
-
layout?: '
|
|
1306
|
-
function: string;
|
|
1339
|
+
layout?: 'basic' | 'native';
|
|
1307
1340
|
key: ModuleKeySchema;
|
|
1308
|
-
[k: string]: unknown;
|
|
1309
1341
|
}
|
|
1310
1342
|
| {
|
|
1343
|
+
resource: string;
|
|
1344
|
+
resourceUploadId?: string;
|
|
1345
|
+
resolver?: {
|
|
1346
|
+
function: string;
|
|
1347
|
+
};
|
|
1311
1348
|
title: string;
|
|
1312
1349
|
icon?: string;
|
|
1313
|
-
layout?: '
|
|
1350
|
+
layout?: 'basic' | 'native';
|
|
1351
|
+
key: ModuleKeySchema;
|
|
1352
|
+
}
|
|
1353
|
+
| {
|
|
1354
|
+
pages: {
|
|
1355
|
+
title: string;
|
|
1356
|
+
route: string;
|
|
1357
|
+
icon?: string;
|
|
1358
|
+
}[];
|
|
1359
|
+
resource: string;
|
|
1360
|
+
resourceUploadId?: string;
|
|
1314
1361
|
resolver?: {
|
|
1315
1362
|
function: string;
|
|
1316
1363
|
};
|
|
1364
|
+
title: string;
|
|
1365
|
+
icon?: string;
|
|
1366
|
+
layout?: 'basic' | 'native';
|
|
1367
|
+
key: ModuleKeySchema;
|
|
1368
|
+
}
|
|
1369
|
+
| {
|
|
1370
|
+
sections: {
|
|
1371
|
+
header?: string;
|
|
1372
|
+
pages: {
|
|
1373
|
+
title: string;
|
|
1374
|
+
route: string;
|
|
1375
|
+
icon?: string;
|
|
1376
|
+
}[];
|
|
1377
|
+
}[];
|
|
1317
1378
|
resource: string;
|
|
1318
1379
|
resourceUploadId?: string;
|
|
1380
|
+
resolver?: {
|
|
1381
|
+
function: string;
|
|
1382
|
+
};
|
|
1383
|
+
title: string;
|
|
1384
|
+
icon?: string;
|
|
1385
|
+
layout?: 'basic' | 'native';
|
|
1319
1386
|
key: ModuleKeySchema;
|
|
1320
|
-
[k: string]: unknown;
|
|
1321
1387
|
}
|
|
1322
1388
|
)[]
|
|
1323
1389
|
];
|
|
1324
1390
|
'jira:projectPage'?: [
|
|
1325
1391
|
(
|
|
1326
1392
|
| {
|
|
1393
|
+
function: string;
|
|
1327
1394
|
title: string;
|
|
1328
1395
|
icon?: string;
|
|
1329
|
-
layout?: '
|
|
1330
|
-
function: string;
|
|
1396
|
+
layout?: 'basic' | 'native';
|
|
1331
1397
|
key: ModuleKeySchema;
|
|
1332
|
-
[k: string]: unknown;
|
|
1333
1398
|
}
|
|
1334
1399
|
| {
|
|
1400
|
+
resource: string;
|
|
1401
|
+
resourceUploadId?: string;
|
|
1402
|
+
resolver?: {
|
|
1403
|
+
function: string;
|
|
1404
|
+
};
|
|
1335
1405
|
title: string;
|
|
1336
1406
|
icon?: string;
|
|
1337
|
-
layout?: '
|
|
1407
|
+
layout?: 'basic' | 'native';
|
|
1408
|
+
key: ModuleKeySchema;
|
|
1409
|
+
}
|
|
1410
|
+
| {
|
|
1411
|
+
pages: {
|
|
1412
|
+
title: string;
|
|
1413
|
+
route: string;
|
|
1414
|
+
icon?: string;
|
|
1415
|
+
}[];
|
|
1416
|
+
resource: string;
|
|
1417
|
+
resourceUploadId?: string;
|
|
1338
1418
|
resolver?: {
|
|
1339
1419
|
function: string;
|
|
1340
1420
|
};
|
|
1421
|
+
title: string;
|
|
1422
|
+
icon?: string;
|
|
1423
|
+
layout?: 'basic' | 'native';
|
|
1424
|
+
key: ModuleKeySchema;
|
|
1425
|
+
}
|
|
1426
|
+
| {
|
|
1427
|
+
sections: {
|
|
1428
|
+
header?: string;
|
|
1429
|
+
pages: {
|
|
1430
|
+
title: string;
|
|
1431
|
+
route: string;
|
|
1432
|
+
icon?: string;
|
|
1433
|
+
}[];
|
|
1434
|
+
}[];
|
|
1341
1435
|
resource: string;
|
|
1342
1436
|
resourceUploadId?: string;
|
|
1437
|
+
resolver?: {
|
|
1438
|
+
function: string;
|
|
1439
|
+
};
|
|
1440
|
+
title: string;
|
|
1441
|
+
icon?: string;
|
|
1442
|
+
layout?: 'basic' | 'native';
|
|
1343
1443
|
key: ModuleKeySchema;
|
|
1344
|
-
[k: string]: unknown;
|
|
1345
1444
|
}
|
|
1346
1445
|
),
|
|
1347
1446
|
...(
|
|
1348
1447
|
| {
|
|
1448
|
+
function: string;
|
|
1349
1449
|
title: string;
|
|
1350
1450
|
icon?: string;
|
|
1351
|
-
layout?: '
|
|
1352
|
-
function: string;
|
|
1451
|
+
layout?: 'basic' | 'native';
|
|
1353
1452
|
key: ModuleKeySchema;
|
|
1354
|
-
[k: string]: unknown;
|
|
1355
1453
|
}
|
|
1356
1454
|
| {
|
|
1455
|
+
resource: string;
|
|
1456
|
+
resourceUploadId?: string;
|
|
1457
|
+
resolver?: {
|
|
1458
|
+
function: string;
|
|
1459
|
+
};
|
|
1357
1460
|
title: string;
|
|
1358
1461
|
icon?: string;
|
|
1359
|
-
layout?: '
|
|
1462
|
+
layout?: 'basic' | 'native';
|
|
1463
|
+
key: ModuleKeySchema;
|
|
1464
|
+
}
|
|
1465
|
+
| {
|
|
1466
|
+
pages: {
|
|
1467
|
+
title: string;
|
|
1468
|
+
route: string;
|
|
1469
|
+
icon?: string;
|
|
1470
|
+
}[];
|
|
1471
|
+
resource: string;
|
|
1472
|
+
resourceUploadId?: string;
|
|
1360
1473
|
resolver?: {
|
|
1361
1474
|
function: string;
|
|
1362
1475
|
};
|
|
1476
|
+
title: string;
|
|
1477
|
+
icon?: string;
|
|
1478
|
+
layout?: 'basic' | 'native';
|
|
1479
|
+
key: ModuleKeySchema;
|
|
1480
|
+
}
|
|
1481
|
+
| {
|
|
1482
|
+
sections: {
|
|
1483
|
+
header?: string;
|
|
1484
|
+
pages: {
|
|
1485
|
+
title: string;
|
|
1486
|
+
route: string;
|
|
1487
|
+
icon?: string;
|
|
1488
|
+
}[];
|
|
1489
|
+
}[];
|
|
1363
1490
|
resource: string;
|
|
1364
1491
|
resourceUploadId?: string;
|
|
1492
|
+
resolver?: {
|
|
1493
|
+
function: string;
|
|
1494
|
+
};
|
|
1495
|
+
title: string;
|
|
1496
|
+
icon?: string;
|
|
1497
|
+
layout?: 'basic' | 'native';
|
|
1365
1498
|
key: ModuleKeySchema;
|
|
1366
|
-
[k: string]: unknown;
|
|
1367
1499
|
}
|
|
1368
1500
|
)[]
|
|
1369
1501
|
];
|
|
@@ -1375,10 +1507,45 @@ export interface Modules {
|
|
|
1375
1507
|
icon?: string;
|
|
1376
1508
|
layout?: 'basic' | 'native';
|
|
1377
1509
|
key: ModuleKeySchema;
|
|
1378
|
-
[k: string]: unknown;
|
|
1379
1510
|
}
|
|
1380
1511
|
| {
|
|
1381
1512
|
resource: string;
|
|
1513
|
+
resourceUploadId?: string;
|
|
1514
|
+
resolver?: {
|
|
1515
|
+
function: string;
|
|
1516
|
+
};
|
|
1517
|
+
title: string;
|
|
1518
|
+
icon?: string;
|
|
1519
|
+
layout?: 'basic' | 'native';
|
|
1520
|
+
key: ModuleKeySchema;
|
|
1521
|
+
}
|
|
1522
|
+
| {
|
|
1523
|
+
pages: {
|
|
1524
|
+
title: string;
|
|
1525
|
+
route: string;
|
|
1526
|
+
icon?: string;
|
|
1527
|
+
}[];
|
|
1528
|
+
resource: string;
|
|
1529
|
+
resourceUploadId?: string;
|
|
1530
|
+
resolver?: {
|
|
1531
|
+
function: string;
|
|
1532
|
+
};
|
|
1533
|
+
title: string;
|
|
1534
|
+
icon?: string;
|
|
1535
|
+
layout?: 'basic' | 'native';
|
|
1536
|
+
key: ModuleKeySchema;
|
|
1537
|
+
}
|
|
1538
|
+
| {
|
|
1539
|
+
sections: {
|
|
1540
|
+
header?: string;
|
|
1541
|
+
pages: {
|
|
1542
|
+
title: string;
|
|
1543
|
+
route: string;
|
|
1544
|
+
icon?: string;
|
|
1545
|
+
}[];
|
|
1546
|
+
}[];
|
|
1547
|
+
resource: string;
|
|
1548
|
+
resourceUploadId?: string;
|
|
1382
1549
|
resolver?: {
|
|
1383
1550
|
function: string;
|
|
1384
1551
|
};
|
|
@@ -1386,7 +1553,6 @@ export interface Modules {
|
|
|
1386
1553
|
icon?: string;
|
|
1387
1554
|
layout?: 'basic' | 'native';
|
|
1388
1555
|
key: ModuleKeySchema;
|
|
1389
|
-
[k: string]: unknown;
|
|
1390
1556
|
}
|
|
1391
1557
|
),
|
|
1392
1558
|
...(
|
|
@@ -1396,10 +1562,45 @@ export interface Modules {
|
|
|
1396
1562
|
icon?: string;
|
|
1397
1563
|
layout?: 'basic' | 'native';
|
|
1398
1564
|
key: ModuleKeySchema;
|
|
1399
|
-
[k: string]: unknown;
|
|
1400
1565
|
}
|
|
1401
1566
|
| {
|
|
1402
1567
|
resource: string;
|
|
1568
|
+
resourceUploadId?: string;
|
|
1569
|
+
resolver?: {
|
|
1570
|
+
function: string;
|
|
1571
|
+
};
|
|
1572
|
+
title: string;
|
|
1573
|
+
icon?: string;
|
|
1574
|
+
layout?: 'basic' | 'native';
|
|
1575
|
+
key: ModuleKeySchema;
|
|
1576
|
+
}
|
|
1577
|
+
| {
|
|
1578
|
+
pages: {
|
|
1579
|
+
title: string;
|
|
1580
|
+
route: string;
|
|
1581
|
+
icon?: string;
|
|
1582
|
+
}[];
|
|
1583
|
+
resource: string;
|
|
1584
|
+
resourceUploadId?: string;
|
|
1585
|
+
resolver?: {
|
|
1586
|
+
function: string;
|
|
1587
|
+
};
|
|
1588
|
+
title: string;
|
|
1589
|
+
icon?: string;
|
|
1590
|
+
layout?: 'basic' | 'native';
|
|
1591
|
+
key: ModuleKeySchema;
|
|
1592
|
+
}
|
|
1593
|
+
| {
|
|
1594
|
+
sections: {
|
|
1595
|
+
header?: string;
|
|
1596
|
+
pages: {
|
|
1597
|
+
title: string;
|
|
1598
|
+
route: string;
|
|
1599
|
+
icon?: string;
|
|
1600
|
+
}[];
|
|
1601
|
+
}[];
|
|
1602
|
+
resource: string;
|
|
1603
|
+
resourceUploadId?: string;
|
|
1403
1604
|
resolver?: {
|
|
1404
1605
|
function: string;
|
|
1405
1606
|
};
|
|
@@ -1407,7 +1608,6 @@ export interface Modules {
|
|
|
1407
1608
|
icon?: string;
|
|
1408
1609
|
layout?: 'basic' | 'native';
|
|
1409
1610
|
key: ModuleKeySchema;
|
|
1410
|
-
[k: string]: unknown;
|
|
1411
1611
|
}
|
|
1412
1612
|
)[]
|
|
1413
1613
|
];
|
|
@@ -1419,10 +1619,45 @@ export interface Modules {
|
|
|
1419
1619
|
icon?: string;
|
|
1420
1620
|
layout?: 'basic' | 'native';
|
|
1421
1621
|
key: ModuleKeySchema;
|
|
1422
|
-
[k: string]: unknown;
|
|
1423
1622
|
}
|
|
1424
1623
|
| {
|
|
1425
1624
|
resource: string;
|
|
1625
|
+
resourceUploadId?: string;
|
|
1626
|
+
resolver?: {
|
|
1627
|
+
function: string;
|
|
1628
|
+
};
|
|
1629
|
+
title: string;
|
|
1630
|
+
icon?: string;
|
|
1631
|
+
layout?: 'basic' | 'native';
|
|
1632
|
+
key: ModuleKeySchema;
|
|
1633
|
+
}
|
|
1634
|
+
| {
|
|
1635
|
+
pages: {
|
|
1636
|
+
title: string;
|
|
1637
|
+
route: string;
|
|
1638
|
+
icon?: string;
|
|
1639
|
+
}[];
|
|
1640
|
+
resource: string;
|
|
1641
|
+
resourceUploadId?: string;
|
|
1642
|
+
resolver?: {
|
|
1643
|
+
function: string;
|
|
1644
|
+
};
|
|
1645
|
+
title: string;
|
|
1646
|
+
icon?: string;
|
|
1647
|
+
layout?: 'basic' | 'native';
|
|
1648
|
+
key: ModuleKeySchema;
|
|
1649
|
+
}
|
|
1650
|
+
| {
|
|
1651
|
+
sections: {
|
|
1652
|
+
header?: string;
|
|
1653
|
+
pages: {
|
|
1654
|
+
title: string;
|
|
1655
|
+
route: string;
|
|
1656
|
+
icon?: string;
|
|
1657
|
+
}[];
|
|
1658
|
+
}[];
|
|
1659
|
+
resource: string;
|
|
1660
|
+
resourceUploadId?: string;
|
|
1426
1661
|
resolver?: {
|
|
1427
1662
|
function: string;
|
|
1428
1663
|
};
|
|
@@ -1430,7 +1665,6 @@ export interface Modules {
|
|
|
1430
1665
|
icon?: string;
|
|
1431
1666
|
layout?: 'basic' | 'native';
|
|
1432
1667
|
key: ModuleKeySchema;
|
|
1433
|
-
[k: string]: unknown;
|
|
1434
1668
|
}
|
|
1435
1669
|
),
|
|
1436
1670
|
...(
|
|
@@ -1440,10 +1674,45 @@ export interface Modules {
|
|
|
1440
1674
|
icon?: string;
|
|
1441
1675
|
layout?: 'basic' | 'native';
|
|
1442
1676
|
key: ModuleKeySchema;
|
|
1443
|
-
[k: string]: unknown;
|
|
1444
1677
|
}
|
|
1445
1678
|
| {
|
|
1446
1679
|
resource: string;
|
|
1680
|
+
resourceUploadId?: string;
|
|
1681
|
+
resolver?: {
|
|
1682
|
+
function: string;
|
|
1683
|
+
};
|
|
1684
|
+
title: string;
|
|
1685
|
+
icon?: string;
|
|
1686
|
+
layout?: 'basic' | 'native';
|
|
1687
|
+
key: ModuleKeySchema;
|
|
1688
|
+
}
|
|
1689
|
+
| {
|
|
1690
|
+
pages: {
|
|
1691
|
+
title: string;
|
|
1692
|
+
route: string;
|
|
1693
|
+
icon?: string;
|
|
1694
|
+
}[];
|
|
1695
|
+
resource: string;
|
|
1696
|
+
resourceUploadId?: string;
|
|
1697
|
+
resolver?: {
|
|
1698
|
+
function: string;
|
|
1699
|
+
};
|
|
1700
|
+
title: string;
|
|
1701
|
+
icon?: string;
|
|
1702
|
+
layout?: 'basic' | 'native';
|
|
1703
|
+
key: ModuleKeySchema;
|
|
1704
|
+
}
|
|
1705
|
+
| {
|
|
1706
|
+
sections: {
|
|
1707
|
+
header?: string;
|
|
1708
|
+
pages: {
|
|
1709
|
+
title: string;
|
|
1710
|
+
route: string;
|
|
1711
|
+
icon?: string;
|
|
1712
|
+
}[];
|
|
1713
|
+
}[];
|
|
1714
|
+
resource: string;
|
|
1715
|
+
resourceUploadId?: string;
|
|
1447
1716
|
resolver?: {
|
|
1448
1717
|
function: string;
|
|
1449
1718
|
};
|
|
@@ -1451,7 +1720,6 @@ export interface Modules {
|
|
|
1451
1720
|
icon?: string;
|
|
1452
1721
|
layout?: 'basic' | 'native';
|
|
1453
1722
|
key: ModuleKeySchema;
|
|
1454
|
-
[k: string]: unknown;
|
|
1455
1723
|
}
|
|
1456
1724
|
)[]
|
|
1457
1725
|
];
|
|
@@ -2588,7 +2856,7 @@ export interface Modules {
|
|
|
2588
2856
|
location?: string;
|
|
2589
2857
|
cacheable?: boolean;
|
|
2590
2858
|
supportsNative?: boolean;
|
|
2591
|
-
conditions?: (
|
|
2859
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2592
2860
|
params?: {
|
|
2593
2861
|
[k: string]: unknown;
|
|
2594
2862
|
};
|
|
@@ -2604,7 +2872,7 @@ export interface Modules {
|
|
|
2604
2872
|
location?: string;
|
|
2605
2873
|
cacheable?: boolean;
|
|
2606
2874
|
supportsNative?: boolean;
|
|
2607
|
-
conditions?: (
|
|
2875
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2608
2876
|
params?: {
|
|
2609
2877
|
[k: string]: unknown;
|
|
2610
2878
|
};
|
|
@@ -2618,7 +2886,7 @@ export interface Modules {
|
|
|
2618
2886
|
filter?: string;
|
|
2619
2887
|
excludeBody?: boolean;
|
|
2620
2888
|
event?: string;
|
|
2621
|
-
conditions?: (
|
|
2889
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2622
2890
|
propertyKeys?: string[];
|
|
2623
2891
|
url?: string;
|
|
2624
2892
|
key: ModuleKeySchema;
|
|
@@ -2628,7 +2896,7 @@ export interface Modules {
|
|
|
2628
2896
|
filter?: string;
|
|
2629
2897
|
excludeBody?: boolean;
|
|
2630
2898
|
event?: string;
|
|
2631
|
-
conditions?: (
|
|
2899
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2632
2900
|
propertyKeys?: string[];
|
|
2633
2901
|
url?: string;
|
|
2634
2902
|
key: ModuleKeySchema;
|
|
@@ -2642,7 +2910,7 @@ export interface Modules {
|
|
|
2642
2910
|
weight?: number;
|
|
2643
2911
|
cacheable?: boolean;
|
|
2644
2912
|
location?: string;
|
|
2645
|
-
conditions?: (
|
|
2913
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2646
2914
|
params?: {
|
|
2647
2915
|
[k: string]: unknown;
|
|
2648
2916
|
};
|
|
@@ -2656,7 +2924,7 @@ export interface Modules {
|
|
|
2656
2924
|
weight?: number;
|
|
2657
2925
|
cacheable?: boolean;
|
|
2658
2926
|
location?: string;
|
|
2659
|
-
conditions?: (
|
|
2927
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2660
2928
|
params?: {
|
|
2661
2929
|
[k: string]: unknown;
|
|
2662
2930
|
};
|
|
@@ -2698,7 +2966,7 @@ export interface Modules {
|
|
|
2698
2966
|
weight?: number;
|
|
2699
2967
|
cacheable?: boolean;
|
|
2700
2968
|
location?: string;
|
|
2701
|
-
conditions?: (
|
|
2969
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2702
2970
|
params?: {
|
|
2703
2971
|
[k: string]: unknown;
|
|
2704
2972
|
};
|
|
@@ -2712,7 +2980,7 @@ export interface Modules {
|
|
|
2712
2980
|
weight?: number;
|
|
2713
2981
|
cacheable?: boolean;
|
|
2714
2982
|
location?: string;
|
|
2715
|
-
conditions?: (
|
|
2983
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2716
2984
|
params?: {
|
|
2717
2985
|
[k: string]: unknown;
|
|
2718
2986
|
};
|
|
@@ -2832,7 +3100,7 @@ export interface Modules {
|
|
|
2832
3100
|
name?: I18NProperty63;
|
|
2833
3101
|
weight?: number;
|
|
2834
3102
|
location?: string;
|
|
2835
|
-
conditions?: (
|
|
3103
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
2836
3104
|
params?: {
|
|
2837
3105
|
[k: string]: unknown;
|
|
2838
3106
|
};
|
|
@@ -2844,7 +3112,7 @@ export interface Modules {
|
|
|
2844
3112
|
name?: I18NProperty63;
|
|
2845
3113
|
weight?: number;
|
|
2846
3114
|
location?: string;
|
|
2847
|
-
conditions?: (
|
|
3115
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
2848
3116
|
params?: {
|
|
2849
3117
|
[k: string]: unknown;
|
|
2850
3118
|
};
|
|
@@ -3275,7 +3543,7 @@ export interface I18NProperty1 {
|
|
|
3275
3543
|
*
|
|
3276
3544
|
*/
|
|
3277
3545
|
export interface CompositeCondition {
|
|
3278
|
-
conditions?: (
|
|
3546
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
3279
3547
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3280
3548
|
[k: string]: unknown;
|
|
3281
3549
|
}
|
|
@@ -5983,37 +6251,10 @@ export interface Icon10 {
|
|
|
5983
6251
|
*
|
|
5984
6252
|
*/
|
|
5985
6253
|
export interface WebItemTarget1 {
|
|
5986
|
-
options?:
|
|
6254
|
+
options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
|
|
5987
6255
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5988
6256
|
[k: string]: unknown;
|
|
5989
6257
|
}
|
|
5990
|
-
/**
|
|
5991
|
-
*
|
|
5992
|
-
*
|
|
5993
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5994
|
-
*
|
|
5995
|
-
* <h3>Example</h3>
|
|
5996
|
-
*
|
|
5997
|
-
*
|
|
5998
|
-
*
|
|
5999
|
-
*
|
|
6000
|
-
*
|
|
6001
|
-
* {
|
|
6002
|
-
* "target": {
|
|
6003
|
-
* "type": "dialogmodule",
|
|
6004
|
-
* "options": {
|
|
6005
|
-
* "key": "dialog-module-key"
|
|
6006
|
-
* }
|
|
6007
|
-
* }
|
|
6008
|
-
* }
|
|
6009
|
-
*
|
|
6010
|
-
*
|
|
6011
|
-
*
|
|
6012
|
-
*/
|
|
6013
|
-
export interface DialogModuleOptions1 {
|
|
6014
|
-
key: string;
|
|
6015
|
-
[k: string]: unknown;
|
|
6016
|
-
}
|
|
6017
6258
|
/**
|
|
6018
6259
|
*
|
|
6019
6260
|
*
|
|
@@ -6112,6 +6353,33 @@ export interface I18NProperty58 {
|
|
|
6112
6353
|
i18n?: string;
|
|
6113
6354
|
[k: string]: unknown;
|
|
6114
6355
|
}
|
|
6356
|
+
/**
|
|
6357
|
+
*
|
|
6358
|
+
*
|
|
6359
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6360
|
+
*
|
|
6361
|
+
* <h3>Example</h3>
|
|
6362
|
+
*
|
|
6363
|
+
*
|
|
6364
|
+
*
|
|
6365
|
+
*
|
|
6366
|
+
*
|
|
6367
|
+
* {
|
|
6368
|
+
* "target": {
|
|
6369
|
+
* "type": "dialogmodule",
|
|
6370
|
+
* "options": {
|
|
6371
|
+
* "key": "dialog-module-key"
|
|
6372
|
+
* }
|
|
6373
|
+
* }
|
|
6374
|
+
* }
|
|
6375
|
+
*
|
|
6376
|
+
*
|
|
6377
|
+
*
|
|
6378
|
+
*/
|
|
6379
|
+
export interface DialogModuleOptions1 {
|
|
6380
|
+
key: string;
|
|
6381
|
+
[k: string]: unknown;
|
|
6382
|
+
}
|
|
6115
6383
|
/**
|
|
6116
6384
|
*
|
|
6117
6385
|
*
|
|
@@ -6599,37 +6867,6 @@ export interface I18NProperty63 {
|
|
|
6599
6867
|
i18n?: string;
|
|
6600
6868
|
[k: string]: unknown;
|
|
6601
6869
|
}
|
|
6602
|
-
/**
|
|
6603
|
-
*
|
|
6604
|
-
*
|
|
6605
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6606
|
-
* [Conditions](../../conditions/) for more information.
|
|
6607
|
-
*
|
|
6608
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6609
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6610
|
-
*
|
|
6611
|
-
* <h3>Example</h3>
|
|
6612
|
-
*
|
|
6613
|
-
*
|
|
6614
|
-
*
|
|
6615
|
-
*
|
|
6616
|
-
*
|
|
6617
|
-
* {
|
|
6618
|
-
* "condition": "user_is_logged_in",
|
|
6619
|
-
* "invert": false
|
|
6620
|
-
* }
|
|
6621
|
-
*
|
|
6622
|
-
*
|
|
6623
|
-
*
|
|
6624
|
-
*/
|
|
6625
|
-
export interface SingleCondition5 {
|
|
6626
|
-
condition: string;
|
|
6627
|
-
invert?: boolean;
|
|
6628
|
-
params?: {
|
|
6629
|
-
[k: string]: unknown;
|
|
6630
|
-
};
|
|
6631
|
-
[k: string]: unknown;
|
|
6632
|
-
}
|
|
6633
6870
|
/**
|
|
6634
6871
|
*
|
|
6635
6872
|
*
|
|
@@ -6667,10 +6904,41 @@ export interface SingleCondition5 {
|
|
|
6667
6904
|
*
|
|
6668
6905
|
*/
|
|
6669
6906
|
export interface CompositeCondition7 {
|
|
6670
|
-
conditions?: (
|
|
6907
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6671
6908
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6672
6909
|
[k: string]: unknown;
|
|
6673
6910
|
}
|
|
6911
|
+
/**
|
|
6912
|
+
*
|
|
6913
|
+
*
|
|
6914
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6915
|
+
* [Conditions](../../conditions/) for more information.
|
|
6916
|
+
*
|
|
6917
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6918
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6919
|
+
*
|
|
6920
|
+
* <h3>Example</h3>
|
|
6921
|
+
*
|
|
6922
|
+
*
|
|
6923
|
+
*
|
|
6924
|
+
*
|
|
6925
|
+
*
|
|
6926
|
+
* {
|
|
6927
|
+
* "condition": "user_is_logged_in",
|
|
6928
|
+
* "invert": false
|
|
6929
|
+
* }
|
|
6930
|
+
*
|
|
6931
|
+
*
|
|
6932
|
+
*
|
|
6933
|
+
*/
|
|
6934
|
+
export interface SingleCondition5 {
|
|
6935
|
+
condition: string;
|
|
6936
|
+
invert?: boolean;
|
|
6937
|
+
params?: {
|
|
6938
|
+
[k: string]: unknown;
|
|
6939
|
+
};
|
|
6940
|
+
[k: string]: unknown;
|
|
6941
|
+
}
|
|
6674
6942
|
/**
|
|
6675
6943
|
*
|
|
6676
6944
|
*
|
|
@@ -8090,11 +8358,39 @@ export interface I18NProperty74 {
|
|
|
8090
8358
|
*
|
|
8091
8359
|
*/
|
|
8092
8360
|
export interface MacroPropertyPanel {
|
|
8093
|
-
controls?: (
|
|
8361
|
+
controls?: (TextControl | ButtonControl | ToggleGroup | ControlGroup)[];
|
|
8094
8362
|
cacheable?: boolean;
|
|
8095
8363
|
url: string;
|
|
8096
8364
|
[k: string]: unknown;
|
|
8097
8365
|
}
|
|
8366
|
+
/**
|
|
8367
|
+
*
|
|
8368
|
+
*
|
|
8369
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8370
|
+
*
|
|
8371
|
+
* <p><b>Example</b></p>
|
|
8372
|
+
*
|
|
8373
|
+
*
|
|
8374
|
+
*
|
|
8375
|
+
*
|
|
8376
|
+
*
|
|
8377
|
+
* {
|
|
8378
|
+
* "type": "button",
|
|
8379
|
+
* "label": {
|
|
8380
|
+
* "value": "My Custom Control 0"
|
|
8381
|
+
* },
|
|
8382
|
+
* "key": "my-custom-control-0"
|
|
8383
|
+
* }
|
|
8384
|
+
*
|
|
8385
|
+
*
|
|
8386
|
+
*
|
|
8387
|
+
*/
|
|
8388
|
+
export interface TextControl {
|
|
8389
|
+
macroParameter: string;
|
|
8390
|
+
type: 'text' | 'TEXT';
|
|
8391
|
+
key: string;
|
|
8392
|
+
[k: string]: unknown;
|
|
8393
|
+
}
|
|
8098
8394
|
/**
|
|
8099
8395
|
*
|
|
8100
8396
|
*
|
|
@@ -8150,7 +8446,7 @@ export interface I18NProperty75 {
|
|
|
8150
8446
|
/**
|
|
8151
8447
|
*
|
|
8152
8448
|
*
|
|
8153
|
-
* Defines a
|
|
8449
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8154
8450
|
*
|
|
8155
8451
|
* <p><b>Example</b></p>
|
|
8156
8452
|
*
|
|
@@ -8160,21 +8456,24 @@ export interface I18NProperty75 {
|
|
|
8160
8456
|
*
|
|
8161
8457
|
* [
|
|
8162
8458
|
* {
|
|
8163
|
-
* "type": "
|
|
8459
|
+
* "type": "togglegroup",
|
|
8460
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8164
8461
|
* "controls": [
|
|
8165
8462
|
* {
|
|
8166
|
-
* "type": "
|
|
8463
|
+
* "type": "togglebutton",
|
|
8464
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8167
8465
|
* "label": {
|
|
8168
8466
|
* "value": "My Custom Control 0"
|
|
8169
8467
|
* },
|
|
8170
|
-
* "key": "my-custom-
|
|
8468
|
+
* "key": "my-custom-toggle-button-0"
|
|
8171
8469
|
* },
|
|
8172
8470
|
* {
|
|
8173
|
-
* "type": "
|
|
8471
|
+
* "type": "togglebutton",
|
|
8472
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8174
8473
|
* "label": {
|
|
8175
8474
|
* "value": "My Custom Control 1"
|
|
8176
8475
|
* },
|
|
8177
|
-
* "key": "my-custom-
|
|
8476
|
+
* "key": "my-custom-toggle-button-1"
|
|
8178
8477
|
* }
|
|
8179
8478
|
* ]
|
|
8180
8479
|
* }
|
|
@@ -8183,15 +8482,16 @@ export interface I18NProperty75 {
|
|
|
8183
8482
|
*
|
|
8184
8483
|
*
|
|
8185
8484
|
*/
|
|
8186
|
-
export interface
|
|
8187
|
-
controls:
|
|
8188
|
-
|
|
8485
|
+
export interface ToggleGroup {
|
|
8486
|
+
controls: ToggleButtonControl[];
|
|
8487
|
+
macroParameter: string;
|
|
8488
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8189
8489
|
[k: string]: unknown;
|
|
8190
8490
|
}
|
|
8191
8491
|
/**
|
|
8192
8492
|
*
|
|
8193
8493
|
*
|
|
8194
|
-
* Defines a button which
|
|
8494
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8195
8495
|
*
|
|
8196
8496
|
* <p><b>Example</b></p>
|
|
8197
8497
|
*
|
|
@@ -8200,19 +8500,21 @@ export interface ControlGroup {
|
|
|
8200
8500
|
*
|
|
8201
8501
|
*
|
|
8202
8502
|
* {
|
|
8203
|
-
* "type": "
|
|
8503
|
+
* "type": "togglebutton",
|
|
8504
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8204
8505
|
* "label": {
|
|
8205
8506
|
* "value": "My Custom Control 0"
|
|
8206
8507
|
* },
|
|
8207
|
-
* "key": "my-custom-
|
|
8508
|
+
* "key": "my-custom-toggle-button-0"
|
|
8208
8509
|
* }
|
|
8209
8510
|
*
|
|
8210
8511
|
*
|
|
8211
8512
|
*
|
|
8212
8513
|
*/
|
|
8213
|
-
export interface
|
|
8514
|
+
export interface ToggleButtonControl {
|
|
8515
|
+
macroParameterValue: string;
|
|
8214
8516
|
label: I18NProperty76;
|
|
8215
|
-
type: '
|
|
8517
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8216
8518
|
key: string;
|
|
8217
8519
|
[k: string]: unknown;
|
|
8218
8520
|
}
|
|
@@ -8243,35 +8545,7 @@ export interface I18NProperty76 {
|
|
|
8243
8545
|
/**
|
|
8244
8546
|
*
|
|
8245
8547
|
*
|
|
8246
|
-
* Defines a
|
|
8247
|
-
*
|
|
8248
|
-
* <p><b>Example</b></p>
|
|
8249
|
-
*
|
|
8250
|
-
*
|
|
8251
|
-
*
|
|
8252
|
-
*
|
|
8253
|
-
*
|
|
8254
|
-
* {
|
|
8255
|
-
* "type": "button",
|
|
8256
|
-
* "label": {
|
|
8257
|
-
* "value": "My Custom Control 0"
|
|
8258
|
-
* },
|
|
8259
|
-
* "key": "my-custom-control-0"
|
|
8260
|
-
* }
|
|
8261
|
-
*
|
|
8262
|
-
*
|
|
8263
|
-
*
|
|
8264
|
-
*/
|
|
8265
|
-
export interface TextControl {
|
|
8266
|
-
macroParameter: string;
|
|
8267
|
-
type: 'text' | 'TEXT';
|
|
8268
|
-
key: string;
|
|
8269
|
-
[k: string]: unknown;
|
|
8270
|
-
}
|
|
8271
|
-
/**
|
|
8272
|
-
*
|
|
8273
|
-
*
|
|
8274
|
-
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8548
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8275
8549
|
*
|
|
8276
8550
|
* <p><b>Example</b></p>
|
|
8277
8551
|
*
|
|
@@ -8281,24 +8555,21 @@ export interface TextControl {
|
|
|
8281
8555
|
*
|
|
8282
8556
|
* [
|
|
8283
8557
|
* {
|
|
8284
|
-
* "type": "
|
|
8285
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
8558
|
+
* "type": "group",
|
|
8286
8559
|
* "controls": [
|
|
8287
8560
|
* {
|
|
8288
|
-
* "type": "
|
|
8289
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8561
|
+
* "type": "button",
|
|
8290
8562
|
* "label": {
|
|
8291
8563
|
* "value": "My Custom Control 0"
|
|
8292
8564
|
* },
|
|
8293
|
-
* "key": "my-custom-
|
|
8565
|
+
* "key": "my-custom-control-0"
|
|
8294
8566
|
* },
|
|
8295
8567
|
* {
|
|
8296
|
-
* "type": "
|
|
8297
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8568
|
+
* "type": "button",
|
|
8298
8569
|
* "label": {
|
|
8299
8570
|
* "value": "My Custom Control 1"
|
|
8300
8571
|
* },
|
|
8301
|
-
* "key": "my-custom-
|
|
8572
|
+
* "key": "my-custom-control-1"
|
|
8302
8573
|
* }
|
|
8303
8574
|
* ]
|
|
8304
8575
|
* }
|
|
@@ -8307,16 +8578,15 @@ export interface TextControl {
|
|
|
8307
8578
|
*
|
|
8308
8579
|
*
|
|
8309
8580
|
*/
|
|
8310
|
-
export interface
|
|
8311
|
-
controls:
|
|
8312
|
-
|
|
8313
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8581
|
+
export interface ControlGroup {
|
|
8582
|
+
controls: ButtonControl1[];
|
|
8583
|
+
type: 'group' | 'GROUP';
|
|
8314
8584
|
[k: string]: unknown;
|
|
8315
8585
|
}
|
|
8316
8586
|
/**
|
|
8317
8587
|
*
|
|
8318
8588
|
*
|
|
8319
|
-
* Defines a
|
|
8589
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8320
8590
|
*
|
|
8321
8591
|
* <p><b>Example</b></p>
|
|
8322
8592
|
*
|
|
@@ -8325,21 +8595,19 @@ export interface ToggleGroup {
|
|
|
8325
8595
|
*
|
|
8326
8596
|
*
|
|
8327
8597
|
* {
|
|
8328
|
-
* "type": "
|
|
8329
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8598
|
+
* "type": "button",
|
|
8330
8599
|
* "label": {
|
|
8331
8600
|
* "value": "My Custom Control 0"
|
|
8332
8601
|
* },
|
|
8333
|
-
* "key": "my-custom-
|
|
8602
|
+
* "key": "my-custom-control-0"
|
|
8334
8603
|
* }
|
|
8335
8604
|
*
|
|
8336
8605
|
*
|
|
8337
8606
|
*
|
|
8338
8607
|
*/
|
|
8339
|
-
export interface
|
|
8340
|
-
macroParameterValue: string;
|
|
8608
|
+
export interface ButtonControl1 {
|
|
8341
8609
|
label: I18NProperty77;
|
|
8342
|
-
type: '
|
|
8610
|
+
type: 'button' | 'BUTTON';
|
|
8343
8611
|
key: string;
|
|
8344
8612
|
[k: string]: unknown;
|
|
8345
8613
|
}
|
|
@@ -29335,7 +29603,7 @@ export interface I18NProperty83 {
|
|
|
29335
29603
|
*
|
|
29336
29604
|
*/
|
|
29337
29605
|
export interface MacroPropertyPanel1 {
|
|
29338
|
-
controls?: (
|
|
29606
|
+
controls?: (ToggleGroup1 | ControlGroup1 | TextControl1 | ButtonControl3)[];
|
|
29339
29607
|
cacheable?: boolean;
|
|
29340
29608
|
url: string;
|
|
29341
29609
|
[k: string]: unknown;
|
|
@@ -29343,7 +29611,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29343
29611
|
/**
|
|
29344
29612
|
*
|
|
29345
29613
|
*
|
|
29346
|
-
* Defines a
|
|
29614
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29347
29615
|
*
|
|
29348
29616
|
* <p><b>Example</b></p>
|
|
29349
29617
|
*
|
|
@@ -29351,27 +29619,44 @@ export interface MacroPropertyPanel1 {
|
|
|
29351
29619
|
*
|
|
29352
29620
|
*
|
|
29353
29621
|
*
|
|
29354
|
-
*
|
|
29355
|
-
*
|
|
29356
|
-
*
|
|
29357
|
-
* "
|
|
29358
|
-
*
|
|
29359
|
-
*
|
|
29360
|
-
*
|
|
29622
|
+
* [
|
|
29623
|
+
* {
|
|
29624
|
+
* "type": "togglegroup",
|
|
29625
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29626
|
+
* "controls": [
|
|
29627
|
+
* {
|
|
29628
|
+
* "type": "togglebutton",
|
|
29629
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29630
|
+
* "label": {
|
|
29631
|
+
* "value": "My Custom Control 0"
|
|
29632
|
+
* },
|
|
29633
|
+
* "key": "my-custom-toggle-button-0"
|
|
29634
|
+
* },
|
|
29635
|
+
* {
|
|
29636
|
+
* "type": "togglebutton",
|
|
29637
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29638
|
+
* "label": {
|
|
29639
|
+
* "value": "My Custom Control 1"
|
|
29640
|
+
* },
|
|
29641
|
+
* "key": "my-custom-toggle-button-1"
|
|
29642
|
+
* }
|
|
29643
|
+
* ]
|
|
29644
|
+
* }
|
|
29645
|
+
* ]
|
|
29361
29646
|
*
|
|
29362
29647
|
*
|
|
29363
29648
|
*
|
|
29364
29649
|
*/
|
|
29365
|
-
export interface
|
|
29650
|
+
export interface ToggleGroup1 {
|
|
29651
|
+
controls: ToggleButtonControl1[];
|
|
29366
29652
|
macroParameter: string;
|
|
29367
|
-
type: '
|
|
29368
|
-
key: string;
|
|
29653
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29369
29654
|
[k: string]: unknown;
|
|
29370
29655
|
}
|
|
29371
29656
|
/**
|
|
29372
29657
|
*
|
|
29373
29658
|
*
|
|
29374
|
-
* Defines a button which
|
|
29659
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29375
29660
|
*
|
|
29376
29661
|
* <p><b>Example</b></p>
|
|
29377
29662
|
*
|
|
@@ -29380,19 +29665,21 @@ export interface TextControl1 {
|
|
|
29380
29665
|
*
|
|
29381
29666
|
*
|
|
29382
29667
|
* {
|
|
29383
|
-
* "type": "
|
|
29668
|
+
* "type": "togglebutton",
|
|
29669
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29384
29670
|
* "label": {
|
|
29385
29671
|
* "value": "My Custom Control 0"
|
|
29386
29672
|
* },
|
|
29387
|
-
* "key": "my-custom-
|
|
29673
|
+
* "key": "my-custom-toggle-button-0"
|
|
29388
29674
|
* }
|
|
29389
29675
|
*
|
|
29390
29676
|
*
|
|
29391
29677
|
*
|
|
29392
29678
|
*/
|
|
29393
|
-
export interface
|
|
29679
|
+
export interface ToggleButtonControl1 {
|
|
29680
|
+
macroParameterValue: string;
|
|
29394
29681
|
label: I18NProperty84;
|
|
29395
|
-
type: '
|
|
29682
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29396
29683
|
key: string;
|
|
29397
29684
|
[k: string]: unknown;
|
|
29398
29685
|
}
|
|
@@ -29457,7 +29744,7 @@ export interface I18NProperty84 {
|
|
|
29457
29744
|
*
|
|
29458
29745
|
*/
|
|
29459
29746
|
export interface ControlGroup1 {
|
|
29460
|
-
controls:
|
|
29747
|
+
controls: ButtonControl2[];
|
|
29461
29748
|
type: 'group' | 'GROUP';
|
|
29462
29749
|
[k: string]: unknown;
|
|
29463
29750
|
}
|
|
@@ -29483,7 +29770,7 @@ export interface ControlGroup1 {
|
|
|
29483
29770
|
*
|
|
29484
29771
|
*
|
|
29485
29772
|
*/
|
|
29486
|
-
export interface
|
|
29773
|
+
export interface ButtonControl2 {
|
|
29487
29774
|
label: I18NProperty85;
|
|
29488
29775
|
type: 'button' | 'BUTTON';
|
|
29489
29776
|
key: string;
|
|
@@ -29516,7 +29803,7 @@ export interface I18NProperty85 {
|
|
|
29516
29803
|
/**
|
|
29517
29804
|
*
|
|
29518
29805
|
*
|
|
29519
|
-
* Defines a
|
|
29806
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29520
29807
|
*
|
|
29521
29808
|
* <p><b>Example</b></p>
|
|
29522
29809
|
*
|
|
@@ -29524,44 +29811,27 @@ export interface I18NProperty85 {
|
|
|
29524
29811
|
*
|
|
29525
29812
|
*
|
|
29526
29813
|
*
|
|
29527
|
-
*
|
|
29528
|
-
*
|
|
29529
|
-
*
|
|
29530
|
-
* "
|
|
29531
|
-
*
|
|
29532
|
-
*
|
|
29533
|
-
*
|
|
29534
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29535
|
-
* "label": {
|
|
29536
|
-
* "value": "My Custom Control 0"
|
|
29537
|
-
* },
|
|
29538
|
-
* "key": "my-custom-toggle-button-0"
|
|
29539
|
-
* },
|
|
29540
|
-
* {
|
|
29541
|
-
* "type": "togglebutton",
|
|
29542
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29543
|
-
* "label": {
|
|
29544
|
-
* "value": "My Custom Control 1"
|
|
29545
|
-
* },
|
|
29546
|
-
* "key": "my-custom-toggle-button-1"
|
|
29547
|
-
* }
|
|
29548
|
-
* ]
|
|
29549
|
-
* }
|
|
29550
|
-
* ]
|
|
29814
|
+
* {
|
|
29815
|
+
* "type": "button",
|
|
29816
|
+
* "label": {
|
|
29817
|
+
* "value": "My Custom Control 0"
|
|
29818
|
+
* },
|
|
29819
|
+
* "key": "my-custom-control-0"
|
|
29820
|
+
* }
|
|
29551
29821
|
*
|
|
29552
29822
|
*
|
|
29553
29823
|
*
|
|
29554
29824
|
*/
|
|
29555
|
-
export interface
|
|
29556
|
-
controls: ToggleButtonControl1[];
|
|
29825
|
+
export interface TextControl1 {
|
|
29557
29826
|
macroParameter: string;
|
|
29558
|
-
type: '
|
|
29827
|
+
type: 'text' | 'TEXT';
|
|
29828
|
+
key: string;
|
|
29559
29829
|
[k: string]: unknown;
|
|
29560
29830
|
}
|
|
29561
29831
|
/**
|
|
29562
29832
|
*
|
|
29563
29833
|
*
|
|
29564
|
-
* Defines a
|
|
29834
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29565
29835
|
*
|
|
29566
29836
|
* <p><b>Example</b></p>
|
|
29567
29837
|
*
|
|
@@ -29570,21 +29840,19 @@ export interface ToggleGroup1 {
|
|
|
29570
29840
|
*
|
|
29571
29841
|
*
|
|
29572
29842
|
* {
|
|
29573
|
-
* "type": "
|
|
29574
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29843
|
+
* "type": "button",
|
|
29575
29844
|
* "label": {
|
|
29576
29845
|
* "value": "My Custom Control 0"
|
|
29577
29846
|
* },
|
|
29578
|
-
* "key": "my-custom-
|
|
29847
|
+
* "key": "my-custom-control-0"
|
|
29579
29848
|
* }
|
|
29580
29849
|
*
|
|
29581
29850
|
*
|
|
29582
29851
|
*
|
|
29583
29852
|
*/
|
|
29584
|
-
export interface
|
|
29585
|
-
macroParameterValue: string;
|
|
29853
|
+
export interface ButtonControl3 {
|
|
29586
29854
|
label: I18NProperty86;
|
|
29587
|
-
type: '
|
|
29855
|
+
type: 'button' | 'BUTTON';
|
|
29588
29856
|
key: string;
|
|
29589
29857
|
[k: string]: unknown;
|
|
29590
29858
|
}
|
|
@@ -50461,74 +50729,10 @@ export interface I18NProperty91 {
|
|
|
50461
50729
|
*
|
|
50462
50730
|
*/
|
|
50463
50731
|
export interface WebItemTarget2 {
|
|
50464
|
-
options?:
|
|
50732
|
+
options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
|
|
50465
50733
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50466
50734
|
[k: string]: unknown;
|
|
50467
50735
|
}
|
|
50468
|
-
/**
|
|
50469
|
-
*
|
|
50470
|
-
*
|
|
50471
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50472
|
-
*
|
|
50473
|
-
* <h3>Example</h3>
|
|
50474
|
-
*
|
|
50475
|
-
*
|
|
50476
|
-
*
|
|
50477
|
-
*
|
|
50478
|
-
*
|
|
50479
|
-
* {
|
|
50480
|
-
* "target": {
|
|
50481
|
-
* "type": "dialogmodule",
|
|
50482
|
-
* "options": {
|
|
50483
|
-
* "key": "dialog-module-key"
|
|
50484
|
-
* }
|
|
50485
|
-
* }
|
|
50486
|
-
* }
|
|
50487
|
-
*
|
|
50488
|
-
*
|
|
50489
|
-
*
|
|
50490
|
-
*/
|
|
50491
|
-
export interface DialogModuleOptions2 {
|
|
50492
|
-
key: string;
|
|
50493
|
-
[k: string]: unknown;
|
|
50494
|
-
}
|
|
50495
|
-
/**
|
|
50496
|
-
*
|
|
50497
|
-
*
|
|
50498
|
-
* Options for an inline dialog target
|
|
50499
|
-
*
|
|
50500
|
-
* <h3>Example</h3>
|
|
50501
|
-
*
|
|
50502
|
-
*
|
|
50503
|
-
*
|
|
50504
|
-
*
|
|
50505
|
-
*
|
|
50506
|
-
* {
|
|
50507
|
-
* "target": {
|
|
50508
|
-
* "type": "inlinedialog",
|
|
50509
|
-
* "options": {
|
|
50510
|
-
* "onHover": true,
|
|
50511
|
-
* "offsetX": "30px",
|
|
50512
|
-
* "offsetY": "20px"
|
|
50513
|
-
* }
|
|
50514
|
-
* }
|
|
50515
|
-
* }
|
|
50516
|
-
*
|
|
50517
|
-
*
|
|
50518
|
-
*
|
|
50519
|
-
*/
|
|
50520
|
-
export interface InlineDialogOptions2 {
|
|
50521
|
-
offsetX?: string;
|
|
50522
|
-
offsetY?: string;
|
|
50523
|
-
width?: string;
|
|
50524
|
-
onTop?: boolean;
|
|
50525
|
-
showDelay?: number;
|
|
50526
|
-
closeOthers?: boolean;
|
|
50527
|
-
persistent?: boolean;
|
|
50528
|
-
onHover?: boolean;
|
|
50529
|
-
isRelativeToMouse?: boolean;
|
|
50530
|
-
[k: string]: unknown;
|
|
50531
|
-
}
|
|
50532
50736
|
/**
|
|
50533
50737
|
*
|
|
50534
50738
|
*
|
|
@@ -50627,6 +50831,70 @@ export interface I18NProperty92 {
|
|
|
50627
50831
|
i18n?: string;
|
|
50628
50832
|
[k: string]: unknown;
|
|
50629
50833
|
}
|
|
50834
|
+
/**
|
|
50835
|
+
*
|
|
50836
|
+
*
|
|
50837
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50838
|
+
*
|
|
50839
|
+
* <h3>Example</h3>
|
|
50840
|
+
*
|
|
50841
|
+
*
|
|
50842
|
+
*
|
|
50843
|
+
*
|
|
50844
|
+
*
|
|
50845
|
+
* {
|
|
50846
|
+
* "target": {
|
|
50847
|
+
* "type": "dialogmodule",
|
|
50848
|
+
* "options": {
|
|
50849
|
+
* "key": "dialog-module-key"
|
|
50850
|
+
* }
|
|
50851
|
+
* }
|
|
50852
|
+
* }
|
|
50853
|
+
*
|
|
50854
|
+
*
|
|
50855
|
+
*
|
|
50856
|
+
*/
|
|
50857
|
+
export interface DialogModuleOptions2 {
|
|
50858
|
+
key: string;
|
|
50859
|
+
[k: string]: unknown;
|
|
50860
|
+
}
|
|
50861
|
+
/**
|
|
50862
|
+
*
|
|
50863
|
+
*
|
|
50864
|
+
* Options for an inline dialog target
|
|
50865
|
+
*
|
|
50866
|
+
* <h3>Example</h3>
|
|
50867
|
+
*
|
|
50868
|
+
*
|
|
50869
|
+
*
|
|
50870
|
+
*
|
|
50871
|
+
*
|
|
50872
|
+
* {
|
|
50873
|
+
* "target": {
|
|
50874
|
+
* "type": "inlinedialog",
|
|
50875
|
+
* "options": {
|
|
50876
|
+
* "onHover": true,
|
|
50877
|
+
* "offsetX": "30px",
|
|
50878
|
+
* "offsetY": "20px"
|
|
50879
|
+
* }
|
|
50880
|
+
* }
|
|
50881
|
+
* }
|
|
50882
|
+
*
|
|
50883
|
+
*
|
|
50884
|
+
*
|
|
50885
|
+
*/
|
|
50886
|
+
export interface InlineDialogOptions2 {
|
|
50887
|
+
offsetX?: string;
|
|
50888
|
+
offsetY?: string;
|
|
50889
|
+
width?: string;
|
|
50890
|
+
onTop?: boolean;
|
|
50891
|
+
showDelay?: number;
|
|
50892
|
+
closeOthers?: boolean;
|
|
50893
|
+
persistent?: boolean;
|
|
50894
|
+
onHover?: boolean;
|
|
50895
|
+
isRelativeToMouse?: boolean;
|
|
50896
|
+
[k: string]: unknown;
|
|
50897
|
+
}
|
|
50630
50898
|
/**
|
|
50631
50899
|
*
|
|
50632
50900
|
*
|