@forge/manifest 2.5.0-next.1 → 2.5.0-next.5
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 +25 -0
- package/out/mapping/product-event-to-scope-mapping.json +42 -0
- package/out/schema/manifest-schema.json +372 -182
- package/out/schema/manifest.d.ts +282 -194
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1287,6 +1287,94 @@ export interface Modules {
|
|
|
1287
1287
|
}
|
|
1288
1288
|
)[]
|
|
1289
1289
|
];
|
|
1290
|
+
'jira:globalPage'?: [
|
|
1291
|
+
(
|
|
1292
|
+
| {
|
|
1293
|
+
function: string;
|
|
1294
|
+
title: string;
|
|
1295
|
+
icon?: string;
|
|
1296
|
+
layout?: 'basic' | 'native';
|
|
1297
|
+
key: ModuleKeySchema;
|
|
1298
|
+
[k: string]: unknown;
|
|
1299
|
+
}
|
|
1300
|
+
| {
|
|
1301
|
+
resource: string;
|
|
1302
|
+
resolver?: {
|
|
1303
|
+
function: string;
|
|
1304
|
+
};
|
|
1305
|
+
title: string;
|
|
1306
|
+
icon?: string;
|
|
1307
|
+
layout?: 'basic' | 'native';
|
|
1308
|
+
key: ModuleKeySchema;
|
|
1309
|
+
[k: string]: unknown;
|
|
1310
|
+
}
|
|
1311
|
+
),
|
|
1312
|
+
...(
|
|
1313
|
+
| {
|
|
1314
|
+
function: string;
|
|
1315
|
+
title: string;
|
|
1316
|
+
icon?: string;
|
|
1317
|
+
layout?: 'basic' | 'native';
|
|
1318
|
+
key: ModuleKeySchema;
|
|
1319
|
+
[k: string]: unknown;
|
|
1320
|
+
}
|
|
1321
|
+
| {
|
|
1322
|
+
resource: string;
|
|
1323
|
+
resolver?: {
|
|
1324
|
+
function: string;
|
|
1325
|
+
};
|
|
1326
|
+
title: string;
|
|
1327
|
+
icon?: string;
|
|
1328
|
+
layout?: 'basic' | 'native';
|
|
1329
|
+
key: ModuleKeySchema;
|
|
1330
|
+
[k: string]: unknown;
|
|
1331
|
+
}
|
|
1332
|
+
)[]
|
|
1333
|
+
];
|
|
1334
|
+
'jira:projectSettingsPage'?: [
|
|
1335
|
+
(
|
|
1336
|
+
| {
|
|
1337
|
+
function: string;
|
|
1338
|
+
title: string;
|
|
1339
|
+
icon?: string;
|
|
1340
|
+
layout?: 'basic' | 'native';
|
|
1341
|
+
key: ModuleKeySchema;
|
|
1342
|
+
[k: string]: unknown;
|
|
1343
|
+
}
|
|
1344
|
+
| {
|
|
1345
|
+
resource: string;
|
|
1346
|
+
resolver?: {
|
|
1347
|
+
function: string;
|
|
1348
|
+
};
|
|
1349
|
+
title: string;
|
|
1350
|
+
icon?: string;
|
|
1351
|
+
layout?: 'basic' | 'native';
|
|
1352
|
+
key: ModuleKeySchema;
|
|
1353
|
+
[k: string]: unknown;
|
|
1354
|
+
}
|
|
1355
|
+
),
|
|
1356
|
+
...(
|
|
1357
|
+
| {
|
|
1358
|
+
function: string;
|
|
1359
|
+
title: string;
|
|
1360
|
+
icon?: string;
|
|
1361
|
+
layout?: 'basic' | 'native';
|
|
1362
|
+
key: ModuleKeySchema;
|
|
1363
|
+
[k: string]: unknown;
|
|
1364
|
+
}
|
|
1365
|
+
| {
|
|
1366
|
+
resource: string;
|
|
1367
|
+
resolver?: {
|
|
1368
|
+
function: string;
|
|
1369
|
+
};
|
|
1370
|
+
title: string;
|
|
1371
|
+
icon?: string;
|
|
1372
|
+
layout?: 'basic' | 'native';
|
|
1373
|
+
key: ModuleKeySchema;
|
|
1374
|
+
[k: string]: unknown;
|
|
1375
|
+
}
|
|
1376
|
+
)[]
|
|
1377
|
+
];
|
|
1290
1378
|
'compass:adminPage'?: [
|
|
1291
1379
|
(
|
|
1292
1380
|
| {
|
|
@@ -2385,7 +2473,7 @@ export interface Modules {
|
|
|
2385
2473
|
fullPage?: boolean;
|
|
2386
2474
|
cacheable?: boolean;
|
|
2387
2475
|
location?: string;
|
|
2388
|
-
conditions?: (
|
|
2476
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2389
2477
|
params?: {
|
|
2390
2478
|
[k: string]: unknown;
|
|
2391
2479
|
};
|
|
@@ -2400,7 +2488,7 @@ export interface Modules {
|
|
|
2400
2488
|
fullPage?: boolean;
|
|
2401
2489
|
cacheable?: boolean;
|
|
2402
2490
|
location?: string;
|
|
2403
|
-
conditions?: (
|
|
2491
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2404
2492
|
params?: {
|
|
2405
2493
|
[k: string]: unknown;
|
|
2406
2494
|
};
|
|
@@ -2448,7 +2536,7 @@ export interface Modules {
|
|
|
2448
2536
|
filter?: string;
|
|
2449
2537
|
excludeBody?: boolean;
|
|
2450
2538
|
event?: string;
|
|
2451
|
-
conditions?: (
|
|
2539
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2452
2540
|
propertyKeys?: string[];
|
|
2453
2541
|
url?: string;
|
|
2454
2542
|
key: ModuleKeySchema;
|
|
@@ -2458,7 +2546,7 @@ export interface Modules {
|
|
|
2458
2546
|
filter?: string;
|
|
2459
2547
|
excludeBody?: boolean;
|
|
2460
2548
|
event?: string;
|
|
2461
|
-
conditions?: (
|
|
2549
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2462
2550
|
propertyKeys?: string[];
|
|
2463
2551
|
url?: string;
|
|
2464
2552
|
key: ModuleKeySchema;
|
|
@@ -2597,7 +2685,7 @@ export interface Modules {
|
|
|
2597
2685
|
fullPage?: boolean;
|
|
2598
2686
|
cacheable?: boolean;
|
|
2599
2687
|
location?: string;
|
|
2600
|
-
conditions?: (
|
|
2688
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2601
2689
|
params?: {
|
|
2602
2690
|
[k: string]: unknown;
|
|
2603
2691
|
};
|
|
@@ -2612,7 +2700,7 @@ export interface Modules {
|
|
|
2612
2700
|
fullPage?: boolean;
|
|
2613
2701
|
cacheable?: boolean;
|
|
2614
2702
|
location?: string;
|
|
2615
|
-
conditions?: (
|
|
2703
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2616
2704
|
params?: {
|
|
2617
2705
|
[k: string]: unknown;
|
|
2618
2706
|
};
|
|
@@ -2870,7 +2958,7 @@ export interface Modules {
|
|
|
2870
2958
|
icon?: Icon18;
|
|
2871
2959
|
name?: I18NProperty91;
|
|
2872
2960
|
cacheable?: boolean;
|
|
2873
|
-
conditions?: (
|
|
2961
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2874
2962
|
params?: {
|
|
2875
2963
|
[k: string]: unknown;
|
|
2876
2964
|
};
|
|
@@ -2886,7 +2974,7 @@ export interface Modules {
|
|
|
2886
2974
|
icon?: Icon18;
|
|
2887
2975
|
name?: I18NProperty91;
|
|
2888
2976
|
cacheable?: boolean;
|
|
2889
|
-
conditions?: (
|
|
2977
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2890
2978
|
params?: {
|
|
2891
2979
|
[k: string]: unknown;
|
|
2892
2980
|
};
|
|
@@ -5811,10 +5899,74 @@ export interface Icon10 {
|
|
|
5811
5899
|
*
|
|
5812
5900
|
*/
|
|
5813
5901
|
export interface WebItemTarget1 {
|
|
5814
|
-
options?:
|
|
5902
|
+
options?: InlineDialogOptions1 | DialogModuleOptions1 | DialogOptions2;
|
|
5815
5903
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5816
5904
|
[k: string]: unknown;
|
|
5817
5905
|
}
|
|
5906
|
+
/**
|
|
5907
|
+
*
|
|
5908
|
+
*
|
|
5909
|
+
* Options for an inline dialog target
|
|
5910
|
+
*
|
|
5911
|
+
* <h3>Example</h3>
|
|
5912
|
+
*
|
|
5913
|
+
*
|
|
5914
|
+
*
|
|
5915
|
+
*
|
|
5916
|
+
*
|
|
5917
|
+
* {
|
|
5918
|
+
* "target": {
|
|
5919
|
+
* "type": "inlinedialog",
|
|
5920
|
+
* "options": {
|
|
5921
|
+
* "onHover": true,
|
|
5922
|
+
* "offsetX": "30px",
|
|
5923
|
+
* "offsetY": "20px"
|
|
5924
|
+
* }
|
|
5925
|
+
* }
|
|
5926
|
+
* }
|
|
5927
|
+
*
|
|
5928
|
+
*
|
|
5929
|
+
*
|
|
5930
|
+
*/
|
|
5931
|
+
export interface InlineDialogOptions1 {
|
|
5932
|
+
offsetX?: string;
|
|
5933
|
+
offsetY?: string;
|
|
5934
|
+
width?: string;
|
|
5935
|
+
onTop?: boolean;
|
|
5936
|
+
showDelay?: number;
|
|
5937
|
+
closeOthers?: boolean;
|
|
5938
|
+
persistent?: boolean;
|
|
5939
|
+
onHover?: boolean;
|
|
5940
|
+
isRelativeToMouse?: boolean;
|
|
5941
|
+
[k: string]: unknown;
|
|
5942
|
+
}
|
|
5943
|
+
/**
|
|
5944
|
+
*
|
|
5945
|
+
*
|
|
5946
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5947
|
+
*
|
|
5948
|
+
* <h3>Example</h3>
|
|
5949
|
+
*
|
|
5950
|
+
*
|
|
5951
|
+
*
|
|
5952
|
+
*
|
|
5953
|
+
*
|
|
5954
|
+
* {
|
|
5955
|
+
* "target": {
|
|
5956
|
+
* "type": "dialogmodule",
|
|
5957
|
+
* "options": {
|
|
5958
|
+
* "key": "dialog-module-key"
|
|
5959
|
+
* }
|
|
5960
|
+
* }
|
|
5961
|
+
* }
|
|
5962
|
+
*
|
|
5963
|
+
*
|
|
5964
|
+
*
|
|
5965
|
+
*/
|
|
5966
|
+
export interface DialogModuleOptions1 {
|
|
5967
|
+
key: string;
|
|
5968
|
+
[k: string]: unknown;
|
|
5969
|
+
}
|
|
5818
5970
|
/**
|
|
5819
5971
|
*
|
|
5820
5972
|
*
|
|
@@ -5913,70 +6065,6 @@ export interface I18NProperty58 {
|
|
|
5913
6065
|
i18n?: string;
|
|
5914
6066
|
[k: string]: unknown;
|
|
5915
6067
|
}
|
|
5916
|
-
/**
|
|
5917
|
-
*
|
|
5918
|
-
*
|
|
5919
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5920
|
-
*
|
|
5921
|
-
* <h3>Example</h3>
|
|
5922
|
-
*
|
|
5923
|
-
*
|
|
5924
|
-
*
|
|
5925
|
-
*
|
|
5926
|
-
*
|
|
5927
|
-
* {
|
|
5928
|
-
* "target": {
|
|
5929
|
-
* "type": "dialogmodule",
|
|
5930
|
-
* "options": {
|
|
5931
|
-
* "key": "dialog-module-key"
|
|
5932
|
-
* }
|
|
5933
|
-
* }
|
|
5934
|
-
* }
|
|
5935
|
-
*
|
|
5936
|
-
*
|
|
5937
|
-
*
|
|
5938
|
-
*/
|
|
5939
|
-
export interface DialogModuleOptions1 {
|
|
5940
|
-
key: string;
|
|
5941
|
-
[k: string]: unknown;
|
|
5942
|
-
}
|
|
5943
|
-
/**
|
|
5944
|
-
*
|
|
5945
|
-
*
|
|
5946
|
-
* Options for an inline dialog target
|
|
5947
|
-
*
|
|
5948
|
-
* <h3>Example</h3>
|
|
5949
|
-
*
|
|
5950
|
-
*
|
|
5951
|
-
*
|
|
5952
|
-
*
|
|
5953
|
-
*
|
|
5954
|
-
* {
|
|
5955
|
-
* "target": {
|
|
5956
|
-
* "type": "inlinedialog",
|
|
5957
|
-
* "options": {
|
|
5958
|
-
* "onHover": true,
|
|
5959
|
-
* "offsetX": "30px",
|
|
5960
|
-
* "offsetY": "20px"
|
|
5961
|
-
* }
|
|
5962
|
-
* }
|
|
5963
|
-
* }
|
|
5964
|
-
*
|
|
5965
|
-
*
|
|
5966
|
-
*
|
|
5967
|
-
*/
|
|
5968
|
-
export interface InlineDialogOptions1 {
|
|
5969
|
-
offsetX?: string;
|
|
5970
|
-
offsetY?: string;
|
|
5971
|
-
width?: string;
|
|
5972
|
-
onTop?: boolean;
|
|
5973
|
-
showDelay?: number;
|
|
5974
|
-
closeOthers?: boolean;
|
|
5975
|
-
persistent?: boolean;
|
|
5976
|
-
onHover?: boolean;
|
|
5977
|
-
isRelativeToMouse?: boolean;
|
|
5978
|
-
[k: string]: unknown;
|
|
5979
|
-
}
|
|
5980
6068
|
/**
|
|
5981
6069
|
*
|
|
5982
6070
|
*
|
|
@@ -6069,7 +6157,7 @@ export interface SingleCondition4 {
|
|
|
6069
6157
|
*
|
|
6070
6158
|
*/
|
|
6071
6159
|
export interface CompositeCondition6 {
|
|
6072
|
-
conditions?: (
|
|
6160
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6073
6161
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6074
6162
|
[k: string]: unknown;
|
|
6075
6163
|
}
|
|
@@ -7918,7 +8006,7 @@ export interface I18NProperty74 {
|
|
|
7918
8006
|
*
|
|
7919
8007
|
*/
|
|
7920
8008
|
export interface MacroPropertyPanel {
|
|
7921
|
-
controls?: (ButtonControl |
|
|
8009
|
+
controls?: (ButtonControl | ControlGroup | ToggleGroup | TextControl)[];
|
|
7922
8010
|
cacheable?: boolean;
|
|
7923
8011
|
url: string;
|
|
7924
8012
|
[k: string]: unknown;
|
|
@@ -7975,34 +8063,6 @@ export interface I18NProperty75 {
|
|
|
7975
8063
|
i18n?: string;
|
|
7976
8064
|
[k: string]: unknown;
|
|
7977
8065
|
}
|
|
7978
|
-
/**
|
|
7979
|
-
*
|
|
7980
|
-
*
|
|
7981
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
7982
|
-
*
|
|
7983
|
-
* <p><b>Example</b></p>
|
|
7984
|
-
*
|
|
7985
|
-
*
|
|
7986
|
-
*
|
|
7987
|
-
*
|
|
7988
|
-
*
|
|
7989
|
-
* {
|
|
7990
|
-
* "type": "button",
|
|
7991
|
-
* "label": {
|
|
7992
|
-
* "value": "My Custom Control 0"
|
|
7993
|
-
* },
|
|
7994
|
-
* "key": "my-custom-control-0"
|
|
7995
|
-
* }
|
|
7996
|
-
*
|
|
7997
|
-
*
|
|
7998
|
-
*
|
|
7999
|
-
*/
|
|
8000
|
-
export interface TextControl {
|
|
8001
|
-
macroParameter: string;
|
|
8002
|
-
type: 'text' | 'TEXT';
|
|
8003
|
-
key: string;
|
|
8004
|
-
[k: string]: unknown;
|
|
8005
|
-
}
|
|
8006
8066
|
/**
|
|
8007
8067
|
*
|
|
8008
8068
|
*
|
|
@@ -8195,6 +8255,34 @@ export interface I18NProperty77 {
|
|
|
8195
8255
|
i18n?: string;
|
|
8196
8256
|
[k: string]: unknown;
|
|
8197
8257
|
}
|
|
8258
|
+
/**
|
|
8259
|
+
*
|
|
8260
|
+
*
|
|
8261
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8262
|
+
*
|
|
8263
|
+
* <p><b>Example</b></p>
|
|
8264
|
+
*
|
|
8265
|
+
*
|
|
8266
|
+
*
|
|
8267
|
+
*
|
|
8268
|
+
*
|
|
8269
|
+
* {
|
|
8270
|
+
* "type": "button",
|
|
8271
|
+
* "label": {
|
|
8272
|
+
* "value": "My Custom Control 0"
|
|
8273
|
+
* },
|
|
8274
|
+
* "key": "my-custom-control-0"
|
|
8275
|
+
* }
|
|
8276
|
+
*
|
|
8277
|
+
*
|
|
8278
|
+
*
|
|
8279
|
+
*/
|
|
8280
|
+
export interface TextControl {
|
|
8281
|
+
macroParameter: string;
|
|
8282
|
+
type: 'text' | 'TEXT';
|
|
8283
|
+
key: string;
|
|
8284
|
+
[k: string]: unknown;
|
|
8285
|
+
}
|
|
8198
8286
|
/**
|
|
8199
8287
|
*
|
|
8200
8288
|
*
|
|
@@ -29163,7 +29251,7 @@ export interface I18NProperty83 {
|
|
|
29163
29251
|
*
|
|
29164
29252
|
*/
|
|
29165
29253
|
export interface MacroPropertyPanel1 {
|
|
29166
|
-
controls?: (ButtonControl2 |
|
|
29254
|
+
controls?: (ButtonControl2 | ControlGroup1 | TextControl1 | ToggleGroup1)[];
|
|
29167
29255
|
cacheable?: boolean;
|
|
29168
29256
|
url: string;
|
|
29169
29257
|
[k: string]: unknown;
|
|
@@ -29223,35 +29311,7 @@ export interface I18NProperty84 {
|
|
|
29223
29311
|
/**
|
|
29224
29312
|
*
|
|
29225
29313
|
*
|
|
29226
|
-
* Defines a
|
|
29227
|
-
*
|
|
29228
|
-
* <p><b>Example</b></p>
|
|
29229
|
-
*
|
|
29230
|
-
*
|
|
29231
|
-
*
|
|
29232
|
-
*
|
|
29233
|
-
*
|
|
29234
|
-
* {
|
|
29235
|
-
* "type": "button",
|
|
29236
|
-
* "label": {
|
|
29237
|
-
* "value": "My Custom Control 0"
|
|
29238
|
-
* },
|
|
29239
|
-
* "key": "my-custom-control-0"
|
|
29240
|
-
* }
|
|
29241
|
-
*
|
|
29242
|
-
*
|
|
29243
|
-
*
|
|
29244
|
-
*/
|
|
29245
|
-
export interface TextControl1 {
|
|
29246
|
-
macroParameter: string;
|
|
29247
|
-
type: 'text' | 'TEXT';
|
|
29248
|
-
key: string;
|
|
29249
|
-
[k: string]: unknown;
|
|
29250
|
-
}
|
|
29251
|
-
/**
|
|
29252
|
-
*
|
|
29253
|
-
*
|
|
29254
|
-
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29314
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29255
29315
|
*
|
|
29256
29316
|
* <p><b>Example</b></p>
|
|
29257
29317
|
*
|
|
@@ -29261,24 +29321,21 @@ export interface TextControl1 {
|
|
|
29261
29321
|
*
|
|
29262
29322
|
* [
|
|
29263
29323
|
* {
|
|
29264
|
-
* "type": "
|
|
29265
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29324
|
+
* "type": "group",
|
|
29266
29325
|
* "controls": [
|
|
29267
29326
|
* {
|
|
29268
|
-
* "type": "
|
|
29269
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29327
|
+
* "type": "button",
|
|
29270
29328
|
* "label": {
|
|
29271
29329
|
* "value": "My Custom Control 0"
|
|
29272
29330
|
* },
|
|
29273
|
-
* "key": "my-custom-
|
|
29331
|
+
* "key": "my-custom-control-0"
|
|
29274
29332
|
* },
|
|
29275
29333
|
* {
|
|
29276
|
-
* "type": "
|
|
29277
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29334
|
+
* "type": "button",
|
|
29278
29335
|
* "label": {
|
|
29279
29336
|
* "value": "My Custom Control 1"
|
|
29280
29337
|
* },
|
|
29281
|
-
* "key": "my-custom-
|
|
29338
|
+
* "key": "my-custom-control-1"
|
|
29282
29339
|
* }
|
|
29283
29340
|
* ]
|
|
29284
29341
|
* }
|
|
@@ -29287,16 +29344,15 @@ export interface TextControl1 {
|
|
|
29287
29344
|
*
|
|
29288
29345
|
*
|
|
29289
29346
|
*/
|
|
29290
|
-
export interface
|
|
29291
|
-
controls:
|
|
29292
|
-
|
|
29293
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29347
|
+
export interface ControlGroup1 {
|
|
29348
|
+
controls: ButtonControl3[];
|
|
29349
|
+
type: 'group' | 'GROUP';
|
|
29294
29350
|
[k: string]: unknown;
|
|
29295
29351
|
}
|
|
29296
29352
|
/**
|
|
29297
29353
|
*
|
|
29298
29354
|
*
|
|
29299
|
-
* Defines a
|
|
29355
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29300
29356
|
*
|
|
29301
29357
|
* <p><b>Example</b></p>
|
|
29302
29358
|
*
|
|
@@ -29305,21 +29361,19 @@ export interface ToggleGroup1 {
|
|
|
29305
29361
|
*
|
|
29306
29362
|
*
|
|
29307
29363
|
* {
|
|
29308
|
-
* "type": "
|
|
29309
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29364
|
+
* "type": "button",
|
|
29310
29365
|
* "label": {
|
|
29311
29366
|
* "value": "My Custom Control 0"
|
|
29312
29367
|
* },
|
|
29313
|
-
* "key": "my-custom-
|
|
29368
|
+
* "key": "my-custom-control-0"
|
|
29314
29369
|
* }
|
|
29315
29370
|
*
|
|
29316
29371
|
*
|
|
29317
29372
|
*
|
|
29318
29373
|
*/
|
|
29319
|
-
export interface
|
|
29320
|
-
macroParameterValue: string;
|
|
29374
|
+
export interface ButtonControl3 {
|
|
29321
29375
|
label: I18NProperty85;
|
|
29322
|
-
type: '
|
|
29376
|
+
type: 'button' | 'BUTTON';
|
|
29323
29377
|
key: string;
|
|
29324
29378
|
[k: string]: unknown;
|
|
29325
29379
|
}
|
|
@@ -29350,7 +29404,35 @@ export interface I18NProperty85 {
|
|
|
29350
29404
|
/**
|
|
29351
29405
|
*
|
|
29352
29406
|
*
|
|
29353
|
-
* Defines a
|
|
29407
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29408
|
+
*
|
|
29409
|
+
* <p><b>Example</b></p>
|
|
29410
|
+
*
|
|
29411
|
+
*
|
|
29412
|
+
*
|
|
29413
|
+
*
|
|
29414
|
+
*
|
|
29415
|
+
* {
|
|
29416
|
+
* "type": "button",
|
|
29417
|
+
* "label": {
|
|
29418
|
+
* "value": "My Custom Control 0"
|
|
29419
|
+
* },
|
|
29420
|
+
* "key": "my-custom-control-0"
|
|
29421
|
+
* }
|
|
29422
|
+
*
|
|
29423
|
+
*
|
|
29424
|
+
*
|
|
29425
|
+
*/
|
|
29426
|
+
export interface TextControl1 {
|
|
29427
|
+
macroParameter: string;
|
|
29428
|
+
type: 'text' | 'TEXT';
|
|
29429
|
+
key: string;
|
|
29430
|
+
[k: string]: unknown;
|
|
29431
|
+
}
|
|
29432
|
+
/**
|
|
29433
|
+
*
|
|
29434
|
+
*
|
|
29435
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29354
29436
|
*
|
|
29355
29437
|
* <p><b>Example</b></p>
|
|
29356
29438
|
*
|
|
@@ -29360,21 +29442,24 @@ export interface I18NProperty85 {
|
|
|
29360
29442
|
*
|
|
29361
29443
|
* [
|
|
29362
29444
|
* {
|
|
29363
|
-
* "type": "
|
|
29445
|
+
* "type": "togglegroup",
|
|
29446
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29364
29447
|
* "controls": [
|
|
29365
29448
|
* {
|
|
29366
|
-
* "type": "
|
|
29449
|
+
* "type": "togglebutton",
|
|
29450
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29367
29451
|
* "label": {
|
|
29368
29452
|
* "value": "My Custom Control 0"
|
|
29369
29453
|
* },
|
|
29370
|
-
* "key": "my-custom-
|
|
29454
|
+
* "key": "my-custom-toggle-button-0"
|
|
29371
29455
|
* },
|
|
29372
29456
|
* {
|
|
29373
|
-
* "type": "
|
|
29457
|
+
* "type": "togglebutton",
|
|
29458
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29374
29459
|
* "label": {
|
|
29375
29460
|
* "value": "My Custom Control 1"
|
|
29376
29461
|
* },
|
|
29377
|
-
* "key": "my-custom-
|
|
29462
|
+
* "key": "my-custom-toggle-button-1"
|
|
29378
29463
|
* }
|
|
29379
29464
|
* ]
|
|
29380
29465
|
* }
|
|
@@ -29383,15 +29468,16 @@ export interface I18NProperty85 {
|
|
|
29383
29468
|
*
|
|
29384
29469
|
*
|
|
29385
29470
|
*/
|
|
29386
|
-
export interface
|
|
29387
|
-
controls:
|
|
29388
|
-
|
|
29471
|
+
export interface ToggleGroup1 {
|
|
29472
|
+
controls: ToggleButtonControl1[];
|
|
29473
|
+
macroParameter: string;
|
|
29474
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29389
29475
|
[k: string]: unknown;
|
|
29390
29476
|
}
|
|
29391
29477
|
/**
|
|
29392
29478
|
*
|
|
29393
29479
|
*
|
|
29394
|
-
* Defines a button which
|
|
29480
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29395
29481
|
*
|
|
29396
29482
|
* <p><b>Example</b></p>
|
|
29397
29483
|
*
|
|
@@ -29400,19 +29486,21 @@ export interface ControlGroup1 {
|
|
|
29400
29486
|
*
|
|
29401
29487
|
*
|
|
29402
29488
|
* {
|
|
29403
|
-
* "type": "
|
|
29489
|
+
* "type": "togglebutton",
|
|
29490
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29404
29491
|
* "label": {
|
|
29405
29492
|
* "value": "My Custom Control 0"
|
|
29406
29493
|
* },
|
|
29407
|
-
* "key": "my-custom-
|
|
29494
|
+
* "key": "my-custom-toggle-button-0"
|
|
29408
29495
|
* }
|
|
29409
29496
|
*
|
|
29410
29497
|
*
|
|
29411
29498
|
*
|
|
29412
29499
|
*/
|
|
29413
|
-
export interface
|
|
29500
|
+
export interface ToggleButtonControl1 {
|
|
29501
|
+
macroParameterValue: string;
|
|
29414
29502
|
label: I18NProperty86;
|
|
29415
|
-
type: '
|
|
29503
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29416
29504
|
key: string;
|
|
29417
29505
|
[k: string]: unknown;
|
|
29418
29506
|
}
|
|
@@ -50289,7 +50377,7 @@ export interface I18NProperty91 {
|
|
|
50289
50377
|
*
|
|
50290
50378
|
*/
|
|
50291
50379
|
export interface WebItemTarget2 {
|
|
50292
|
-
options?: InlineDialogOptions2 |
|
|
50380
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
50293
50381
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50294
50382
|
[k: string]: unknown;
|
|
50295
50383
|
}
|
|
@@ -50330,33 +50418,6 @@ export interface InlineDialogOptions2 {
|
|
|
50330
50418
|
isRelativeToMouse?: boolean;
|
|
50331
50419
|
[k: string]: unknown;
|
|
50332
50420
|
}
|
|
50333
|
-
/**
|
|
50334
|
-
*
|
|
50335
|
-
*
|
|
50336
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50337
|
-
*
|
|
50338
|
-
* <h3>Example</h3>
|
|
50339
|
-
*
|
|
50340
|
-
*
|
|
50341
|
-
*
|
|
50342
|
-
*
|
|
50343
|
-
*
|
|
50344
|
-
* {
|
|
50345
|
-
* "target": {
|
|
50346
|
-
* "type": "dialogmodule",
|
|
50347
|
-
* "options": {
|
|
50348
|
-
* "key": "dialog-module-key"
|
|
50349
|
-
* }
|
|
50350
|
-
* }
|
|
50351
|
-
* }
|
|
50352
|
-
*
|
|
50353
|
-
*
|
|
50354
|
-
*
|
|
50355
|
-
*/
|
|
50356
|
-
export interface DialogModuleOptions2 {
|
|
50357
|
-
key: string;
|
|
50358
|
-
[k: string]: unknown;
|
|
50359
|
-
}
|
|
50360
50421
|
/**
|
|
50361
50422
|
*
|
|
50362
50423
|
*
|
|
@@ -50455,6 +50516,33 @@ export interface I18NProperty92 {
|
|
|
50455
50516
|
i18n?: string;
|
|
50456
50517
|
[k: string]: unknown;
|
|
50457
50518
|
}
|
|
50519
|
+
/**
|
|
50520
|
+
*
|
|
50521
|
+
*
|
|
50522
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50523
|
+
*
|
|
50524
|
+
* <h3>Example</h3>
|
|
50525
|
+
*
|
|
50526
|
+
*
|
|
50527
|
+
*
|
|
50528
|
+
*
|
|
50529
|
+
*
|
|
50530
|
+
* {
|
|
50531
|
+
* "target": {
|
|
50532
|
+
* "type": "dialogmodule",
|
|
50533
|
+
* "options": {
|
|
50534
|
+
* "key": "dialog-module-key"
|
|
50535
|
+
* }
|
|
50536
|
+
* }
|
|
50537
|
+
* }
|
|
50538
|
+
*
|
|
50539
|
+
*
|
|
50540
|
+
*
|
|
50541
|
+
*/
|
|
50542
|
+
export interface DialogModuleOptions2 {
|
|
50543
|
+
key: string;
|
|
50544
|
+
[k: string]: unknown;
|
|
50545
|
+
}
|
|
50458
50546
|
/**
|
|
50459
50547
|
*
|
|
50460
50548
|
*
|