@forge/manifest 2.2.1-next.0 → 2.2.1-next.4
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 +32 -0
- package/out/schema/manifest-schema.json +315 -262
- package/out/schema/manifest.d.ts +260 -234
- package/out/scopes/shipyard-scopes.json +61 -20
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1288,20 +1288,46 @@ export interface Modules {
|
|
|
1288
1288
|
)[]
|
|
1289
1289
|
];
|
|
1290
1290
|
'compass:adminPage'?: [
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1291
|
+
(
|
|
1292
|
+
| {
|
|
1293
|
+
title: string;
|
|
1294
|
+
icon?: string;
|
|
1295
|
+
function: string;
|
|
1296
|
+
key: ModuleKeySchema;
|
|
1297
|
+
[k: string]: unknown;
|
|
1298
|
+
}
|
|
1299
|
+
| {
|
|
1300
|
+
title: string;
|
|
1301
|
+
icon?: string;
|
|
1302
|
+
resolver?: {
|
|
1303
|
+
function: string;
|
|
1304
|
+
};
|
|
1305
|
+
resource: string;
|
|
1306
|
+
resourceUploadId?: string;
|
|
1307
|
+
key: ModuleKeySchema;
|
|
1308
|
+
[k: string]: unknown;
|
|
1309
|
+
}
|
|
1310
|
+
),
|
|
1311
|
+
...(
|
|
1312
|
+
| {
|
|
1313
|
+
title: string;
|
|
1314
|
+
icon?: string;
|
|
1315
|
+
function: string;
|
|
1316
|
+
key: ModuleKeySchema;
|
|
1317
|
+
[k: string]: unknown;
|
|
1318
|
+
}
|
|
1319
|
+
| {
|
|
1320
|
+
title: string;
|
|
1321
|
+
icon?: string;
|
|
1322
|
+
resolver?: {
|
|
1323
|
+
function: string;
|
|
1324
|
+
};
|
|
1325
|
+
resource: string;
|
|
1326
|
+
resourceUploadId?: string;
|
|
1327
|
+
key: ModuleKeySchema;
|
|
1328
|
+
[k: string]: unknown;
|
|
1329
|
+
}
|
|
1330
|
+
)[]
|
|
1305
1331
|
];
|
|
1306
1332
|
'compass:componentPage'?: [
|
|
1307
1333
|
(
|
|
@@ -1454,7 +1480,7 @@ export interface Modules {
|
|
|
1454
1480
|
filter?: string;
|
|
1455
1481
|
excludeBody?: boolean;
|
|
1456
1482
|
event?: string;
|
|
1457
|
-
conditions?: (
|
|
1483
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
1458
1484
|
propertyKeys?: string[];
|
|
1459
1485
|
url?: string;
|
|
1460
1486
|
key: ModuleKeySchema;
|
|
@@ -1464,7 +1490,7 @@ export interface Modules {
|
|
|
1464
1490
|
filter?: string;
|
|
1465
1491
|
excludeBody?: boolean;
|
|
1466
1492
|
event?: string;
|
|
1467
|
-
conditions?: (
|
|
1493
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
1468
1494
|
propertyKeys?: string[];
|
|
1469
1495
|
url?: string;
|
|
1470
1496
|
key: ModuleKeySchema;
|
|
@@ -1507,7 +1533,7 @@ export interface Modules {
|
|
|
1507
1533
|
name?: I18NProperty6;
|
|
1508
1534
|
weight?: number;
|
|
1509
1535
|
location?: string;
|
|
1510
|
-
conditions?: (
|
|
1536
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
1511
1537
|
params?: {
|
|
1512
1538
|
[k: string]: unknown;
|
|
1513
1539
|
};
|
|
@@ -1519,7 +1545,7 @@ export interface Modules {
|
|
|
1519
1545
|
name?: I18NProperty6;
|
|
1520
1546
|
weight?: number;
|
|
1521
1547
|
location?: string;
|
|
1522
|
-
conditions?: (
|
|
1548
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
1523
1549
|
params?: {
|
|
1524
1550
|
[k: string]: unknown;
|
|
1525
1551
|
};
|
|
@@ -1572,7 +1598,7 @@ export interface Modules {
|
|
|
1572
1598
|
name?: I18NProperty10;
|
|
1573
1599
|
location?: string;
|
|
1574
1600
|
cacheable?: boolean;
|
|
1575
|
-
conditions?: (
|
|
1601
|
+
conditions?: (CompositeCondition1 | SingleCondition1)[];
|
|
1576
1602
|
key: ModuleKeySchema;
|
|
1577
1603
|
[k: string]: unknown;
|
|
1578
1604
|
},
|
|
@@ -1590,7 +1616,7 @@ export interface Modules {
|
|
|
1590
1616
|
name?: I18NProperty10;
|
|
1591
1617
|
location?: string;
|
|
1592
1618
|
cacheable?: boolean;
|
|
1593
|
-
conditions?: (
|
|
1619
|
+
conditions?: (CompositeCondition1 | SingleCondition1)[];
|
|
1594
1620
|
key: ModuleKeySchema;
|
|
1595
1621
|
[k: string]: unknown;
|
|
1596
1622
|
}[]
|
|
@@ -1828,7 +1854,7 @@ export interface Modules {
|
|
|
1828
1854
|
name?: I18NProperty20;
|
|
1829
1855
|
weight?: number;
|
|
1830
1856
|
iconUrl?: string;
|
|
1831
|
-
conditions?: (
|
|
1857
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
1832
1858
|
url?: string;
|
|
1833
1859
|
key: ModuleKeySchema;
|
|
1834
1860
|
[k: string]: unknown;
|
|
@@ -1837,7 +1863,7 @@ export interface Modules {
|
|
|
1837
1863
|
name?: I18NProperty20;
|
|
1838
1864
|
weight?: number;
|
|
1839
1865
|
iconUrl?: string;
|
|
1840
|
-
conditions?: (
|
|
1866
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
1841
1867
|
url?: string;
|
|
1842
1868
|
key: ModuleKeySchema;
|
|
1843
1869
|
[k: string]: unknown;
|
|
@@ -1940,7 +1966,7 @@ export interface Modules {
|
|
|
1940
1966
|
icon?: Icon6;
|
|
1941
1967
|
tooltip?: I18NProperty29;
|
|
1942
1968
|
name?: I18NProperty30;
|
|
1943
|
-
conditions?: (
|
|
1969
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
1944
1970
|
target?: IssuePageTargetWebPanel;
|
|
1945
1971
|
contentPresentConditions?: (SingleCondition | CompositeCondition)[];
|
|
1946
1972
|
jiraNativeAppsEnabled?: boolean;
|
|
@@ -1951,7 +1977,7 @@ export interface Modules {
|
|
|
1951
1977
|
icon?: Icon6;
|
|
1952
1978
|
tooltip?: I18NProperty29;
|
|
1953
1979
|
name?: I18NProperty30;
|
|
1954
|
-
conditions?: (
|
|
1980
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
1955
1981
|
target?: IssuePageTargetWebPanel;
|
|
1956
1982
|
contentPresentConditions?: (SingleCondition | CompositeCondition)[];
|
|
1957
1983
|
jiraNativeAppsEnabled?: boolean;
|
|
@@ -2182,7 +2208,7 @@ export interface Modules {
|
|
|
2182
2208
|
name?: I18NProperty44;
|
|
2183
2209
|
weight?: number;
|
|
2184
2210
|
location?: string;
|
|
2185
|
-
conditions?: (
|
|
2211
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2186
2212
|
params?: {
|
|
2187
2213
|
[k: string]: unknown;
|
|
2188
2214
|
};
|
|
@@ -2194,7 +2220,7 @@ export interface Modules {
|
|
|
2194
2220
|
name?: I18NProperty44;
|
|
2195
2221
|
weight?: number;
|
|
2196
2222
|
location?: string;
|
|
2197
|
-
conditions?: (
|
|
2223
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2198
2224
|
params?: {
|
|
2199
2225
|
[k: string]: unknown;
|
|
2200
2226
|
};
|
|
@@ -2802,7 +2828,7 @@ export interface Modules {
|
|
|
2802
2828
|
icon?: Icon18;
|
|
2803
2829
|
name?: I18NProperty91;
|
|
2804
2830
|
cacheable?: boolean;
|
|
2805
|
-
conditions?: (
|
|
2831
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2806
2832
|
params?: {
|
|
2807
2833
|
[k: string]: unknown;
|
|
2808
2834
|
};
|
|
@@ -2818,7 +2844,7 @@ export interface Modules {
|
|
|
2818
2844
|
icon?: Icon18;
|
|
2819
2845
|
name?: I18NProperty91;
|
|
2820
2846
|
cacheable?: boolean;
|
|
2821
|
-
conditions?: (
|
|
2847
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2822
2848
|
params?: {
|
|
2823
2849
|
[k: string]: unknown;
|
|
2824
2850
|
};
|
|
@@ -3603,37 +3629,6 @@ export interface I18NProperty10 {
|
|
|
3603
3629
|
i18n?: string;
|
|
3604
3630
|
[k: string]: unknown;
|
|
3605
3631
|
}
|
|
3606
|
-
/**
|
|
3607
|
-
*
|
|
3608
|
-
*
|
|
3609
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
3610
|
-
* [Conditions](../../conditions/) for more information.
|
|
3611
|
-
*
|
|
3612
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
3613
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
3614
|
-
*
|
|
3615
|
-
* <h3>Example</h3>
|
|
3616
|
-
*
|
|
3617
|
-
*
|
|
3618
|
-
*
|
|
3619
|
-
*
|
|
3620
|
-
*
|
|
3621
|
-
* {
|
|
3622
|
-
* "condition": "user_is_logged_in",
|
|
3623
|
-
* "invert": false
|
|
3624
|
-
* }
|
|
3625
|
-
*
|
|
3626
|
-
*
|
|
3627
|
-
*
|
|
3628
|
-
*/
|
|
3629
|
-
export interface SingleCondition1 {
|
|
3630
|
-
condition: string;
|
|
3631
|
-
invert?: boolean;
|
|
3632
|
-
params?: {
|
|
3633
|
-
[k: string]: unknown;
|
|
3634
|
-
};
|
|
3635
|
-
[k: string]: unknown;
|
|
3636
|
-
}
|
|
3637
3632
|
/**
|
|
3638
3633
|
*
|
|
3639
3634
|
*
|
|
@@ -3671,10 +3666,41 @@ export interface SingleCondition1 {
|
|
|
3671
3666
|
*
|
|
3672
3667
|
*/
|
|
3673
3668
|
export interface CompositeCondition1 {
|
|
3674
|
-
conditions?: (
|
|
3669
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3675
3670
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3676
3671
|
[k: string]: unknown;
|
|
3677
3672
|
}
|
|
3673
|
+
/**
|
|
3674
|
+
*
|
|
3675
|
+
*
|
|
3676
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
3677
|
+
* [Conditions](../../conditions/) for more information.
|
|
3678
|
+
*
|
|
3679
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
3680
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
3681
|
+
*
|
|
3682
|
+
* <h3>Example</h3>
|
|
3683
|
+
*
|
|
3684
|
+
*
|
|
3685
|
+
*
|
|
3686
|
+
*
|
|
3687
|
+
*
|
|
3688
|
+
* {
|
|
3689
|
+
* "condition": "user_is_logged_in",
|
|
3690
|
+
* "invert": false
|
|
3691
|
+
* }
|
|
3692
|
+
*
|
|
3693
|
+
*
|
|
3694
|
+
*
|
|
3695
|
+
*/
|
|
3696
|
+
export interface SingleCondition1 {
|
|
3697
|
+
condition: string;
|
|
3698
|
+
invert?: boolean;
|
|
3699
|
+
params?: {
|
|
3700
|
+
[k: string]: unknown;
|
|
3701
|
+
};
|
|
3702
|
+
[k: string]: unknown;
|
|
3703
|
+
}
|
|
3678
3704
|
/**
|
|
3679
3705
|
*
|
|
3680
3706
|
*
|
|
@@ -4686,7 +4712,7 @@ export interface CompositeCondition2 {
|
|
|
4686
4712
|
*
|
|
4687
4713
|
*/
|
|
4688
4714
|
export interface CompositeCondition3 {
|
|
4689
|
-
conditions?: (
|
|
4715
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
4690
4716
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4691
4717
|
[k: string]: unknown;
|
|
4692
4718
|
}
|
|
@@ -4991,7 +5017,7 @@ export interface CompositeCondition4 {
|
|
|
4991
5017
|
*
|
|
4992
5018
|
*/
|
|
4993
5019
|
export interface CompositeCondition5 {
|
|
4994
|
-
conditions?: (
|
|
5020
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
4995
5021
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4996
5022
|
[k: string]: unknown;
|
|
4997
5023
|
}
|
|
@@ -5743,10 +5769,37 @@ export interface Icon10 {
|
|
|
5743
5769
|
*
|
|
5744
5770
|
*/
|
|
5745
5771
|
export interface WebItemTarget1 {
|
|
5746
|
-
options?:
|
|
5772
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
5747
5773
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5748
5774
|
[k: string]: unknown;
|
|
5749
5775
|
}
|
|
5776
|
+
/**
|
|
5777
|
+
*
|
|
5778
|
+
*
|
|
5779
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5780
|
+
*
|
|
5781
|
+
* <h3>Example</h3>
|
|
5782
|
+
*
|
|
5783
|
+
*
|
|
5784
|
+
*
|
|
5785
|
+
*
|
|
5786
|
+
*
|
|
5787
|
+
* {
|
|
5788
|
+
* "target": {
|
|
5789
|
+
* "type": "dialogmodule",
|
|
5790
|
+
* "options": {
|
|
5791
|
+
* "key": "dialog-module-key"
|
|
5792
|
+
* }
|
|
5793
|
+
* }
|
|
5794
|
+
* }
|
|
5795
|
+
*
|
|
5796
|
+
*
|
|
5797
|
+
*
|
|
5798
|
+
*/
|
|
5799
|
+
export interface DialogModuleOptions1 {
|
|
5800
|
+
key: string;
|
|
5801
|
+
[k: string]: unknown;
|
|
5802
|
+
}
|
|
5750
5803
|
/**
|
|
5751
5804
|
*
|
|
5752
5805
|
*
|
|
@@ -5882,33 +5935,6 @@ export interface InlineDialogOptions1 {
|
|
|
5882
5935
|
isRelativeToMouse?: boolean;
|
|
5883
5936
|
[k: string]: unknown;
|
|
5884
5937
|
}
|
|
5885
|
-
/**
|
|
5886
|
-
*
|
|
5887
|
-
*
|
|
5888
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5889
|
-
*
|
|
5890
|
-
* <h3>Example</h3>
|
|
5891
|
-
*
|
|
5892
|
-
*
|
|
5893
|
-
*
|
|
5894
|
-
*
|
|
5895
|
-
*
|
|
5896
|
-
* {
|
|
5897
|
-
* "target": {
|
|
5898
|
-
* "type": "dialogmodule",
|
|
5899
|
-
* "options": {
|
|
5900
|
-
* "key": "dialog-module-key"
|
|
5901
|
-
* }
|
|
5902
|
-
* }
|
|
5903
|
-
* }
|
|
5904
|
-
*
|
|
5905
|
-
*
|
|
5906
|
-
*
|
|
5907
|
-
*/
|
|
5908
|
-
export interface DialogModuleOptions1 {
|
|
5909
|
-
key: string;
|
|
5910
|
-
[k: string]: unknown;
|
|
5911
|
-
}
|
|
5912
5938
|
/**
|
|
5913
5939
|
*
|
|
5914
5940
|
*
|
|
@@ -7850,7 +7876,7 @@ export interface I18NProperty74 {
|
|
|
7850
7876
|
*
|
|
7851
7877
|
*/
|
|
7852
7878
|
export interface MacroPropertyPanel {
|
|
7853
|
-
controls?: (
|
|
7879
|
+
controls?: (ControlGroup | ButtonControl1 | ToggleGroup | TextControl)[];
|
|
7854
7880
|
cacheable?: boolean;
|
|
7855
7881
|
url: string;
|
|
7856
7882
|
[k: string]: unknown;
|
|
@@ -7858,7 +7884,7 @@ export interface MacroPropertyPanel {
|
|
|
7858
7884
|
/**
|
|
7859
7885
|
*
|
|
7860
7886
|
*
|
|
7861
|
-
* Defines a
|
|
7887
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
7862
7888
|
*
|
|
7863
7889
|
* <p><b>Example</b></p>
|
|
7864
7890
|
*
|
|
@@ -7868,24 +7894,21 @@ export interface MacroPropertyPanel {
|
|
|
7868
7894
|
*
|
|
7869
7895
|
* [
|
|
7870
7896
|
* {
|
|
7871
|
-
* "type": "
|
|
7872
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
7897
|
+
* "type": "group",
|
|
7873
7898
|
* "controls": [
|
|
7874
7899
|
* {
|
|
7875
|
-
* "type": "
|
|
7876
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
7900
|
+
* "type": "button",
|
|
7877
7901
|
* "label": {
|
|
7878
7902
|
* "value": "My Custom Control 0"
|
|
7879
7903
|
* },
|
|
7880
|
-
* "key": "my-custom-
|
|
7904
|
+
* "key": "my-custom-control-0"
|
|
7881
7905
|
* },
|
|
7882
7906
|
* {
|
|
7883
|
-
* "type": "
|
|
7884
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
7907
|
+
* "type": "button",
|
|
7885
7908
|
* "label": {
|
|
7886
7909
|
* "value": "My Custom Control 1"
|
|
7887
7910
|
* },
|
|
7888
|
-
* "key": "my-custom-
|
|
7911
|
+
* "key": "my-custom-control-1"
|
|
7889
7912
|
* }
|
|
7890
7913
|
* ]
|
|
7891
7914
|
* }
|
|
@@ -7894,16 +7917,15 @@ export interface MacroPropertyPanel {
|
|
|
7894
7917
|
*
|
|
7895
7918
|
*
|
|
7896
7919
|
*/
|
|
7897
|
-
export interface
|
|
7898
|
-
controls:
|
|
7899
|
-
|
|
7900
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
7920
|
+
export interface ControlGroup {
|
|
7921
|
+
controls: ButtonControl[];
|
|
7922
|
+
type: 'group' | 'GROUP';
|
|
7901
7923
|
[k: string]: unknown;
|
|
7902
7924
|
}
|
|
7903
7925
|
/**
|
|
7904
7926
|
*
|
|
7905
7927
|
*
|
|
7906
|
-
* Defines a
|
|
7928
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
7907
7929
|
*
|
|
7908
7930
|
* <p><b>Example</b></p>
|
|
7909
7931
|
*
|
|
@@ -7912,21 +7934,19 @@ export interface ToggleGroup {
|
|
|
7912
7934
|
*
|
|
7913
7935
|
*
|
|
7914
7936
|
* {
|
|
7915
|
-
* "type": "
|
|
7916
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
7937
|
+
* "type": "button",
|
|
7917
7938
|
* "label": {
|
|
7918
7939
|
* "value": "My Custom Control 0"
|
|
7919
7940
|
* },
|
|
7920
|
-
* "key": "my-custom-
|
|
7941
|
+
* "key": "my-custom-control-0"
|
|
7921
7942
|
* }
|
|
7922
7943
|
*
|
|
7923
7944
|
*
|
|
7924
7945
|
*
|
|
7925
7946
|
*/
|
|
7926
|
-
export interface
|
|
7927
|
-
macroParameterValue: string;
|
|
7947
|
+
export interface ButtonControl {
|
|
7928
7948
|
label: I18NProperty75;
|
|
7929
|
-
type: '
|
|
7949
|
+
type: 'button' | 'BUTTON';
|
|
7930
7950
|
key: string;
|
|
7931
7951
|
[k: string]: unknown;
|
|
7932
7952
|
}
|
|
@@ -7954,34 +7974,6 @@ export interface I18NProperty75 {
|
|
|
7954
7974
|
i18n?: string;
|
|
7955
7975
|
[k: string]: unknown;
|
|
7956
7976
|
}
|
|
7957
|
-
/**
|
|
7958
|
-
*
|
|
7959
|
-
*
|
|
7960
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
7961
|
-
*
|
|
7962
|
-
* <p><b>Example</b></p>
|
|
7963
|
-
*
|
|
7964
|
-
*
|
|
7965
|
-
*
|
|
7966
|
-
*
|
|
7967
|
-
*
|
|
7968
|
-
* {
|
|
7969
|
-
* "type": "button",
|
|
7970
|
-
* "label": {
|
|
7971
|
-
* "value": "My Custom Control 0"
|
|
7972
|
-
* },
|
|
7973
|
-
* "key": "my-custom-control-0"
|
|
7974
|
-
* }
|
|
7975
|
-
*
|
|
7976
|
-
*
|
|
7977
|
-
*
|
|
7978
|
-
*/
|
|
7979
|
-
export interface TextControl {
|
|
7980
|
-
macroParameter: string;
|
|
7981
|
-
type: 'text' | 'TEXT';
|
|
7982
|
-
key: string;
|
|
7983
|
-
[k: string]: unknown;
|
|
7984
|
-
}
|
|
7985
7977
|
/**
|
|
7986
7978
|
*
|
|
7987
7979
|
*
|
|
@@ -8004,7 +7996,7 @@ export interface TextControl {
|
|
|
8004
7996
|
*
|
|
8005
7997
|
*
|
|
8006
7998
|
*/
|
|
8007
|
-
export interface
|
|
7999
|
+
export interface ButtonControl1 {
|
|
8008
8000
|
label: I18NProperty76;
|
|
8009
8001
|
type: 'button' | 'BUTTON';
|
|
8010
8002
|
key: string;
|
|
@@ -8037,7 +8029,7 @@ export interface I18NProperty76 {
|
|
|
8037
8029
|
/**
|
|
8038
8030
|
*
|
|
8039
8031
|
*
|
|
8040
|
-
* Defines a
|
|
8032
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8041
8033
|
*
|
|
8042
8034
|
* <p><b>Example</b></p>
|
|
8043
8035
|
*
|
|
@@ -8047,21 +8039,24 @@ export interface I18NProperty76 {
|
|
|
8047
8039
|
*
|
|
8048
8040
|
* [
|
|
8049
8041
|
* {
|
|
8050
|
-
* "type": "
|
|
8042
|
+
* "type": "togglegroup",
|
|
8043
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8051
8044
|
* "controls": [
|
|
8052
8045
|
* {
|
|
8053
|
-
* "type": "
|
|
8046
|
+
* "type": "togglebutton",
|
|
8047
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8054
8048
|
* "label": {
|
|
8055
8049
|
* "value": "My Custom Control 0"
|
|
8056
8050
|
* },
|
|
8057
|
-
* "key": "my-custom-
|
|
8051
|
+
* "key": "my-custom-toggle-button-0"
|
|
8058
8052
|
* },
|
|
8059
8053
|
* {
|
|
8060
|
-
* "type": "
|
|
8054
|
+
* "type": "togglebutton",
|
|
8055
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8061
8056
|
* "label": {
|
|
8062
8057
|
* "value": "My Custom Control 1"
|
|
8063
8058
|
* },
|
|
8064
|
-
* "key": "my-custom-
|
|
8059
|
+
* "key": "my-custom-toggle-button-1"
|
|
8065
8060
|
* }
|
|
8066
8061
|
* ]
|
|
8067
8062
|
* }
|
|
@@ -8070,15 +8065,16 @@ export interface I18NProperty76 {
|
|
|
8070
8065
|
*
|
|
8071
8066
|
*
|
|
8072
8067
|
*/
|
|
8073
|
-
export interface
|
|
8074
|
-
controls:
|
|
8075
|
-
|
|
8068
|
+
export interface ToggleGroup {
|
|
8069
|
+
controls: ToggleButtonControl[];
|
|
8070
|
+
macroParameter: string;
|
|
8071
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8076
8072
|
[k: string]: unknown;
|
|
8077
8073
|
}
|
|
8078
8074
|
/**
|
|
8079
8075
|
*
|
|
8080
8076
|
*
|
|
8081
|
-
* Defines a button which
|
|
8077
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8082
8078
|
*
|
|
8083
8079
|
* <p><b>Example</b></p>
|
|
8084
8080
|
*
|
|
@@ -8087,19 +8083,21 @@ export interface ControlGroup {
|
|
|
8087
8083
|
*
|
|
8088
8084
|
*
|
|
8089
8085
|
* {
|
|
8090
|
-
* "type": "
|
|
8086
|
+
* "type": "togglebutton",
|
|
8087
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8091
8088
|
* "label": {
|
|
8092
8089
|
* "value": "My Custom Control 0"
|
|
8093
8090
|
* },
|
|
8094
|
-
* "key": "my-custom-
|
|
8091
|
+
* "key": "my-custom-toggle-button-0"
|
|
8095
8092
|
* }
|
|
8096
8093
|
*
|
|
8097
8094
|
*
|
|
8098
8095
|
*
|
|
8099
8096
|
*/
|
|
8100
|
-
export interface
|
|
8097
|
+
export interface ToggleButtonControl {
|
|
8098
|
+
macroParameterValue: string;
|
|
8101
8099
|
label: I18NProperty77;
|
|
8102
|
-
type: '
|
|
8100
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8103
8101
|
key: string;
|
|
8104
8102
|
[k: string]: unknown;
|
|
8105
8103
|
}
|
|
@@ -8127,6 +8125,34 @@ export interface I18NProperty77 {
|
|
|
8127
8125
|
i18n?: string;
|
|
8128
8126
|
[k: string]: unknown;
|
|
8129
8127
|
}
|
|
8128
|
+
/**
|
|
8129
|
+
*
|
|
8130
|
+
*
|
|
8131
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8132
|
+
*
|
|
8133
|
+
* <p><b>Example</b></p>
|
|
8134
|
+
*
|
|
8135
|
+
*
|
|
8136
|
+
*
|
|
8137
|
+
*
|
|
8138
|
+
*
|
|
8139
|
+
* {
|
|
8140
|
+
* "type": "button",
|
|
8141
|
+
* "label": {
|
|
8142
|
+
* "value": "My Custom Control 0"
|
|
8143
|
+
* },
|
|
8144
|
+
* "key": "my-custom-control-0"
|
|
8145
|
+
* }
|
|
8146
|
+
*
|
|
8147
|
+
*
|
|
8148
|
+
*
|
|
8149
|
+
*/
|
|
8150
|
+
export interface TextControl {
|
|
8151
|
+
macroParameter: string;
|
|
8152
|
+
type: 'text' | 'TEXT';
|
|
8153
|
+
key: string;
|
|
8154
|
+
[k: string]: unknown;
|
|
8155
|
+
}
|
|
8130
8156
|
/**
|
|
8131
8157
|
*
|
|
8132
8158
|
*
|
|
@@ -29095,7 +29121,7 @@ export interface I18NProperty83 {
|
|
|
29095
29121
|
*
|
|
29096
29122
|
*/
|
|
29097
29123
|
export interface MacroPropertyPanel1 {
|
|
29098
|
-
controls?: (ToggleGroup1 |
|
|
29124
|
+
controls?: (ToggleGroup1 | ButtonControl2 | TextControl1 | ControlGroup1)[];
|
|
29099
29125
|
cacheable?: boolean;
|
|
29100
29126
|
url: string;
|
|
29101
29127
|
[k: string]: unknown;
|
|
@@ -29199,47 +29225,6 @@ export interface I18NProperty84 {
|
|
|
29199
29225
|
i18n?: string;
|
|
29200
29226
|
[k: string]: unknown;
|
|
29201
29227
|
}
|
|
29202
|
-
/**
|
|
29203
|
-
*
|
|
29204
|
-
*
|
|
29205
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29206
|
-
*
|
|
29207
|
-
* <p><b>Example</b></p>
|
|
29208
|
-
*
|
|
29209
|
-
*
|
|
29210
|
-
*
|
|
29211
|
-
*
|
|
29212
|
-
*
|
|
29213
|
-
* [
|
|
29214
|
-
* {
|
|
29215
|
-
* "type": "group",
|
|
29216
|
-
* "controls": [
|
|
29217
|
-
* {
|
|
29218
|
-
* "type": "button",
|
|
29219
|
-
* "label": {
|
|
29220
|
-
* "value": "My Custom Control 0"
|
|
29221
|
-
* },
|
|
29222
|
-
* "key": "my-custom-control-0"
|
|
29223
|
-
* },
|
|
29224
|
-
* {
|
|
29225
|
-
* "type": "button",
|
|
29226
|
-
* "label": {
|
|
29227
|
-
* "value": "My Custom Control 1"
|
|
29228
|
-
* },
|
|
29229
|
-
* "key": "my-custom-control-1"
|
|
29230
|
-
* }
|
|
29231
|
-
* ]
|
|
29232
|
-
* }
|
|
29233
|
-
* ]
|
|
29234
|
-
*
|
|
29235
|
-
*
|
|
29236
|
-
*
|
|
29237
|
-
*/
|
|
29238
|
-
export interface ControlGroup1 {
|
|
29239
|
-
controls: ButtonControl2[];
|
|
29240
|
-
type: 'group' | 'GROUP';
|
|
29241
|
-
[k: string]: unknown;
|
|
29242
|
-
}
|
|
29243
29228
|
/**
|
|
29244
29229
|
*
|
|
29245
29230
|
*
|
|
@@ -29295,7 +29280,7 @@ export interface I18NProperty85 {
|
|
|
29295
29280
|
/**
|
|
29296
29281
|
*
|
|
29297
29282
|
*
|
|
29298
|
-
* Defines a
|
|
29283
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29299
29284
|
*
|
|
29300
29285
|
* <p><b>Example</b></p>
|
|
29301
29286
|
*
|
|
@@ -29314,40 +29299,57 @@ export interface I18NProperty85 {
|
|
|
29314
29299
|
*
|
|
29315
29300
|
*
|
|
29316
29301
|
*/
|
|
29317
|
-
export interface
|
|
29318
|
-
|
|
29319
|
-
type: '
|
|
29302
|
+
export interface TextControl1 {
|
|
29303
|
+
macroParameter: string;
|
|
29304
|
+
type: 'text' | 'TEXT';
|
|
29320
29305
|
key: string;
|
|
29321
29306
|
[k: string]: unknown;
|
|
29322
29307
|
}
|
|
29323
29308
|
/**
|
|
29324
29309
|
*
|
|
29325
29310
|
*
|
|
29326
|
-
*
|
|
29327
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29311
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29328
29312
|
*
|
|
29329
|
-
* <
|
|
29313
|
+
* <p><b>Example</b></p>
|
|
29330
29314
|
*
|
|
29331
29315
|
*
|
|
29332
29316
|
*
|
|
29333
29317
|
*
|
|
29334
29318
|
*
|
|
29335
|
-
*
|
|
29336
|
-
*
|
|
29337
|
-
*
|
|
29319
|
+
* [
|
|
29320
|
+
* {
|
|
29321
|
+
* "type": "group",
|
|
29322
|
+
* "controls": [
|
|
29323
|
+
* {
|
|
29324
|
+
* "type": "button",
|
|
29325
|
+
* "label": {
|
|
29326
|
+
* "value": "My Custom Control 0"
|
|
29327
|
+
* },
|
|
29328
|
+
* "key": "my-custom-control-0"
|
|
29329
|
+
* },
|
|
29330
|
+
* {
|
|
29331
|
+
* "type": "button",
|
|
29332
|
+
* "label": {
|
|
29333
|
+
* "value": "My Custom Control 1"
|
|
29334
|
+
* },
|
|
29335
|
+
* "key": "my-custom-control-1"
|
|
29336
|
+
* }
|
|
29337
|
+
* ]
|
|
29338
|
+
* }
|
|
29339
|
+
* ]
|
|
29338
29340
|
*
|
|
29339
29341
|
*
|
|
29340
29342
|
*
|
|
29341
29343
|
*/
|
|
29342
|
-
export interface
|
|
29343
|
-
|
|
29344
|
-
|
|
29344
|
+
export interface ControlGroup1 {
|
|
29345
|
+
controls: ButtonControl3[];
|
|
29346
|
+
type: 'group' | 'GROUP';
|
|
29345
29347
|
[k: string]: unknown;
|
|
29346
29348
|
}
|
|
29347
29349
|
/**
|
|
29348
29350
|
*
|
|
29349
29351
|
*
|
|
29350
|
-
* Defines a
|
|
29352
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29351
29353
|
*
|
|
29352
29354
|
* <p><b>Example</b></p>
|
|
29353
29355
|
*
|
|
@@ -29366,12 +29368,36 @@ export interface I18NProperty86 {
|
|
|
29366
29368
|
*
|
|
29367
29369
|
*
|
|
29368
29370
|
*/
|
|
29369
|
-
export interface
|
|
29370
|
-
|
|
29371
|
-
type: '
|
|
29371
|
+
export interface ButtonControl3 {
|
|
29372
|
+
label: I18NProperty86;
|
|
29373
|
+
type: 'button' | 'BUTTON';
|
|
29372
29374
|
key: string;
|
|
29373
29375
|
[k: string]: unknown;
|
|
29374
29376
|
}
|
|
29377
|
+
/**
|
|
29378
|
+
*
|
|
29379
|
+
*
|
|
29380
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29381
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29382
|
+
*
|
|
29383
|
+
* <h3>Example</h3>
|
|
29384
|
+
*
|
|
29385
|
+
*
|
|
29386
|
+
*
|
|
29387
|
+
*
|
|
29388
|
+
*
|
|
29389
|
+
* {
|
|
29390
|
+
* "value": "My text"
|
|
29391
|
+
* }
|
|
29392
|
+
*
|
|
29393
|
+
*
|
|
29394
|
+
*
|
|
29395
|
+
*/
|
|
29396
|
+
export interface I18NProperty86 {
|
|
29397
|
+
value: string;
|
|
29398
|
+
i18n?: string;
|
|
29399
|
+
[k: string]: unknown;
|
|
29400
|
+
}
|
|
29375
29401
|
/**
|
|
29376
29402
|
*
|
|
29377
29403
|
*
|
|
@@ -50221,14 +50247,14 @@ export interface I18NProperty91 {
|
|
|
50221
50247
|
*
|
|
50222
50248
|
*/
|
|
50223
50249
|
export interface WebItemTarget2 {
|
|
50224
|
-
options?:
|
|
50250
|
+
options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
|
|
50225
50251
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50226
50252
|
[k: string]: unknown;
|
|
50227
50253
|
}
|
|
50228
50254
|
/**
|
|
50229
50255
|
*
|
|
50230
50256
|
*
|
|
50231
|
-
* Options for
|
|
50257
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50232
50258
|
*
|
|
50233
50259
|
* <h3>Example</h3>
|
|
50234
50260
|
*
|
|
@@ -50238,11 +50264,9 @@ export interface WebItemTarget2 {
|
|
|
50238
50264
|
*
|
|
50239
50265
|
* {
|
|
50240
50266
|
* "target": {
|
|
50241
|
-
* "type": "
|
|
50267
|
+
* "type": "dialogmodule",
|
|
50242
50268
|
* "options": {
|
|
50243
|
-
* "
|
|
50244
|
-
* "offsetX": "30px",
|
|
50245
|
-
* "offsetY": "20px"
|
|
50269
|
+
* "key": "dialog-module-key"
|
|
50246
50270
|
* }
|
|
50247
50271
|
* }
|
|
50248
50272
|
* }
|
|
@@ -50250,16 +50274,8 @@ export interface WebItemTarget2 {
|
|
|
50250
50274
|
*
|
|
50251
50275
|
*
|
|
50252
50276
|
*/
|
|
50253
|
-
export interface
|
|
50254
|
-
|
|
50255
|
-
offsetY?: string;
|
|
50256
|
-
width?: string;
|
|
50257
|
-
onTop?: boolean;
|
|
50258
|
-
showDelay?: number;
|
|
50259
|
-
closeOthers?: boolean;
|
|
50260
|
-
persistent?: boolean;
|
|
50261
|
-
onHover?: boolean;
|
|
50262
|
-
isRelativeToMouse?: boolean;
|
|
50277
|
+
export interface DialogModuleOptions2 {
|
|
50278
|
+
key: string;
|
|
50263
50279
|
[k: string]: unknown;
|
|
50264
50280
|
}
|
|
50265
50281
|
/**
|
|
@@ -50363,7 +50379,7 @@ export interface I18NProperty92 {
|
|
|
50363
50379
|
/**
|
|
50364
50380
|
*
|
|
50365
50381
|
*
|
|
50366
|
-
* Options for
|
|
50382
|
+
* Options for an inline dialog target
|
|
50367
50383
|
*
|
|
50368
50384
|
* <h3>Example</h3>
|
|
50369
50385
|
*
|
|
@@ -50373,9 +50389,11 @@ export interface I18NProperty92 {
|
|
|
50373
50389
|
*
|
|
50374
50390
|
* {
|
|
50375
50391
|
* "target": {
|
|
50376
|
-
* "type": "
|
|
50392
|
+
* "type": "inlinedialog",
|
|
50377
50393
|
* "options": {
|
|
50378
|
-
* "
|
|
50394
|
+
* "onHover": true,
|
|
50395
|
+
* "offsetX": "30px",
|
|
50396
|
+
* "offsetY": "20px"
|
|
50379
50397
|
* }
|
|
50380
50398
|
* }
|
|
50381
50399
|
* }
|
|
@@ -50383,8 +50401,16 @@ export interface I18NProperty92 {
|
|
|
50383
50401
|
*
|
|
50384
50402
|
*
|
|
50385
50403
|
*/
|
|
50386
|
-
export interface
|
|
50387
|
-
|
|
50404
|
+
export interface InlineDialogOptions2 {
|
|
50405
|
+
offsetX?: string;
|
|
50406
|
+
offsetY?: string;
|
|
50407
|
+
width?: string;
|
|
50408
|
+
onTop?: boolean;
|
|
50409
|
+
showDelay?: number;
|
|
50410
|
+
closeOthers?: boolean;
|
|
50411
|
+
persistent?: boolean;
|
|
50412
|
+
onHover?: boolean;
|
|
50413
|
+
isRelativeToMouse?: boolean;
|
|
50388
50414
|
[k: string]: unknown;
|
|
50389
50415
|
}
|
|
50390
50416
|
/**
|