@forge/manifest 3.3.0-next.3 → 3.3.0-next.6

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.
@@ -764,6 +764,20 @@ export interface Modules {
764
764
  name: string;
765
765
  description: string;
766
766
  function?: string;
767
+ expression?: string;
768
+ errorMessage?: string;
769
+ view?: {
770
+ resource: string;
771
+ [k: string]: unknown;
772
+ };
773
+ edit?: {
774
+ resource: string;
775
+ [k: string]: unknown;
776
+ };
777
+ create?: {
778
+ resource: string;
779
+ [k: string]: unknown;
780
+ };
767
781
  key: ModuleKeySchema;
768
782
  [k: string]: unknown;
769
783
  },
@@ -771,6 +785,20 @@ export interface Modules {
771
785
  name: string;
772
786
  description: string;
773
787
  function?: string;
788
+ expression?: string;
789
+ errorMessage?: string;
790
+ view?: {
791
+ resource: string;
792
+ [k: string]: unknown;
793
+ };
794
+ edit?: {
795
+ resource: string;
796
+ [k: string]: unknown;
797
+ };
798
+ create?: {
799
+ resource: string;
800
+ [k: string]: unknown;
801
+ };
774
802
  key: ModuleKeySchema;
775
803
  [k: string]: unknown;
776
804
  }[]
@@ -808,6 +836,15 @@ export interface Modules {
808
836
  function: string;
809
837
  [k: string]: unknown;
810
838
  };
839
+ searchSuggestions?:
840
+ | {
841
+ function: string;
842
+ [k: string]: unknown;
843
+ }
844
+ | {
845
+ expression: string;
846
+ [k: string]: unknown;
847
+ };
811
848
  displayConditions?: {
812
849
  [k: string]: unknown;
813
850
  };
@@ -848,6 +885,15 @@ export interface Modules {
848
885
  function: string;
849
886
  [k: string]: unknown;
850
887
  };
888
+ searchSuggestions?:
889
+ | {
890
+ function: string;
891
+ [k: string]: unknown;
892
+ }
893
+ | {
894
+ expression: string;
895
+ [k: string]: unknown;
896
+ };
851
897
  displayConditions?: {
852
898
  [k: string]: unknown;
853
899
  };
@@ -887,6 +933,15 @@ export interface Modules {
887
933
  function: string;
888
934
  [k: string]: unknown;
889
935
  };
936
+ searchSuggestions?:
937
+ | {
938
+ function: string;
939
+ [k: string]: unknown;
940
+ }
941
+ | {
942
+ expression: string;
943
+ [k: string]: unknown;
944
+ };
890
945
  displayConditions?: {
891
946
  [k: string]: unknown;
892
947
  };
@@ -927,6 +982,15 @@ export interface Modules {
927
982
  function: string;
928
983
  [k: string]: unknown;
929
984
  };
985
+ searchSuggestions?:
986
+ | {
987
+ function: string;
988
+ [k: string]: unknown;
989
+ }
990
+ | {
991
+ expression: string;
992
+ [k: string]: unknown;
993
+ };
930
994
  displayConditions?: {
931
995
  [k: string]: unknown;
932
996
  };
@@ -965,6 +1029,15 @@ export interface Modules {
965
1029
  function: string;
966
1030
  [k: string]: unknown;
967
1031
  };
1032
+ searchSuggestions?:
1033
+ | {
1034
+ function: string;
1035
+ [k: string]: unknown;
1036
+ }
1037
+ | {
1038
+ expression: string;
1039
+ [k: string]: unknown;
1040
+ };
968
1041
  icon?: string;
