@forge/manifest 2.5.0-next.1 → 2.5.0-next.10
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 +56 -0
- package/out/mapping/product-event-to-scope-mapping.json +78 -0
- package/out/schema/manifest-schema.json +357 -167
- package/out/schema/manifest.d.ts +250 -162
- package/out/scopes/shipyard-scopes.json +160 -44
- 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
|
| {
|
|
@@ -2418,7 +2506,7 @@ export interface Modules {
|
|
|
2418
2506
|
location?: string;
|
|
2419
2507
|
cacheable?: boolean;
|
|
2420
2508
|
supportsNative?: boolean;
|
|
2421
|
-
conditions?: (
|
|
2509
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2422
2510
|
params?: {
|
|
2423
2511
|
[k: string]: unknown;
|
|
2424
2512
|
};
|
|
@@ -2434,7 +2522,7 @@ export interface Modules {
|
|
|
2434
2522
|
location?: string;
|
|
2435
2523
|
cacheable?: boolean;
|
|
2436
2524
|
supportsNative?: boolean;
|
|
2437
|
-
conditions?: (
|
|
2525
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2438
2526
|
params?: {
|
|
2439
2527
|
[k: string]: unknown;
|
|
2440
2528
|
};
|
|
@@ -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;
|
|
@@ -2472,7 +2560,7 @@ export interface Modules {
|
|
|
2472
2560
|
weight?: number;
|
|
2473
2561
|
cacheable?: boolean;
|
|
2474
2562
|
location?: string;
|
|
2475
|
-
conditions?: (
|
|
2563
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2476
2564
|
params?: {
|
|
2477
2565
|
[k: string]: unknown;
|
|
2478
2566
|
};
|
|
@@ -2486,7 +2574,7 @@ export interface Modules {
|
|
|
2486
2574
|
weight?: number;
|
|
2487
2575
|
cacheable?: boolean;
|
|
2488
2576
|
location?: string;
|
|
2489
|
-
conditions?: (
|
|
2577
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2490
2578
|
params?: {
|
|
2491
2579
|
[k: string]: unknown;
|
|
2492
2580
|
};
|
|
@@ -2528,7 +2616,7 @@ export interface Modules {
|
|
|
2528
2616
|
weight?: number;
|
|
2529
2617
|
cacheable?: boolean;
|
|
2530
2618
|
location?: string;
|
|
2531
|
-
conditions?: (
|
|
2619
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2532
2620
|
params?: {
|
|
2533
2621
|
[k: string]: unknown;
|
|
2534
2622
|
};
|
|
@@ -2542,7 +2630,7 @@ export interface Modules {
|
|
|
2542
2630
|
weight?: number;
|
|
2543
2631
|
cacheable?: boolean;
|
|
2544
2632
|
location?: string;
|
|
2545
|
-
conditions?: (
|
|
2633
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2546
2634
|
params?: {
|
|
2547
2635
|
[k: string]: unknown;
|
|
2548
2636
|
};
|
|
@@ -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
|
};
|
|
@@ -3134,7 +3222,7 @@ export interface SingleCondition {
|
|
|
3134
3222
|
*
|
|
3135
3223
|
*/
|
|
3136
3224
|
export interface CompositeCondition {
|
|
3137
|
-
conditions?: (
|
|
3225
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3138
3226
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3139
3227
|
[k: string]: unknown;
|
|
3140
3228
|
}
|
|
@@ -5811,10 +5899,47 @@ export interface Icon10 {
|
|
|
5811
5899
|
*
|
|
5812
5900
|
*/
|
|
5813
5901
|
export interface WebItemTarget1 {
|
|
5814
|
-
options?:
|
|
5902
|
+
options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
|
|
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
|
+
}
|
|
5818
5943
|
/**
|
|
5819
5944
|
*
|
|
5820
5945
|
*
|
|
@@ -5940,43 +6065,6 @@ export interface DialogModuleOptions1 {
|
|
|
5940
6065
|
key: string;
|
|
5941
6066
|
[k: string]: unknown;
|
|
5942
6067
|
}
|
|
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
|
}
|
|
@@ -6495,7 +6583,7 @@ export interface SingleCondition5 {
|
|
|
6495
6583
|
*
|
|
6496
6584
|
*/
|
|
6497
6585
|
export interface CompositeCondition7 {
|
|
6498
|
-
conditions?: (
|
|
6586
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6499
6587
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6500
6588
|
[k: string]: unknown;
|
|
6501
6589
|
}
|
|
@@ -7918,7 +8006,7 @@ export interface I18NProperty74 {
|
|
|
7918
8006
|
*
|
|
7919
8007
|
*/
|
|
7920
8008
|
export interface MacroPropertyPanel {
|
|
7921
|
-
controls?: (
|
|
8009
|
+
controls?: (TextControl | ButtonControl | ControlGroup | ToggleGroup)[];
|
|
7922
8010
|
cacheable?: boolean;
|
|
7923
8011
|
url: string;
|
|
7924
8012
|
[k: string]: unknown;
|
|
@@ -7926,7 +8014,7 @@ export interface MacroPropertyPanel {
|
|
|
7926
8014
|
/**
|
|
7927
8015
|
*
|
|
7928
8016
|
*
|
|
7929
|
-
* Defines a
|
|
8017
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
7930
8018
|
*
|
|
7931
8019
|
* <p><b>Example</b></p>
|
|
7932
8020
|
*
|
|
@@ -7945,62 +8033,62 @@ export interface MacroPropertyPanel {
|
|
|
7945
8033
|
*
|
|
7946
8034
|
*
|
|
7947
8035
|
*/
|
|
7948
|
-
export interface
|
|
7949
|
-
|
|
7950
|
-
type: '
|
|
8036
|
+
export interface TextControl {
|
|
8037
|
+
macroParameter: string;
|
|
8038
|
+
type: 'text' | 'TEXT';
|
|
7951
8039
|
key: string;
|
|
7952
8040
|
[k: string]: unknown;
|
|
7953
8041
|
}
|
|
7954
8042
|
/**
|
|
7955
8043
|
*
|
|
7956
8044
|
*
|
|
7957
|
-
*
|
|
7958
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8045
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
7959
8046
|
*
|
|
7960
|
-
* <
|
|
8047
|
+
* <p><b>Example</b></p>
|
|
7961
8048
|
*
|
|
7962
8049
|
*
|
|
7963
8050
|
*
|
|
7964
8051
|
*
|
|
7965
8052
|
*
|
|
7966
8053
|
* {
|
|
7967
|
-
* "
|
|
8054
|
+
* "type": "button",
|
|
8055
|
+
* "label": {
|
|
8056
|
+
* "value": "My Custom Control 0"
|
|
8057
|
+
* },
|
|
8058
|
+
* "key": "my-custom-control-0"
|
|
7968
8059
|
* }
|
|
7969
8060
|
*
|
|
7970
8061
|
*
|
|
7971
8062
|
*
|
|
7972
8063
|
*/
|
|
7973
|
-
export interface
|
|
7974
|
-
|
|
7975
|
-
|
|
8064
|
+
export interface ButtonControl {
|
|
8065
|
+
label: I18NProperty75;
|
|
8066
|
+
type: 'button' | 'BUTTON';
|
|
8067
|
+
key: string;
|
|
7976
8068
|
[k: string]: unknown;
|
|
7977
8069
|
}
|
|
7978
8070
|
/**
|
|
7979
8071
|
*
|
|
7980
8072
|
*
|
|
7981
|
-
*
|
|
8073
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8074
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
7982
8075
|
*
|
|
7983
|
-
* <
|
|
8076
|
+
* <h3>Example</h3>
|
|
7984
8077
|
*
|
|
7985
8078
|
*
|
|
7986
8079
|
*
|
|
7987
8080
|
*
|
|
7988
8081
|
*
|
|
7989
8082
|
* {
|
|
7990
|
-
* "
|
|
7991
|
-
* "label": {
|
|
7992
|
-
* "value": "My Custom Control 0"
|
|
7993
|
-
* },
|
|
7994
|
-
* "key": "my-custom-control-0"
|
|
8083
|
+
* "value": "My text"
|
|
7995
8084
|
* }
|
|
7996
8085
|
*
|
|
7997
8086
|
*
|
|
7998
8087
|
*
|
|
7999
8088
|
*/
|
|
8000
|
-
export interface
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
key: string;
|
|
8089
|
+
export interface I18NProperty75 {
|
|
8090
|
+
value: string;
|
|
8091
|
+
i18n?: string;
|
|
8004
8092
|
[k: string]: unknown;
|
|
8005
8093
|
}
|
|
8006
8094
|
/**
|
|
@@ -29163,7 +29251,7 @@ export interface I18NProperty83 {
|
|
|
29163
29251
|
*
|
|
29164
29252
|
*/
|
|
29165
29253
|
export interface MacroPropertyPanel1 {
|
|
29166
|
-
controls?: (
|
|
29254
|
+
controls?: (ToggleGroup1 | TextControl1 | ControlGroup1 | ButtonControl3)[];
|
|
29167
29255
|
cacheable?: boolean;
|
|
29168
29256
|
url: string;
|
|
29169
29257
|
[k: string]: unknown;
|
|
@@ -29171,7 +29259,52 @@ export interface MacroPropertyPanel1 {
|
|
|
29171
29259
|
/**
|
|
29172
29260
|
*
|
|
29173
29261
|
*
|
|
29174
|
-
* Defines a
|
|
29262
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29263
|
+
*
|
|
29264
|
+
* <p><b>Example</b></p>
|
|
29265
|
+
*
|
|
29266
|
+
*
|
|
29267
|
+
*
|
|
29268
|
+
*
|
|
29269
|
+
*
|
|
29270
|
+
* [
|
|
29271
|
+
* {
|
|
29272
|
+
* "type": "togglegroup",
|
|
29273
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29274
|
+
* "controls": [
|
|
29275
|
+
* {
|
|
29276
|
+
* "type": "togglebutton",
|
|
29277
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29278
|
+
* "label": {
|
|
29279
|
+
* "value": "My Custom Control 0"
|
|
29280
|
+
* },
|
|
29281
|
+
* "key": "my-custom-toggle-button-0"
|
|
29282
|
+
* },
|
|
29283
|
+
* {
|
|
29284
|
+
* "type": "togglebutton",
|
|
29285
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29286
|
+
* "label": {
|
|
29287
|
+
* "value": "My Custom Control 1"
|
|
29288
|
+
* },
|
|
29289
|
+
* "key": "my-custom-toggle-button-1"
|
|
29290
|
+
* }
|
|
29291
|
+
* ]
|
|
29292
|
+
* }
|
|
29293
|
+
* ]
|
|
29294
|
+
*
|
|
29295
|
+
*
|
|
29296
|
+
*
|
|
29297
|
+
*/
|
|
29298
|
+
export interface ToggleGroup1 {
|
|
29299
|
+
controls: ToggleButtonControl1[];
|
|
29300
|
+
macroParameter: string;
|
|
29301
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29302
|
+
[k: string]: unknown;
|
|
29303
|
+
}
|
|
29304
|
+
/**
|
|
29305
|
+
*
|
|
29306
|
+
*
|
|
29307
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29175
29308
|
*
|
|
29176
29309
|
* <p><b>Example</b></p>
|
|
29177
29310
|
*
|
|
@@ -29180,19 +29313,21 @@ export interface MacroPropertyPanel1 {
|
|
|
29180
29313
|
*
|
|
29181
29314
|
*
|
|
29182
29315
|
* {
|
|
29183
|
-
* "type": "
|
|
29316
|
+
* "type": "togglebutton",
|
|
29317
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29184
29318
|
* "label": {
|
|
29185
29319
|
* "value": "My Custom Control 0"
|
|
29186
29320
|
* },
|
|
29187
|
-
* "key": "my-custom-
|
|
29321
|
+
* "key": "my-custom-toggle-button-0"
|
|
29188
29322
|
* }
|
|
29189
29323
|
*
|
|
29190
29324
|
*
|
|
29191
29325
|
*
|
|
29192
29326
|
*/
|
|
29193
|
-
export interface
|
|
29327
|
+
export interface ToggleButtonControl1 {
|
|
29328
|
+
macroParameterValue: string;
|
|
29194
29329
|
label: I18NProperty84;
|
|
29195
|
-
type: '
|
|
29330
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29196
29331
|
key: string;
|
|
29197
29332
|
[k: string]: unknown;
|
|
29198
29333
|
}
|
|
@@ -29251,7 +29386,7 @@ export interface TextControl1 {
|
|
|
29251
29386
|
/**
|
|
29252
29387
|
*
|
|
29253
29388
|
*
|
|
29254
|
-
* Defines a
|
|
29389
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29255
29390
|
*
|
|
29256
29391
|
* <p><b>Example</b></p>
|
|
29257
29392
|
*
|
|
@@ -29261,24 +29396,21 @@ export interface TextControl1 {
|
|
|
29261
29396
|
*
|
|
29262
29397
|
* [
|
|
29263
29398
|
* {
|
|
29264
|
-
* "type": "
|
|
29265
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29399
|
+
* "type": "group",
|
|
29266
29400
|
* "controls": [
|
|
29267
29401
|
* {
|
|
29268
|
-
* "type": "
|
|
29269
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29402
|
+
* "type": "button",
|
|
29270
29403
|
* "label": {
|
|
29271
29404
|
* "value": "My Custom Control 0"
|
|
29272
29405
|
* },
|
|
29273
|
-
* "key": "my-custom-
|
|
29406
|
+
* "key": "my-custom-control-0"
|
|
29274
29407
|
* },
|
|
29275
29408
|
* {
|
|
29276
|
-
* "type": "
|
|
29277
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29409
|
+
* "type": "button",
|
|
29278
29410
|
* "label": {
|
|
29279
29411
|
* "value": "My Custom Control 1"
|
|
29280
29412
|
* },
|
|
29281
|
-
* "key": "my-custom-
|
|
29413
|
+
* "key": "my-custom-control-1"
|
|
29282
29414
|
* }
|
|
29283
29415
|
* ]
|
|
29284
29416
|
* }
|
|
@@ -29287,16 +29419,15 @@ export interface TextControl1 {
|
|
|
29287
29419
|
*
|
|
29288
29420
|
*
|
|
29289
29421
|
*/
|
|
29290
|
-
export interface
|
|
29291
|
-
controls:
|
|
29292
|
-
|
|
29293
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29422
|
+
export interface ControlGroup1 {
|
|
29423
|
+
controls: ButtonControl2[];
|
|
29424
|
+
type: 'group' | 'GROUP';
|
|
29294
29425
|
[k: string]: unknown;
|
|
29295
29426
|
}
|
|
29296
29427
|
/**
|
|
29297
29428
|
*
|
|
29298
29429
|
*
|
|
29299
|
-
* Defines a
|
|
29430
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29300
29431
|
*
|
|
29301
29432
|
* <p><b>Example</b></p>
|
|
29302
29433
|
*
|
|
@@ -29305,21 +29436,19 @@ export interface ToggleGroup1 {
|
|
|
29305
29436
|
*
|
|
29306
29437
|
*
|
|
29307
29438
|
* {
|
|
29308
|
-
* "type": "
|
|
29309
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29439
|
+
* "type": "button",
|
|
29310
29440
|
* "label": {
|
|
29311
29441
|
* "value": "My Custom Control 0"
|
|
29312
29442
|
* },
|
|
29313
|
-
* "key": "my-custom-
|
|
29443
|
+
* "key": "my-custom-control-0"
|
|
29314
29444
|
* }
|
|
29315
29445
|
*
|
|
29316
29446
|
*
|
|
29317
29447
|
*
|
|
29318
29448
|
*/
|
|
29319
|
-
export interface
|
|
29320
|
-
macroParameterValue: string;
|
|
29449
|
+
export interface ButtonControl2 {
|
|
29321
29450
|
label: I18NProperty85;
|
|
29322
|
-
type: '
|
|
29451
|
+
type: 'button' | 'BUTTON';
|
|
29323
29452
|
key: string;
|
|
29324
29453
|
[k: string]: unknown;
|
|
29325
29454
|
}
|
|
@@ -29347,47 +29476,6 @@ export interface I18NProperty85 {
|
|
|
29347
29476
|
i18n?: string;
|
|
29348
29477
|
[k: string]: unknown;
|
|
29349
29478
|
}
|
|
29350
|
-
/**
|
|
29351
|
-
*
|
|
29352
|
-
*
|
|
29353
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29354
|
-
*
|
|
29355
|
-
* <p><b>Example</b></p>
|
|
29356
|
-
*
|
|
29357
|
-
*
|
|
29358
|
-
*
|
|
29359
|
-
*
|
|
29360
|
-
*
|
|
29361
|
-
* [
|
|
29362
|
-
* {
|
|
29363
|
-
* "type": "group",
|
|
29364
|
-
* "controls": [
|
|
29365
|
-
* {
|
|
29366
|
-
* "type": "button",
|
|
29367
|
-
* "label": {
|
|
29368
|
-
* "value": "My Custom Control 0"
|
|
29369
|
-
* },
|
|
29370
|
-
* "key": "my-custom-control-0"
|
|
29371
|
-
* },
|
|
29372
|
-
* {
|
|
29373
|
-
* "type": "button",
|
|
29374
|
-
* "label": {
|
|
29375
|
-
* "value": "My Custom Control 1"
|
|
29376
|
-
* },
|
|
29377
|
-
* "key": "my-custom-control-1"
|
|
29378
|
-
* }
|
|
29379
|
-
* ]
|
|
29380
|
-
* }
|
|
29381
|
-
* ]
|
|
29382
|
-
*
|
|
29383
|
-
*
|
|
29384
|
-
*
|
|
29385
|
-
*/
|
|
29386
|
-
export interface ControlGroup1 {
|
|
29387
|
-
controls: ButtonControl3[];
|
|
29388
|
-
type: 'group' | 'GROUP';
|
|
29389
|
-
[k: string]: unknown;
|
|
29390
|
-
}
|
|
29391
29479
|
/**
|
|
29392
29480
|
*
|
|
29393
29481
|
*
|
|
@@ -50289,14 +50377,14 @@ export interface I18NProperty91 {
|
|
|
50289
50377
|
*
|
|
50290
50378
|
*/
|
|
50291
50379
|
export interface WebItemTarget2 {
|
|
50292
|
-
options?:
|
|
50380
|
+
options?: DialogModuleOptions2 | InlineDialogOptions2 | DialogOptions4;
|
|
50293
50381
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50294
50382
|
[k: string]: unknown;
|
|
50295
50383
|
}
|
|
50296
50384
|
/**
|
|
50297
50385
|
*
|
|
50298
50386
|
*
|
|
50299
|
-
* Options for
|
|
50387
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50300
50388
|
*
|
|
50301
50389
|
* <h3>Example</h3>
|
|
50302
50390
|
*
|
|
@@ -50306,11 +50394,9 @@ export interface WebItemTarget2 {
|
|
|
50306
50394
|
*
|
|
50307
50395
|
* {
|
|
50308
50396
|
* "target": {
|
|
50309
|
-
* "type": "
|
|
50397
|
+
* "type": "dialogmodule",
|
|
50310
50398
|
* "options": {
|
|
50311
|
-
* "
|
|
50312
|
-
* "offsetX": "30px",
|
|
50313
|
-
* "offsetY": "20px"
|
|
50399
|
+
* "key": "dialog-module-key"
|
|
50314
50400
|
* }
|
|
50315
50401
|
* }
|
|
50316
50402
|
* }
|
|
@@ -50318,22 +50404,14 @@ export interface WebItemTarget2 {
|
|
|
50318
50404
|
*
|
|
50319
50405
|
*
|
|
50320
50406
|
*/
|
|
50321
|
-
export interface
|
|
50322
|
-
|
|
50323
|
-
offsetY?: string;
|
|
50324
|
-
width?: string;
|
|
50325
|
-
onTop?: boolean;
|
|
50326
|
-
showDelay?: number;
|
|
50327
|
-
closeOthers?: boolean;
|
|
50328
|
-
persistent?: boolean;
|
|
50329
|
-
onHover?: boolean;
|
|
50330
|
-
isRelativeToMouse?: boolean;
|
|
50407
|
+
export interface DialogModuleOptions2 {
|
|
50408
|
+
key: string;
|
|
50331
50409
|
[k: string]: unknown;
|
|
50332
50410
|
}
|
|
50333
50411
|
/**
|
|
50334
50412
|
*
|
|
50335
50413
|
*
|
|
50336
|
-
* Options for
|
|
50414
|
+
* Options for an inline dialog target
|
|
50337
50415
|
*
|
|
50338
50416
|
* <h3>Example</h3>
|
|
50339
50417
|
*
|
|
@@ -50343,9 +50421,11 @@ export interface InlineDialogOptions2 {
|
|
|
50343
50421
|
*
|
|
50344
50422
|
* {
|
|
50345
50423
|
* "target": {
|
|
50346
|
-
* "type": "
|
|
50424
|
+
* "type": "inlinedialog",
|
|
50347
50425
|
* "options": {
|
|
50348
|
-
* "
|
|
50426
|
+
* "onHover": true,
|
|
50427
|
+
* "offsetX": "30px",
|
|
50428
|
+
* "offsetY": "20px"
|
|
50349
50429
|
* }
|
|
50350
50430
|
* }
|
|
50351
50431
|
* }
|
|
@@ -50353,8 +50433,16 @@ export interface InlineDialogOptions2 {
|
|
|
50353
50433
|
*
|
|
50354
50434
|
*
|
|
50355
50435
|
*/
|
|
50356
|
-
export interface
|
|
50357
|
-
|
|
50436
|
+
export interface InlineDialogOptions2 {
|
|
50437
|
+
offsetX?: string;
|
|
50438
|
+
offsetY?: string;
|
|
50439
|
+
width?: string;
|
|
50440
|
+
onTop?: boolean;
|
|
50441
|
+
showDelay?: number;
|
|
50442
|
+
closeOthers?: boolean;
|
|
50443
|
+
persistent?: boolean;
|
|
50444
|
+
onHover?: boolean;
|
|
50445
|
+
isRelativeToMouse?: boolean;
|
|
50358
50446
|
[k: string]: unknown;
|
|
50359
50447
|
}
|
|
50360
50448
|
/**
|