@forge/manifest 2.5.0-next.5 → 2.5.0-next.9

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.
@@ -2473,7 +2473,7 @@ export interface Modules {
2473
2473
  fullPage?: boolean;
2474
2474
  cacheable?: boolean;
2475
2475
  location?: string;
2476
- conditions?: (CompositeCondition | SingleCondition)[];
2476
+ conditions?: (SingleCondition | CompositeCondition)[];
2477
2477
  params?: {
2478
2478
  [k: string]: unknown;
2479
2479
  };
@@ -2488,7 +2488,7 @@ export interface Modules {
2488
2488
  fullPage?: boolean;
2489
2489
  cacheable?: boolean;
2490
2490
  location?: string;
2491
- conditions?: (CompositeCondition | SingleCondition)[];
2491
+ conditions?: (SingleCondition | CompositeCondition)[];
2492
2492
  params?: {
2493
2493
  [k: string]: unknown;
2494
2494
  };
@@ -2506,7 +2506,7 @@ export interface Modules {
2506
2506
  location?: string;
2507
2507
  cacheable?: boolean;
2508
2508
  supportsNative?: boolean;
2509
- conditions?: (CompositeCondition | SingleCondition)[];
2509
+ conditions?: (SingleCondition | CompositeCondition)[];
2510
2510
  params?: {
2511
2511
  [k: string]: unknown;
2512
2512
  };
@@ -2522,7 +2522,7 @@ export interface Modules {
2522
2522
  location?: string;
2523
2523
  cacheable?: boolean;
2524
2524
  supportsNative?: boolean;
2525
- conditions?: (CompositeCondition | SingleCondition)[];
2525
+ conditions?: (SingleCondition | CompositeCondition)[];
2526
2526
  params?: {
2527
2527
  [k: string]: unknown;
2528
2528
  };
@@ -2560,7 +2560,7 @@ export interface Modules {
2560
2560
  weight?: number;
2561
2561
  cacheable?: boolean;
2562
2562
  location?: string;
2563
- conditions?: (SingleCondition | CompositeCondition)[];
2563
+ conditions?: (CompositeCondition | SingleCondition)[];
2564
2564
  params?: {
2565
2565
  [k: string]: unknown;
2566
2566
  };
@@ -2574,7 +2574,7 @@ export interface Modules {
2574
2574
  weight?: number;
2575
2575
  cacheable?: boolean;
2576
2576
  location?: string;
2577
- conditions?: (SingleCondition | CompositeCondition)[];
2577
+ conditions?: (CompositeCondition | SingleCondition)[];
2578
2578
  params?: {
2579
2579
  [k: string]: unknown;
2580
2580
  };
@@ -2616,7 +2616,7 @@ export interface Modules {
2616
2616
  weight?: number;
2617
2617
  cacheable?: boolean;
2618
2618
  location?: string;
2619
- conditions?: (SingleCondition | CompositeCondition)[];
2619
+ conditions?: (CompositeCondition | SingleCondition)[];
2620
2620
  params?: {
2621
2621
  [k: string]: unknown;
2622
2622
  };
@@ -2630,7 +2630,7 @@ export interface Modules {
2630
2630
  weight?: number;
2631
2631
  cacheable?: boolean;
2632
2632
  location?: string;
2633
- conditions?: (SingleCondition | CompositeCondition)[];
2633
+ conditions?: (CompositeCondition | SingleCondition)[];
2634
2634
  params?: {
2635
2635
  [k: string]: unknown;
2636
2636
  };
@@ -2685,7 +2685,7 @@ export interface Modules {
2685
2685
  fullPage?: boolean;
2686
2686
  cacheable?: boolean;
2687
2687
  location?: string;
2688
- conditions?: (CompositeCondition | SingleCondition)[];
2688
+ conditions?: (SingleCondition | CompositeCondition)[];
2689
2689
  params?: {
2690
2690
  [k: string]: unknown;
2691
2691
  };
@@ -2700,7 +2700,7 @@ export interface Modules {
2700
2700
  fullPage?: boolean;
2701
2701
  cacheable?: boolean;
2702
2702
  location?: string;
2703
- conditions?: (CompositeCondition | SingleCondition)[];
2703
+ conditions?: (SingleCondition | CompositeCondition)[];
2704
2704
  params?: {
2705
2705
  [k: string]: unknown;
2706
2706
  };
@@ -3222,7 +3222,7 @@ export interface SingleCondition {
3222
3222
  *
3223
3223
  */
3224
3224
  export interface CompositeCondition {
3225
- conditions?: (SingleCondition | ManifestSchema)[];
3225
+ conditions?: (ManifestSchema | SingleCondition)[];
3226
3226
  type?: 'and' | 'AND' | 'or' | 'OR';
3227
3227
  [k: string]: unknown;
3228
3228
  }
@@ -5899,7 +5899,7 @@ export interface Icon10 {
5899
5899
  *
5900
5900
  */
5901
5901
  export interface WebItemTarget1 {
5902
- options?: InlineDialogOptions1 | DialogModuleOptions1 | DialogOptions2;
5902
+ options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
5903
5903
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
5904
5904
  [k: string]: unknown;
5905
5905
  }
@@ -5940,33 +5940,6 @@ export interface InlineDialogOptions1 {
5940
5940
  isRelativeToMouse?: boolean;
5941
5941
  [k: string]: unknown;
5942
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
- }
5970
5943
  /**
5971
5944
  *
5972
5945
  *
@@ -6065,6 +6038,33 @@ export interface I18NProperty58 {
6065
6038
  i18n?: string;
6066
6039
  [k: string]: unknown;
6067
6040
  }
6041
+ /**
6042
+ *
6043
+ *
6044
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6045
+ *
6046
+ * <h3>Example</h3>
6047
+ *
6048
+ *
6049
+ *
6050
+ *
6051
+ *
6052
+ * {
6053
+ * "target": {
6054
+ * "type": "dialogmodule",
6055
+ * "options": {
6056
+ * "key": "dialog-module-key"
6057
+ * }
6058
+ * }
6059
+ * }
6060
+ *
6061
+ *
6062
+ *
6063
+ */
6064
+ export interface DialogModuleOptions1 {
6065
+ key: string;
6066
+ [k: string]: unknown;
6067
+ }
6068
6068
  /**
6069
6069
  *
6070
6070
  *
@@ -6583,7 +6583,7 @@ export interface SingleCondition5 {
6583
6583
  *
6584
6584
  */
6585
6585
  export interface CompositeCondition7 {
6586
- conditions?: (SingleCondition | ManifestSchema)[];
6586
+ conditions?: (ManifestSchema | SingleCondition)[];
6587
6587
  type?: 'and' | 'AND' | 'or' | 'OR';
6588
6588
  [k: string]: unknown;
6589
6589
  }
@@ -8006,11 +8006,39 @@ export interface I18NProperty74 {
8006
8006
  *
8007
8007
  */
8008
8008
  export interface MacroPropertyPanel {
8009
- controls?: (ButtonControl | ControlGroup | ToggleGroup | TextControl)[];
8009
+ controls?: (TextControl | ButtonControl | ControlGroup | ToggleGroup)[];
8010
8010
  cacheable?: boolean;
8011
8011
  url: string;
8012
8012
  [k: string]: unknown;
8013
8013
  }
8014
+ /**
8015
+ *
8016
+ *
8017
+ * Defines a text field which may appear in control extension points such as the property panel
8018
+ *
8019
+ * <p><b>Example</b></p>
8020
+ *
8021
+ *
8022
+ *
8023
+ *
8024
+ *
8025
+ * {
8026
+ * "type": "button",
8027
+ * "label": {
8028
+ * "value": "My Custom Control 0"
8029
+ * },
8030
+ * "key": "my-custom-control-0"
8031
+ * }
8032
+ *
8033
+ *
8034
+ *
8035
+ */
8036
+ export interface TextControl {
8037
+ macroParameter: string;
8038
+ type: 'text' | 'TEXT';
8039
+ key: string;
8040
+ [k: string]: unknown;
8041
+ }
8014
8042
  /**
8015
8043
  *
8016
8044
  *
@@ -8255,34 +8283,6 @@ export interface I18NProperty77 {
8255
8283
  i18n?: string;
8256
8284
  [k: string]: unknown;
8257
8285
  }
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
- }
8286
8286
  /**
8287
8287
  *
8288
8288
  *
@@ -29251,7 +29251,7 @@ export interface I18NProperty83 {
29251
29251
  *
29252
29252
  */
29253
29253
  export interface MacroPropertyPanel1 {
29254
- controls?: (ButtonControl2 | ControlGroup1 | TextControl1 | ToggleGroup1)[];
29254
+ controls?: (ToggleGroup1 | TextControl1 | ControlGroup1 | ButtonControl3)[];
29255
29255
  cacheable?: boolean;
29256
29256
  url: string;
29257
29257
  [k: string]: unknown;
@@ -29259,7 +29259,52 @@ export interface MacroPropertyPanel1 {
29259
29259
  /**
29260
29260
  *
29261
29261
  *
29262
- * Defines a button which may appear in control extension points such as the property panel
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
29263
29308
  *
29264
29309
  * <p><b>Example</b></p>
29265
29310
  *
@@ -29268,19 +29313,21 @@ export interface MacroPropertyPanel1 {
29268
29313
  *
29269
29314
  *
29270
29315
  * {
29271
- * "type": "button",
29316
+ * "type": "togglebutton",
29317
+ * "macroParameterValue": "macroParameterValue 0",
29272
29318
  * "label": {
29273
29319
  * "value": "My Custom Control 0"
29274
29320
  * },
29275
- * "key": "my-custom-control-0"
29321
+ * "key": "my-custom-toggle-button-0"
29276
29322
  * }
29277
29323
  *
29278
29324
  *
29279
29325
  *
29280
29326
  */
29281
- export interface ButtonControl2 {
29327
+ export interface ToggleButtonControl1 {
29328
+ macroParameterValue: string;
29282
29329
  label: I18NProperty84;
29283
- type: 'button' | 'BUTTON';
29330
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29284
29331
  key: string;
29285
29332
  [k: string]: unknown;
29286
29333
  }
@@ -29308,6 +29355,34 @@ export interface I18NProperty84 {
29308
29355
  i18n?: string;
29309
29356
  [k: string]: unknown;
29310
29357
  }
29358
+ /**
29359
+ *
29360
+ *
29361
+ * Defines a text field which may appear in control extension points such as the property panel
29362
+ *
29363
+ * <p><b>Example</b></p>
29364
+ *
29365
+ *
29366
+ *
29367
+ *
29368
+ *
29369
+ * {
29370
+ * "type": "button",
29371
+ * "label": {
29372
+ * "value": "My Custom Control 0"
29373
+ * },
29374
+ * "key": "my-custom-control-0"
29375
+ * }
29376
+ *
29377
+ *
29378
+ *
29379
+ */
29380
+ export interface TextControl1 {
29381
+ macroParameter: string;
29382
+ type: 'text' | 'TEXT';
29383
+ key: string;
29384
+ [k: string]: unknown;
29385
+ }
29311
29386
  /**
29312
29387
  *
29313
29388
  *
@@ -29345,7 +29420,7 @@ export interface I18NProperty84 {
29345
29420
  *
29346
29421
  */
29347
29422
  export interface ControlGroup1 {
29348
- controls: ButtonControl3[];
29423
+ controls: ButtonControl2[];
29349
29424
  type: 'group' | 'GROUP';
29350
29425
  [k: string]: unknown;
29351
29426
  }
@@ -29371,7 +29446,7 @@ export interface ControlGroup1 {
29371
29446
  *
29372
29447
  *
29373
29448
  */
29374
- export interface ButtonControl3 {
29449
+ export interface ButtonControl2 {
29375
29450
  label: I18NProperty85;
29376
29451
  type: 'button' | 'BUTTON';
29377
29452
  key: string;
@@ -29404,7 +29479,7 @@ export interface I18NProperty85 {
29404
29479
  /**
29405
29480
  *
29406
29481
  *
29407
- * Defines a text field which may appear in control extension points such as the property panel
29482
+ * Defines a button which may appear in control extension points such as the property panel
29408
29483
  *
29409
29484
  * <p><b>Example</b></p>
29410
29485
  *
@@ -29423,84 +29498,9 @@ export interface I18NProperty85 {
29423
29498
  *
29424
29499
  *
29425
29500
  */
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
29436
- *
29437
- * <p><b>Example</b></p>
29438
- *
29439
- *
29440
- *
29441
- *
29442
- *
29443
- * [
29444
- * {
29445
- * "type": "togglegroup",
29446
- * "macroParameter": "toggleGroupMacroParameter",
29447
- * "controls": [
29448
- * {
29449
- * "type": "togglebutton",
29450
- * "macroParameterValue": "macroParameterValue 0",
29451
- * "label": {
29452
- * "value": "My Custom Control 0"
29453
- * },
29454
- * "key": "my-custom-toggle-button-0"
29455
- * },
29456
- * {
29457
- * "type": "togglebutton",
29458
- * "macroParameterValue": "macroParameterValue 1",
29459
- * "label": {
29460
- * "value": "My Custom Control 1"
29461
- * },
29462
- * "key": "my-custom-toggle-button-1"
29463
- * }
29464
- * ]
29465
- * }
29466
- * ]
29467
- *
29468
- *
29469
- *
29470
- */
29471
- export interface ToggleGroup1 {
29472
- controls: ToggleButtonControl1[];
29473
- macroParameter: string;
29474
- type: 'togglegroup' | 'TOGGLEGROUP';
29475
- [k: string]: unknown;
29476
- }
29477
- /**
29478
- *
29479
- *
29480
- * Defines a toggle button which appears inside a ToggleGroup
29481
- *
29482
- * <p><b>Example</b></p>
29483
- *
29484
- *
29485
- *
29486
- *
29487
- *
29488
- * {
29489
- * "type": "togglebutton",
29490
- * "macroParameterValue": "macroParameterValue 0",
29491
- * "label": {
29492
- * "value": "My Custom Control 0"
29493
- * },
29494
- * "key": "my-custom-toggle-button-0"
29495
- * }
29496
- *
29497
- *
29498
- *
29499
- */
29500
- export interface ToggleButtonControl1 {
29501
- macroParameterValue: string;
29501
+ export interface ButtonControl3 {
29502
29502
  label: I18NProperty86;
29503
- type: 'togglebutton' | 'TOGGLEBUTTON';
29503
+ type: 'button' | 'BUTTON';
29504
29504
  key: string;
29505
29505
  [k: string]: unknown;
29506
29506
  }
@@ -50377,10 +50377,37 @@ export interface I18NProperty91 {
50377
50377
  *
50378
50378
  */
50379
50379
  export interface WebItemTarget2 {
50380
- options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50380
+ options?: DialogModuleOptions2 | InlineDialogOptions2 | DialogOptions4;
50381
50381
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50382
50382
  [k: string]: unknown;
50383
50383
  }
50384
+ /**
50385
+ *
50386
+ *
50387
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50388
+ *
50389
+ * <h3>Example</h3>
50390
+ *
50391
+ *
50392
+ *
50393
+ *
50394
+ *
50395
+ * {
50396
+ * "target": {
50397
+ * "type": "dialogmodule",
50398
+ * "options": {
50399
+ * "key": "dialog-module-key"
50400
+ * }
50401
+ * }
50402
+ * }
50403
+ *
50404
+ *
50405
+ *
50406
+ */
50407
+ export interface DialogModuleOptions2 {
50408
+ key: string;
50409
+ [k: string]: unknown;
50410
+ }
50384
50411
  /**
50385
50412
  *
50386
50413
  *
@@ -50516,33 +50543,6 @@ export interface I18NProperty92 {
50516
50543
  i18n?: string;
50517
50544
  [k: string]: unknown;
50518
50545
  }
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
- }
50546
50546
  /**
50547
50547
  *
50548
50548
  *