969
1042
  resolver?: {
970
1043
  function: string;
@@ -1017,6 +1090,15 @@ export interface Modules {
1017
1090
  function: string;
1018
1091
  [k: string]: unknown;
1019
1092
  };
1093
+ searchSuggestions?:
1094
+ | {
1095
+ function: string;
1096
+ [k: string]: unknown;
1097
+ }
1098
+ | {
1099
+ expression: string;
1100
+ [k: string]: unknown;
1101
+ };
1020
1102
  icon?: string;
1021
1103
  resolver?: {
1022
1104
  function: string;
@@ -1068,6 +1150,15 @@ export interface Modules {
1068
1150
  function: string;
1069
1151
  [k: string]: unknown;
1070
1152
  };
1153
+ searchSuggestions?:
1154
+ | {
1155
+ function: string;
1156
+ [k: string]: unknown;
1157
+ }
1158
+ | {
1159
+ expression: string;
1160
+ [k: string]: unknown;
1161
+ };
1071
1162
  icon?: string;
1072
1163
  resolver?: {
1073
1164
  function: string;
@@ -1120,6 +1211,15 @@ export interface Modules {
1120
1211
  function: string;
1121
1212
  [k: string]: unknown;
1122
1213
  };
1214
+ searchSuggestions?:
1215
+ | {
1216
+ function: string;
1217
+ [k: string]: unknown;
1218
+ }
1219
+ | {
1220
+ expression: string;
1221
+ [k: string]: unknown;
1222
+ };
1123
1223
  icon?: string;
1124
1224
  resolver?: {
1125
1225
  function: string;
@@ -2075,6 +2175,468 @@ export interface Modules {
2075
2175
  }
2076
2176
  )[]
2077
2177
  ];
2178
+ 'jiraServiceManagement:queuePage'?: [
2179
+ (
2180
+ | {
2181
+ title: string;
2182
+ icon?: string;
2183
+ layout?: 'native' | 'basic';
2184
+ function: string;
2185
+ key: ModuleKeySchema;
2186
+ [k: string]: unknown;
2187
+ }
2188
+ | {
2189
+ title: string;
2190
+ icon?: string;
2191
+ layout?: 'native' | 'basic';
2192
+ resolver?: {
2193
+ function: string;
2194
+ };
2195
+ resource: string;
2196
+ resourceUploadId?: string;
2197
+ key: ModuleKeySchema;
2198
+ [k: string]: unknown;
2199
+ }
2200
+ ),
2201
+ ...(
2202
+ | {
2203
+ title: string;
2204
+ icon?: string;
2205
+ layout?: 'native' | 'basic';
2206
+ function: string;
2207
+ key: ModuleKeySchema;
2208
+ [k: string]: unknown;
2209
+ }
2210
+ | {
2211
+ title: string;
2212
+ icon?: string;
2213
+ layout?: 'native' | 'basic';
2214
+ resolver?: {
2215
+ function: string;
2216
+ };
2217
+ resource: string;
2218
+ resourceUploadId?: string;
2219
+ key: ModuleKeySchema;
2220
+ [k: string]: unknown;
2221
+ }
2222
+ )[]
2223
+ ];
2224
+ 'jiraServiceManagement:portalRequestDetail'?: [
2225
+ (
2226
+ | {
2227
+ title: string;
2228
+ icon?: string;
2229
+ layout?: 'native' | 'basic';
2230
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2231
+ function: string;
2232
+ key: ModuleKeySchema;
2233
+ [k: string]: unknown;
2234
+ }
2235
+ | {
2236
+ title: string;
2237
+ icon?: string;
2238
+ layout?: 'native' | 'basic';
2239
+ resolver?: {
2240
+ function: string;
2241
+ };
2242
+ resource: string;
2243
+ resourceUploadId?: string;
2244
+ key: ModuleKeySchema;
2245
+ [k: string]: unknown;
2246
+ }
2247
+ ),
2248
+ ...(
2249
+ | {
2250
+ title: string;
2251
+ icon?: string;
2252
+ layout?: 'native' | 'basic';
2253
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2254
+ function: string;
2255
+ key: ModuleKeySchema;
2256
+ [k: string]: unknown;
2257
+ }
2258
+ | {
2259
+ title: string;
2260
+ icon?: string;
2261
+ layout?: 'native' | 'basic';
2262
+ resolver?: {
2263
+ function: string;
2264
+ };
2265
+ resource: string;
2266
+ resourceUploadId?: string;
2267
+ key: ModuleKeySchema;
2268
+ [k: string]: unknown;
2269
+ }
2270
+ )[]
2271
+ ];
2272
+ 'jiraServiceManagement:portalRequestDetailPanel'?: [
2273
+ (
2274
+ | {
2275
+ title: string;
2276
+ icon?: string;
2277
+ layout?: 'native' | 'basic';
2278
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2279
+ function: string;
2280
+ key: ModuleKeySchema;
2281
+ [k: string]: unknown;
2282
+ }
2283
+ | {
2284
+ title: string;
2285
+ icon?: string;
2286
+ layout?: 'native' | 'basic';
2287
+ resolver?: {
2288
+ function: string;
2289
+ };
2290
+ resource: string;
2291
+ resourceUploadId?: string;
2292
+ key: ModuleKeySchema;
2293
+ [k: string]: unknown;
2294
+ }
2295
+ ),
2296
+ ...(
2297
+ | {
2298
+ title: string;
2299
+ icon?: string;
2300
+ layout?: 'native' | 'basic';
2301
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2302
+ function: string;
2303
+ key: ModuleKeySchema;
2304
+ [k: string]: unknown;
2305
+ }
2306
+ | {
2307
+ title: string;
2308
+ icon?: string;
2309
+ layout?: 'native' | 'basic';
2310
+ resolver?: {
2311
+ function: string;
2312
+ };
2313
+ resource: string;
2314
+ resourceUploadId?: string;
2315
+ key: ModuleKeySchema;
2316
+ [k: string]: unknown;
2317
+ }
2318
+ )[]
2319
+ ];
2320
+ 'jiraServiceManagement:organizationPanel'?: [
2321
+ (
2322
+ | {
2323
+ title: string;
2324
+ icon?: string;
2325
+ layout?: 'native' | 'basic';
2326
+ function: string;
2327
+ key: ModuleKeySchema;
2328
+ [k: string]: unknown;
2329
+ }
2330
+ | {
2331
+ title: string;
2332
+ icon?: string;
2333
+ layout?: 'native' | 'basic';
2334
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2335
+ resolver?: {
2336
+ function: string;
2337
+ };
2338
+ resource: string;
2339
+ resourceUploadId?: string;
2340
+ key: ModuleKeySchema;
2341
+ [k: string]: unknown;
2342
+ }
2343
+ ),
2344
+ ...(
2345
+ | {
2346
+ title: string;
2347
+ icon?: string;
2348
+ layout?: 'native' | 'basic';
2349
+ function: string;
2350
+ key: ModuleKeySchema;
2351
+ [k: string]: unknown;
2352
+ }
2353
+ | {
2354
+ title: string;
2355
+ icon?: string;
2356
+ layout?: 'native' | 'basic';
2357
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2358
+ resolver?: {
2359
+ function: string;
2360
+ };
2361
+ resource: string;
2362
+ resourceUploadId?: string;
2363
+ key: ModuleKeySchema;
2364
+ [k: string]: unknown;
2365
+ }
2366
+ )[]
2367
+ ];
2368
+ 'jiraServiceManagement:portalFooter'?: [
2369
+ (
2370
+ | {
2371
+ layout?: 'native' | 'basic';
2372
+ pages?: (
2373
+ | 'help_center'
2374
+ | 'portal'
2375
+ | 'create_request'
2376
+ | 'view_request'
2377
+ | 'my_requests'
2378
+ | 'approvals'
2379
+ | 'profile'
2380
+ )[];
2381
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2382
+ function: string;
2383
+ key: ModuleKeySchema;
2384
+ [k: string]: unknown;
2385
+ }
2386
+ | {
2387
+ pages?: (
2388
+ | 'help_center'
2389
+ | 'portal'
2390
+ | 'create_request'
2391
+ | 'view_request'
2392
+ | 'my_requests'
2393
+ | 'approvals'
2394
+ | 'profile'
2395
+ )[];
2396
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2397
+ resolver?: {
2398
+ function: string;
2399
+ };
2400
+ resource: string;
2401
+ resourceUploadId?: string;
2402
+ key: ModuleKeySchema;
2403
+ [k: string]: unknown;
2404
+ }
2405
+ ),
2406
+ ...(
2407
+ | {
2408
+ layout?: 'native' | 'basic';
2409
+ pages?: (
2410
+ | 'help_center'
2411
+ | 'portal'
2412
+ | 'create_request'
2413
+ | 'view_request'
2414
+ | 'my_requests'
2415
+ | 'approvals'
2416
+ | 'profile'
2417
+ )[];
2418
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2419
+ function: string;
2420
+ key: ModuleKeySchema;
2421
+ [k: string]: unknown;
2422
+ }
2423
+ | {
2424
+ pages?: (
2425
+ | 'help_center'
2426
+ | 'portal'
2427
+ | 'create_request'
2428
+ | 'view_request'
2429
+ | 'my_requests'
2430
+ | 'approvals'
2431
+ | 'profile'
2432
+ )[];
2433
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2434
+ resolver?: {
2435
+ function: string;
2436
+ };
2437
+ resource: string;
2438
+ resourceUploadId?: string;
2439
+ key: ModuleKeySchema;
2440
+ [k: string]: unknown;
2441
+ }
2442
+ )[]
2443
+ ];
2444
+ 'jiraServiceManagement:portalHeader'?: [
2445
+ (
2446
+ | {
2447
+ pages?: (
2448
+ | 'help_center'
2449
+ | 'portal'
2450
+ | 'create_request'
2451
+ | 'view_request'
2452
+ | 'my_requests'
2453
+ | 'approvals'
2454
+ | 'profile'
2455
+ )[];
2456
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2457
+ function: string;
2458
+ key: ModuleKeySchema;
2459
+ [k: string]: unknown;
2460
+ }
2461
+ | {
2462
+ pages?: (
2463
+ | 'help_center'
2464
+ | 'portal'
2465
+ | 'create_request'
2466
+ | 'view_request'
2467
+ | 'my_requests'
2468
+ | 'approvals'
2469
+ | 'profile'
2470
+ )[];
2471
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2472
+ resolver?: {
2473
+ function: string;
2474
+ };
2475
+ resource: string;
2476
+ resourceUploadId?: string;
2477
+ key: ModuleKeySchema;
2478
+ [k: string]: unknown;
2479
+ }
2480
+ ),
2481
+ ...(
2482
+ | {
2483
+ pages?: (
2484
+ | 'help_center'
2485
+ | 'portal'
2486
+ | 'create_request'
2487
+ | 'view_request'
2488
+ | 'my_requests'
2489
+ | 'approvals'
2490
+ | 'profile'
2491
+ )[];
2492
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2493
+ function: string;
2494
+ key: ModuleKeySchema;
2495
+ [k: string]: unknown;
2496
+ }
2497
+ | {
2498
+ pages?: (
2499
+ | 'help_center'
2500
+ | 'portal'
2501
+ | 'create_request'
2502
+ | 'view_request'
2503
+ | 'my_requests'
2504
+ | 'approvals'
2505
+ | 'profile'
2506
+ )[];
2507
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2508
+ resolver?: {
2509
+ function: string;
2510
+ };
2511
+ resource: string;
2512
+ resourceUploadId?: string;
2513
+ key: ModuleKeySchema;
2514
+ [k: string]: unknown;
2515
+ }
2516
+ )[]
2517
+ ];
2518
+ 'jiraServiceManagement:portalSubheader'?: [
2519
+ (
2520
+ | {
2521
+ pages?: (
2522
+ | 'help_center'
2523
+ | 'portal'
2524
+ | 'create_request'
2525
+ | 'view_request'
2526
+ | 'my_requests'
2527
+ | 'approvals'
2528
+ | 'profile'
2529
+ )[];
2530
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2531
+ function: string;
2532
+ key: ModuleKeySchema;
2533
+ [k: string]: unknown;
2534
+ }
2535
+ | {
2536
+ pages?: (
2537
+ | 'help_center'
2538
+ | 'portal'
2539
+ | 'create_request'
2540
+ | 'view_request'
2541
+ | 'my_requests'
2542
+ | 'approvals'
2543
+ | 'profile'
2544
+ )[];
2545
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2546
+ resolver?: {
2547
+ function: string;
2548
+ };
2549
+ resource: string;
2550
+ resourceUploadId?: string;
2551
+ key: ModuleKeySchema;
2552
+ [k: string]: unknown;
2553
+ }
2554
+ ),
2555
+ ...(
2556
+ | {
2557
+ pages?: (
2558
+ | 'help_center'
2559
+ | 'portal'
2560
+ | 'create_request'
2561
+ | 'view_request'
2562
+ | 'my_requests'
2563
+ | 'approvals'
2564
+ | 'profile'
2565
+ )[];
2566
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2567
+ function: string;
2568
+ key: ModuleKeySchema;
2569
+ [k: string]: unknown;
2570
+ }
2571
+ | {
2572
+ pages?: (
2573
+ | 'help_center'
2574
+ | 'portal'
2575
+ | 'create_request'
2576
+ | 'view_request'
2577
+ | 'my_requests'
2578
+ | 'approvals'
2579
+ | 'profile'
2580
+ )[];
2581
+ viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2582
+ resolver?: {
2583
+ function: string;
2584
+ };
2585
+ resource: string;
2586
+ resourceUploadId?: string;
2587
+ key: ModuleKeySchema;
2588
+ [k: string]: unknown;
2589
+ }
2590
+ )[]
2591
+ ];
2592
+ 'jiraServiceManagement:portalProfilePanel'?: [
2593
+ (
2594
+ | {
2595
+ title: string;
2596
+ icon?: string;
2597
+ layout?: 'native' | 'basic';
2598
+ function: string;
2599
+ key: ModuleKeySchema;
2600
+ [k: string]: unknown;
2601
+ }
2602
+ | {
2603
+ title: string;
2604
+ icon?: string;
2605
+ layout?: 'native' | 'basic';
2606
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2607
+ resolver?: {
2608
+ function: string;
2609
+ };
2610
+ resource: string;
2611
+ resourceUploadId?: string;
2612
+ key: ModuleKeySchema;
2613
+ [k: string]: unknown;
2614
+ }
2615
+ ),
2616
+ ...(
2617
+ | {
2618
+ title: string;
2619
+ icon?: string;
2620
+ layout?: 'native' | 'basic';
2621
+ function: string;
2622
+ key: ModuleKeySchema;
2623
+ [k: string]: unknown;
2624
+ }
2625
+ | {
2626
+ title: string;
2627
+ icon?: string;
2628
+ layout?: 'native' | 'basic';
2629
+ viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
2630
+ resolver?: {
2631
+ function: string;
2632
+ };
2633
+ resource: string;
2634
+ resourceUploadId?: string;
2635
+ key: ModuleKeySchema;
2636
+ [k: string]: unknown;
2637
+ }
2638
+ )[]
2639
+ ];
2078
2640
  'connect-jira:keyboardShortcuts'?: [
2079
2641
  {
2080
2642
  shortcut?: string;
@@ -3078,7 +3640,7 @@ export interface Modules {
3078
3640
  location?: string;
3079
3641
  cacheable?: boolean;
3080
3642
  supportsNative?: boolean;
3081
- conditions?: (CompositeCondition | SingleCondition)[];
3643
+ conditions?: (SingleCondition | CompositeCondition)[];
3082
3644
  params?: {
3083
3645
  [k: string]: unknown;
3084
3646
  };
@@ -3094,7 +3656,7 @@ export interface Modules {
3094
3656
  location?: string;
3095
3657
  cacheable?: boolean;
3096
3658
  supportsNative?: boolean;
3097
- conditions?: (CompositeCondition | SingleCondition)[];
3659
+ conditions?: (SingleCondition | CompositeCondition)[];
3098
3660
  params?: {
3099
3661
  [k: string]: unknown;
3100
3662
  };
@@ -3132,7 +3694,7 @@ export interface Modules {
3132
3694
  weight?: number;
3133
3695
  cacheable?: boolean;
3134
3696
  location?: string;
3135
- conditions?: (SingleCondition | CompositeCondition)[];
3697
+ conditions?: (CompositeCondition | SingleCondition)[];
3136
3698
  params?: {
3137
3699
  [k: string]: unknown;
3138
3700
  };
@@ -3146,7 +3708,7 @@ export interface Modules {
3146
3708
  weight?: number;
3147
3709
  cacheable?: boolean;
3148
3710
  location?: string;
3149
- conditions?: (SingleCondition | CompositeCondition)[];
3711
+ conditions?: (CompositeCondition | SingleCondition)[];
3150
3712
  params?: {
3151
3713
  [k: string]: unknown;
3152
3714
  };
@@ -3161,7 +3723,7 @@ export interface Modules {
3161
3723
  name?: I18NProperty55;
3162
3724
  weight?: number;
3163
3725
  location?: string;
3164
- conditions?: (SingleCondition | CompositeCondition)[];
3726
+ conditions?: (CompositeCondition | SingleCondition)[];
3165
3727
  params?: {
3166
3728
  [k: string]: unknown;
3167
3729
  };
@@ -3173,7 +3735,7 @@ export interface Modules {
3173
3735
  name?: I18NProperty55;
3174
3736
  weight?: number;
3175
3737
  location?: string;
3176
- conditions?: (SingleCondition | CompositeCondition)[];
3738
+ conditions?: (CompositeCondition | SingleCondition)[];
3177
3739
  params?: {
3178
3740
  [k: string]: unknown;
3179
3741
  };
@@ -3188,7 +3750,7 @@ export interface Modules {
3188
3750
  weight?: number;
3189
3751
  cacheable?: boolean;
3190
3752
  location?: string;
3191
- conditions?: (SingleCondition | CompositeCondition)[];
3753
+ conditions?: (CompositeCondition | SingleCondition)[];
3192
3754
  params?: {
3193
3755
  [k: string]: unknown;
3194
3756
  };
@@ -3202,7 +3764,7 @@ export interface Modules {
3202
3764
  weight?: number;
3203
3765
  cacheable?: boolean;
3204
3766
  location?: string;
3205
- conditions?: (SingleCondition | CompositeCondition)[];
3767
+ conditions?: (CompositeCondition | SingleCondition)[];
3206
3768
  params?: {
3207
3769
  [k: string]: unknown;
3208
3770
  };
@@ -3765,7 +4327,7 @@ export interface I18NProperty1 {
3765
4327
  *
3766
4328
  */
3767
4329
  export interface CompositeCondition {
3768
- conditions?: (SingleCondition | ManifestSchema)[];
4330
+ conditions?: (ManifestSchema | SingleCondition)[];
3769
4331
  type?: 'and' | 'AND' | 'or' | 'OR';
3770
4332
  [k: string]: unknown;
3771
4333
  }
@@ -6324,7 +6886,83 @@ export interface I18NProperty55 {
6324
6886
  *
6325
6887
  *
6326
6888
  */
6327
- export interface Icon9 {
6889
+ export interface Icon9 {
6890
+ width?: number;
6891
+ url: string;
6892
+ height?: number;
6893
+ [k: string]: unknown;
6894
+ }
6895
+ /**
6896
+ *
6897
+ *
6898
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
6899
+ * and value in multiple places if you like, but identical keys must have identical values.
6900
+ *
6901
+ * <h3>Example</h3>
6902
+ *
6903
+ *
6904
+ *
6905
+ *
6906
+ *
6907
+ * {
6908
+ * "value": "My text"
6909
+ * }
6910
+ *
6911
+ *
6912
+ *
6913
+ */
6914
+ export interface I18NProperty56 {
6915
+ value: string;
6916
+ i18n?: string;
6917
+ [k: string]: unknown;
6918
+ }
6919
+ /**
6920
+ *
6921
+ *
6922
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
6923
+ * and value in multiple places if you like, but identical keys must have identical values.
6924
+ *
6925
+ * <h3>Example</h3>
6926
+ *
6927
+ *
6928
+ *
6929
+ *
6930
+ *
6931
+ * {
6932
+ * "value": "My text"
6933
+ * }
6934
+ *
6935
+ *
6936
+ *
6937
+ */
6938
+ export interface I18NProperty57 {
6939
+ value: string;
6940
+ i18n?: string;
6941
+ [k: string]: unknown;
6942
+ }
6943
+ /**
6944
+ *
6945
+ *
6946
+ * Defines an icon to display.
6947
+ *
6948
+ * <h3>Example</h3>
6949
+ *
6950
+ *
6951
+ *
6952
+ *
6953
+ *
6954
+ * {
6955
+ * "icon": {
6956
+ * "width": 16,
6957
+ * "height": 16,
6958
+ * "url": "/my-icon.png"
6959
+ * }
6960
+ * }
6961
+ *
6962
+ *
6963
+ *
6964
+ */
6965
+ export interface Icon10 {
6328
6966
  width?: number;
6329
6967
  url: string;
6330
6968
  height?: number;
@@ -6333,85 +6971,80 @@ export interface Icon9 {
6333
6971
  /**
6334
6972
  *
6335
6973
  *
6336
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
6337
- * and value in multiple places if you like, but identical keys must have identical values.
6974
+ * Defines the way a <a href="../web-item/">web item</a> link is opened in the browser, such as in a modal or inline dialog.
6338
6975
  *
6339
- * <h3>Example</h3>
6976
+ * <h2>Inline Dialog Example</h2>
6340
6977
  *
6341
6978
  *
6342
6979
  *
6343
6980
  *
6344
6981
  *
6345
6982
  * {
6346
- * "value": "My text"
6983
+ * "target": {
6984
+ * "type": "inlinedialog",
6985
+ * "options": {
6986
+ * "onHover": true,
6987
+ * "offsetX": "30px",
6988
+ * "offsetY": "20px"
6989
+ * }
6990
+ * }
6347
6991
  * }
6348
6992
  *
6349
6993
  *
6350
6994
  *
6351
- */
6352
- export interface I18NProperty56 {
6353
- value: string;
6354
- i18n?: string;
6355
- [k: string]: unknown;
6356
- }
6357
- /**
6358
- *
6359
- *
6360
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
6361
- * and value in multiple places if you like, but identical keys must have identical values.
6362
6995
  *
6363
- * <h3>Example</h3>
6996
+ * <h2>Dialog Example</h2>
6364
6997
  *
6365
6998
  *
6366
6999
  *
6367
7000
  *
6368
7001
  *
6369
7002
  * {
6370
- * "value": "My text"
7003
+ * "target": {
7004
+ * "type": "dialog",
7005
+ * "options": {
7006
+ * "height": "100px",
7007
+ * "width": "200px"
7008
+ * }
7009
+ * }
6371
7010
  * }
6372
7011
  *
6373
7012
  *
6374
7013
  *
6375
- */
6376
- export interface I18NProperty57 {
6377
- value: string;
6378
- i18n?: string;
6379
- [k: string]: unknown;
6380
- }
6381
- /**
6382
- *
6383
- *
6384
- * Defines an icon to display.
6385
7014
  *
6386
- * <h3>Example</h3>
7015
+ * <h2>Common Dialog Module Example</h2>
6387
7016
  *
6388
7017
  *
6389
7018
  *
6390
7019
  *
6391
7020
  *
6392
7021
  * {
6393
- * "icon": {
6394
- * "width": 16,
6395
- * "height": 16,
6396
- * "url": "/my-icon.png"
7022
+ * "target": {
7023
+ * "type": "dialogmodule",
7024
+ * "options": {
7025
+ * "key": "dialog-module-key"
7026
+ * }
6397
7027
  * }
6398
7028
  * }
6399
7029
  *
6400
7030
  *
6401
7031
  *
7032
+ *
7033
+ * <p>More details for this use-case can be found on the <a href="../dialog/">Dialog Module</a> page.</p>
7034
+ *
7035
+ *
6402
7036
  */
6403
- export interface Icon10 {
6404
- width?: number;
6405
- url: string;
6406
- height?: number;
7037
+ export interface WebItemTarget1 {
7038
+ options?: DialogModuleOptions1 | InlineDialogOptions1 | DialogOptions2;
7039
+ type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
6407
7040
  [k: string]: unknown;
6408
7041
  }
6409
7042
  /**
6410
7043
  *
6411
7044
  *
6412
- * Defines the way a <a href="../web-item/">web item</a> link is opened in the browser, such as in a modal or inline dialog.
7045
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6413
7046
  *
6414
- * <h2>Inline Dialog Example</h2>
7047
+ * <h3>Example</h3>
6415
7048
  *
6416
7049
  *
6417
7050
  *
@@ -6419,38 +7052,26 @@ export interface Icon10 {
6419
7052
  *
6420
7053
  * {
6421
7054
  * "target": {
6422
- * "type": "inlinedialog",
7055
+ * "type": "dialogmodule",
6423
7056
  * "options": {
6424
- * "onHover": true,
6425
- * "offsetX": "30px",
6426
- * "offsetY": "20px"
7057
+ * "key": "dialog-module-key"
6427
7058
  * }
6428
7059
  * }
6429
7060
  * }
6430
7061
  *
6431
7062
  *
6432
7063
  *
6433
- *
6434
- * <h2>Dialog Example</h2>
6435
- *
6436
- *
6437
- *
6438
- *
6439
- *
6440
- * {
6441
- * "target": {
6442
- * "type": "dialog",
6443
- * "options": {
6444
- * "height": "100px",
6445
- * "width": "200px"
6446
- * }
6447
- * }
6448
- * }
6449
- *
7064
+ */
7065
+ export interface DialogModuleOptions1 {
7066
+ key: string;
7067
+ [k: string]: unknown;
7068
+ }
7069
+ /**
6450
7070
  *
6451
7071
  *
7072
+ * Options for an inline dialog target
6452
7073
  *
6453
- * <h2>Common Dialog Module Example</h2>
7074
+ * <h3>Example</h3>
6454
7075
  *
6455
7076
  *
6456
7077
  *
@@ -6458,23 +7079,28 @@ export interface Icon10 {
6458
7079
  *
6459
7080
  * {
6460
7081
  * "target": {
6461
- * "type": "dialogmodule",
7082
+ * "type": "inlinedialog",
6462
7083
  * "options": {
6463
- * "key": "dialog-module-key"
7084
+ * "onHover": true,
7085
+ * "offsetX": "30px",
7086
+ * "offsetY": "20px"
6464
7087
  * }
6465
7088
  * }
6466
7089
  * }
6467
7090
  *
6468
7091
  *
6469
7092
  *
6470
- *
6471
- * <p>More details for this use-case can be found on the <a href="../dialog/">Dialog Module</a> page.</p>
6472
- *
6473
- *
6474
7093
  */
6475
- export interface WebItemTarget1 {
6476
- options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
6477
- type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
7094
+ export interface InlineDialogOptions1 {
7095
+ offsetX?: string;
7096
+ offsetY?: string;
7097
+ width?: string;
7098
+ onTop?: boolean;
7099
+ showDelay?: number;
7100
+ closeOthers?: boolean;
7101
+ persistent?: boolean;
7102
+ onHover?: boolean;
7103
+ isRelativeToMouse?: boolean;
6478
7104
  [k: string]: unknown;
6479
7105
  }
6480
7106
  /**
@@ -6575,70 +7201,6 @@ export interface I18NProperty58 {
6575
7201
  i18n?: string;
6576
7202
  [k: string]: unknown;
6577
7203
  }
6578
- /**
6579
- *
6580
- *
6581
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6582
- *
6583
- * <h3>Example</h3>
6584
- *
6585
- *
6586
- *
6587
- *
6588
- *
6589
- * {
6590
- * "target": {
6591
- * "type": "dialogmodule",
6592
- * "options": {
6593
- * "key": "dialog-module-key"
6594
- * }
6595
- * }
6596
- * }
6597
- *
6598
- *
6599
- *
6600
- */
6601
- export interface DialogModuleOptions1 {
6602
- key: string;
6603
- [k: string]: unknown;
6604
- }
6605
- /**
6606
- *
6607
- *
6608
- * Options for an inline dialog target
6609
- *
6610
- * <h3>Example</h3>
6611
- *
6612
- *
6613
- *
6614
- *
6615
- *
6616
- * {
6617
- * "target": {
6618
- * "type": "inlinedialog",
6619
- * "options": {
6620
- * "onHover": true,
6621
- * "offsetX": "30px",
6622
- * "offsetY": "20px"
6623
- * }
6624
- * }
6625
- * }
6626
- *
6627
- *
6628
- *
6629
- */
6630
- export interface InlineDialogOptions1 {
6631
- offsetX?: string;
6632
- offsetY?: string;
6633
- width?: string;
6634
- onTop?: boolean;
6635
- showDelay?: number;
6636
- closeOthers?: boolean;
6637
- persistent?: boolean;
6638
- onHover?: boolean;
6639
- isRelativeToMouse?: boolean;
6640
- [k: string]: unknown;
6641
- }
6642
7204
  /**
6643
7205
  *
6644
7206
  *
@@ -7157,7 +7719,7 @@ export interface SingleCondition5 {
7157
7719
  *
7158
7720
  */
7159
7721
  export interface CompositeCondition7 {
7160
- conditions?: (SingleCondition | ManifestSchema)[];
7722
+ conditions?: (ManifestSchema | SingleCondition)[];
7161
7723
  type?: 'and' | 'AND' | 'or' | 'OR';
7162
7724
  [k: string]: unknown;
7163
7725
  }
@@ -8580,7 +9142,7 @@ export interface I18NProperty74 {
8580
9142
  *
8581
9143
  */
8582
9144
  export interface MacroPropertyPanel {
8583
- controls?: (TextControl | ButtonControl | ToggleGroup | ControlGroup)[];
9145
+ controls?: (ButtonControl | ToggleGroup | ControlGroup | TextControl)[];
8584
9146
  cacheable?: boolean;
8585
9147
  url: string;
8586
9148
  [k: string]: unknown;
@@ -8588,7 +9150,7 @@ export interface MacroPropertyPanel {
8588
9150
  /**
8589
9151
  *
8590
9152
  *
8591
- * Defines a text field which may appear in control extension points such as the property panel
9153
+ * Defines a button which may appear in control extension points such as the property panel
8592
9154
  *
8593
9155
  * <p><b>Example</b></p>
8594
9156
  *
@@ -8607,16 +9169,85 @@ export interface MacroPropertyPanel {
8607
9169
  *
8608
9170
  *
8609
9171
  */
8610
- export interface TextControl {
8611
- macroParameter: string;
8612
- type: 'text' | 'TEXT';
9172
+ export interface ButtonControl {
9173
+ label: I18NProperty75;
9174
+ type: 'button' | 'BUTTON';
8613
9175
  key: string;
8614
9176
  [k: string]: unknown;
8615
9177
  }
8616
9178
  /**
8617
9179
  *
8618
9180
  *
8619
- * Defines a button which may appear in control extension points such as the property panel
9181
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
9182
+ * and value in multiple places if you like, but identical keys must have identical values.
9183
+ *
9184
+ * <h3>Example</h3>
9185
+ *
9186
+ *
9187
+ *
9188
+ *
9189
+ *
9190
+ * {
9191
+ * "value": "My text"
9192
+ * }
9193
+ *
9194
+ *
9195
+ *
9196
+ */
9197
+ export interface I18NProperty75 {
9198
+ value: string;
9199
+ i18n?: string;
9200
+ [k: string]: unknown;
9201
+ }
9202
+ /**
9203
+ *
9204
+ *
9205
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
9206
+ *
9207
+ * <p><b>Example</b></p>
9208
+ *
9209
+ *
9210
+ *
9211
+ *
9212
+ *
9213
+ * [
9214
+ * {
9215
+ * "type": "togglegroup",
9216
+ * "macroParameter": "toggleGroupMacroParameter",
9217
+ * "controls": [
9218
+ * {
9219
+ * "type": "togglebutton",
9220
+ * "macroParameterValue": "macroParameterValue 0",
9221
+ * "label": {
9222
+ * "value": "My Custom Control 0"
9223
+ * },
9224
+ * "key": "my-custom-toggle-button-0"
9225
+ * },
9226
+ * {
9227
+ * "type": "togglebutton",
9228
+ * "macroParameterValue": "macroParameterValue 1",
9229
+ * "label": {
9230
+ * "value": "My Custom Control 1"
9231
+ * },
9232
+ * "key": "my-custom-toggle-button-1"
9233
+ * }
9234
+ * ]
9235
+ * }
9236
+ * ]
9237
+ *
9238
+ *
9239
+ *
9240
+ */
9241
+ export interface ToggleGroup {
9242
+ controls: ToggleButtonControl[];
9243
+ macroParameter: string;
9244
+ type: 'togglegroup' | 'TOGGLEGROUP';
9245
+ [k: string]: unknown;
9246
+ }
9247
+ /**
9248
+ *
9249
+ *
9250
+ * Defines a toggle button which appears inside a ToggleGroup
8620
9251
  *
8621
9252
  * <p><b>Example</b></p>
8622
9253
  *
@@ -8625,19 +9256,21 @@ export interface TextControl {
8625
9256
  *
8626
9257
  *
8627
9258
  * {
8628
- * "type": "button",
9259
+ * "type": "togglebutton",
9260
+ * "macroParameterValue": "macroParameterValue 0",
8629
9261
  * "label": {
8630
9262
  * "value": "My Custom Control 0"
8631
9263
  * },
8632
- * "key": "my-custom-control-0"
9264
+ * "key": "my-custom-toggle-button-0"
8633
9265
  * }
8634
9266
  *
8635
9267
  *
8636
9268
  *
8637
9269
  */
8638
- export interface ButtonControl {
8639
- label: I18NProperty75;
8640
- type: 'button' | 'BUTTON';
9270
+ export interface ToggleButtonControl {
9271
+ macroParameterValue: string;
9272
+ label: I18NProperty76;
9273
+ type: 'togglebutton' | 'TOGGLEBUTTON';
8641
9274
  key: string;
8642
9275
  [k: string]: unknown;
8643
9276
  }
@@ -8660,7 +9293,7 @@ export interface ButtonControl {
8660
9293
  *
8661
9294
  *
8662
9295
  */
8663
- export interface I18NProperty75 {
9296
+ export interface I18NProperty76 {
8664
9297
  value: string;
8665
9298
  i18n?: string;
8666
9299
  [k: string]: unknown;
@@ -8668,7 +9301,7 @@ export interface I18NProperty75 {
8668
9301
  /**
8669
9302
  *
8670
9303
  *
8671
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
9304
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
8672
9305
  *
8673
9306
  * <p><b>Example</b></p>
8674
9307
  *
@@ -8678,24 +9311,21 @@ export interface I18NProperty75 {
8678
9311
  *
8679
9312
  * [
8680
9313
  * {
8681
- * "type": "togglegroup",
8682
- * "macroParameter": "toggleGroupMacroParameter",
9314
+ * "type": "group",
8683
9315
  * "controls": [
8684
9316
  * {
8685
- * "type": "togglebutton",
8686
- * "macroParameterValue": "macroParameterValue 0",
9317
+ * "type": "button",
8687
9318
  * "label": {
8688
9319
  * "value": "My Custom Control 0"
8689
9320
  * },
8690
- * "key": "my-custom-toggle-button-0"
9321
+ * "key": "my-custom-control-0"
8691
9322
  * },
8692
9323
  * {
8693
- * "type": "togglebutton",
8694
- * "macroParameterValue": "macroParameterValue 1",
9324
+ * "type": "button",
8695
9325
  * "label": {
8696
9326
  * "value": "My Custom Control 1"
8697
9327
  * },
8698
- * "key": "my-custom-toggle-button-1"
9328
+ * "key": "my-custom-control-1"
8699
9329
  * }
8700
9330
  * ]
8701
9331
  * }
@@ -8704,16 +9334,15 @@ export interface I18NProperty75 {
8704
9334
  *
8705
9335
  *
8706
9336
  */
8707
- export interface ToggleGroup {
8708
- controls: ToggleButtonControl[];
8709
- macroParameter: string;
8710
- type: 'togglegroup' | 'TOGGLEGROUP';
9337
+ export interface ControlGroup {
9338
+ controls: ButtonControl1[];
9339
+ type: 'group' | 'GROUP';
8711
9340
  [k: string]: unknown;
8712
9341
  }
8713
9342
  /**
8714
9343
  *
8715
9344
  *
8716
- * Defines a toggle button which appears inside a ToggleGroup
9345
+ * Defines a button which may appear in control extension points such as the property panel
8717
9346
  *
8718
9347
  * <p><b>Example</b></p>
8719
9348
  *
@@ -8722,21 +9351,19 @@ export interface ToggleGroup {
8722
9351
  *
8723
9352
  *
8724
9353
  * {
8725
- * "type": "togglebutton",
8726
- * "macroParameterValue": "macroParameterValue 0",
9354
+ * "type": "button",
8727
9355
  * "label": {
8728
9356
  * "value": "My Custom Control 0"
8729
9357
  * },
8730
- * "key": "my-custom-toggle-button-0"
9358
+ * "key": "my-custom-control-0"
8731
9359
  * }
8732
9360
  *
8733
9361
  *
8734
9362
  *
8735
9363
  */
8736
- export interface ToggleButtonControl {
8737
- macroParameterValue: string;
8738
- label: I18NProperty76;
8739
- type: 'togglebutton' | 'TOGGLEBUTTON';
9364
+ export interface ButtonControl1 {
9365
+ label: I18NProperty77;
9366
+ type: 'button' | 'BUTTON';
8740
9367
  key: string;
8741
9368
  [k: string]: unknown;
8742
9369
  }
@@ -8759,7 +9386,7 @@ export interface ToggleButtonControl {
8759
9386
  *
8760
9387
  *
8761
9388
  */
8762
- export interface I18NProperty76 {
9389
+ export interface I18NProperty77 {
8763
9390
  value: string;
8764
9391
  i18n?: string;
8765
9392
  [k: string]: unknown;
@@ -8767,48 +9394,7 @@ export interface I18NProperty76 {
8767
9394
  /**
8768
9395
  *
8769
9396
  *
8770
- * Defines a ControlGroup which may appear in control extension points such as the property panel
8771
- *
8772
- * <p><b>Example</b></p>
8773
- *
8774
- *
8775
- *
8776
- *
8777
- *
8778
- * [
8779
- * {
8780
- * "type": "group",
8781
- * "controls": [
8782
- * {
8783
- * "type": "button",
8784
- * "label": {
8785
- * "value": "My Custom Control 0"
8786
- * },
8787
- * "key": "my-custom-control-0"
8788
- * },
8789
- * {
8790
- * "type": "button",
8791
- * "label": {
8792
- * "value": "My Custom Control 1"
8793
- * },
8794
- * "key": "my-custom-control-1"
8795
- * }
8796
- * ]
8797
- * }
8798
- * ]
8799
- *
8800
- *
8801
- *
8802
- */
8803
- export interface ControlGroup {
8804
- controls: ButtonControl1[];
8805
- type: 'group' | 'GROUP';
8806
- [k: string]: unknown;
8807
- }
8808
- /**
8809
- *
8810
- *
8811
- * Defines a button which may appear in control extension points such as the property panel
9397
+ * Defines a text field which may appear in control extension points such as the property panel
8812
9398
  *
8813
9399
  * <p><b>Example</b></p>
8814
9400
  *
@@ -8827,36 +9413,12 @@ export interface ControlGroup {
8827
9413
  *
8828
9414
  *
8829
9415
  */
8830
- export interface ButtonControl1 {
8831
- label: I18NProperty77;
8832
- type: 'button' | 'BUTTON';
9416
+ export interface TextControl {
9417
+ macroParameter: string;
9418
+ type: 'text' | 'TEXT';
8833
9419
  key: string;
8834
9420
  [k: string]: unknown;
8835
9421
  }
8836
- /**
8837
- *
8838
- *
8839
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
8840
- * and value in multiple places if you like, but identical keys must have identical values.
8841
- *
8842
- * <h3>Example</h3>
8843
- *
8844
- *
8845
- *
8846
- *
8847
- *
8848
- * {
8849
- * "value": "My text"
8850
- * }
8851
- *
8852
- *
8853
- *
8854
- */
8855
- export interface I18NProperty77 {
8856
- value: string;
8857
- i18n?: string;
8858
- [k: string]: unknown;
8859
- }
8860
9422
  /**
8861
9423
  *
8862
9424
  *
@@ -29825,52 +30387,11 @@ export interface I18NProperty83 {
29825
30387
  *
29826
30388
  */
29827
30389
  export interface MacroPropertyPanel1 {
29828
- controls?: (ControlGroup1 | ToggleGroup1 | ButtonControl3 | TextControl1)[];
30390
+ controls?: (ButtonControl2 | ToggleGroup1 | ControlGroup1 | TextControl1)[];
29829
30391
  cacheable?: boolean;
29830
30392
  url: string;
29831
30393
  [k: string]: unknown;
29832
30394
  }
29833
- /**
29834
- *
29835
- *
29836
- * Defines a ControlGroup which may appear in control extension points such as the property panel
29837
- *
29838
- * <p><b>Example</b></p>
29839
- *
29840
- *
29841
- *
29842
- *
29843
- *
29844
- * [
29845
- * {
29846
- * "type": "group",
29847
- * "controls": [
29848
- * {
29849
- * "type": "button",
29850
- * "label": {
29851
- * "value": "My Custom Control 0"
29852
- * },
29853
- * "key": "my-custom-control-0"
29854
- * },
29855
- * {
29856
- * "type": "button",
29857
- * "label": {
29858
- * "value": "My Custom Control 1"
29859
- * },
29860
- * "key": "my-custom-control-1"
29861
- * }
29862
- * ]
29863
- * }
29864
- * ]
29865
- *
29866
- *
29867
- *
29868
- */
29869
- export interface ControlGroup1 {
29870
- controls: ButtonControl2[];
29871
- type: 'group' | 'GROUP';
29872
- [k: string]: unknown;
29873
- }
29874
30395
  /**
29875
30396
  *
29876
30397
  *
@@ -30022,6 +30543,47 @@ export interface I18NProperty85 {
30022
30543
  i18n?: string;
30023
30544
  [k: string]: unknown;
30024
30545
  }
30546
+ /**
30547
+ *
30548
+ *
30549
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
30550
+ *
30551
+ * <p><b>Example</b></p>
30552
+ *
30553
+ *
30554
+ *
30555
+ *
30556
+ *
30557
+ * [
30558
+ * {
30559
+ * "type": "group",
30560
+ * "controls": [
30561
+ * {
30562
+ * "type": "button",
30563
+ * "label": {
30564
+ * "value": "My Custom Control 0"
30565
+ * },
30566
+ * "key": "my-custom-control-0"
30567
+ * },
30568
+ * {
30569
+ * "type": "button",
30570
+ * "label": {
30571
+ * "value": "My Custom Control 1"
30572
+ * },
30573
+ * "key": "my-custom-control-1"
30574
+ * }
30575
+ * ]
30576
+ * }
30577
+ * ]
30578
+ *
30579
+ *
30580
+ *
30581
+ */
30582
+ export interface ControlGroup1 {
30583
+ controls: ButtonControl3[];
30584
+ type: 'group' | 'GROUP';
30585
+ [k: string]: unknown;
30586
+ }
30025
30587
  /**
30026
30588
  *
30027
30589
  *
@@ -50951,10 +51513,47 @@ export interface I18NProperty91 {
50951
51513
  *
50952
51514
  */
50953
51515
  export interface WebItemTarget2 {
50954
- options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
51516
+ options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50955
51517
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50956
51518
  [k: string]: unknown;
50957
51519
  }
51520
+ /**
51521
+ *
51522
+ *
51523
+ * Options for an inline dialog target
51524
+ *
51525
+ * <h3>Example</h3>
51526
+ *
51527
+ *
51528
+ *
51529
+ *
51530
+ *
51531
+ * {
51532
+ * "target": {
51533
+ * "type": "inlinedialog",
51534
+ * "options": {
51535
+ * "onHover": true,
51536
+ * "offsetX": "30px",
51537
+ * "offsetY": "20px"
51538
+ * }
51539
+ * }
51540
+ * }
51541
+ *
51542
+ *
51543
+ *
51544
+ */
51545
+ export interface InlineDialogOptions2 {
51546
+ offsetX?: string;
51547
+ offsetY?: string;
51548
+ width?: string;
51549
+ onTop?: boolean;
51550
+ showDelay?: number;
51551
+ closeOthers?: boolean;
51552
+ persistent?: boolean;
51553
+ onHover?: boolean;
51554
+ isRelativeToMouse?: boolean;
51555
+ [k: string]: unknown;
51556
+ }
50958
51557
  /**
50959
51558
  *
50960
51559
  *
@@ -51080,43 +51679,6 @@ export interface DialogModuleOptions2 {
51080
51679
  key: string;
51081
51680
  [k: string]: unknown;
51082
51681
  }
51083
- /**
51084
- *
51085
- *
51086
- * Options for an inline dialog target
51087
- *
51088
- * <h3>Example</h3>
51089
- *
51090
- *
51091
- *
51092
- *
51093
- *
51094
- * {
51095
- * "target": {
51096
- * "type": "inlinedialog",
51097
- * "options": {
51098
- * "onHover": true,
51099
- * "offsetX": "30px",
51100
- * "offsetY": "20px"
51101
- * }
51102
- * }
51103
- * }
51104
- *
51105
- *
51106
- *
51107
- */
51108
- export interface InlineDialogOptions2 {
51109
- offsetX?: string;
51110
- offsetY?: string;
51111
- width?: string;
51112
- onTop?: boolean;
51113
- showDelay?: number;
51114
- closeOthers?: boolean;
51115
- persistent?: boolean;
51116
- onHover?: boolean;
51117
- isRelativeToMouse?: boolean;
51118
- [k: string]: unknown;
51119
- }
51120
51682
  /**
51121
51683
  *
51122
51684
  *