@forge/manifest 2.5.1-next.4 → 2.6.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.
@@ -2574,7 +2574,7 @@ export interface Modules {
2574
2574
  filter?: string;
2575
2575
  excludeBody?: boolean;
2576
2576
  event?: string;
2577
- conditions?: (SingleCondition | CompositeCondition)[];
2577
+ conditions?: (CompositeCondition | SingleCondition)[];
2578
2578
  propertyKeys?: string[];
2579
2579
  url?: string;
2580
2580
  key: ModuleKeySchema;
@@ -2584,7 +2584,7 @@ export interface Modules {
2584
2584
  filter?: string;
2585
2585
  excludeBody?: boolean;
2586
2586
  event?: string;
2587
- conditions?: (SingleCondition | CompositeCondition)[];
2587
+ conditions?: (CompositeCondition | SingleCondition)[];
2588
2588
  propertyKeys?: string[];
2589
2589
  url?: string;
2590
2590
  key: ModuleKeySchema;
@@ -2598,7 +2598,7 @@ export interface Modules {
2598
2598
  weight?: number;
2599
2599
  cacheable?: boolean;
2600
2600
  location?: string;
2601
- conditions?: (CompositeCondition | SingleCondition)[];
2601
+ conditions?: (SingleCondition | CompositeCondition)[];
2602
2602
  params?: {
2603
2603
  [k: string]: unknown;
2604
2604
  };
@@ -2612,7 +2612,7 @@ export interface Modules {
2612
2612
  weight?: number;
2613
2613
  cacheable?: boolean;
2614
2614
  location?: string;
2615
- conditions?: (CompositeCondition | SingleCondition)[];
2615
+ conditions?: (SingleCondition | CompositeCondition)[];
2616
2616
  params?: {
2617
2617
  [k: string]: unknown;
2618
2618
  };
@@ -2627,7 +2627,7 @@ export interface Modules {
2627
2627
  name?: I18NProperty55;
2628
2628
  weight?: number;
2629
2629
  location?: string;
2630
- conditions?: (CompositeCondition | SingleCondition)[];
2630
+ conditions?: (SingleCondition | CompositeCondition)[];
2631
2631
  params?: {
2632
2632
  [k: string]: unknown;
2633
2633
  };
@@ -2639,7 +2639,7 @@ export interface Modules {
2639
2639
  name?: I18NProperty55;
2640
2640
  weight?: number;
2641
2641
  location?: string;
2642
- conditions?: (CompositeCondition | SingleCondition)[];
2642
+ conditions?: (SingleCondition | CompositeCondition)[];
2643
2643
  params?: {
2644
2644
  [k: string]: unknown;
2645
2645
  };
@@ -2654,7 +2654,7 @@ export interface Modules {
2654
2654
  weight?: number;
2655
2655
  cacheable?: boolean;
2656
2656
  location?: string;
2657
- conditions?: (CompositeCondition | SingleCondition)[];
2657
+ conditions?: (SingleCondition | CompositeCondition)[];
2658
2658
  params?: {
2659
2659
  [k: string]: unknown;
2660
2660
  };
@@ -2668,7 +2668,7 @@ export interface Modules {
2668
2668
  weight?: number;
2669
2669
  cacheable?: boolean;
2670
2670
  location?: string;
2671
- conditions?: (CompositeCondition | SingleCondition)[];
2671
+ conditions?: (SingleCondition | CompositeCondition)[];
2672
2672
  params?: {
2673
2673
  [k: string]: unknown;
2674
2674
  };
@@ -2788,7 +2788,7 @@ export interface Modules {
2788
2788
  name?: I18NProperty63;
2789
2789
  weight?: number;
2790
2790
  location?: string;
2791
- conditions?: (SingleCondition5 | CompositeCondition7)[];
2791
+ conditions?: (CompositeCondition7 | SingleCondition5)[];
2792
2792
  params?: {
2793
2793
  [k: string]: unknown;
2794
2794
  };
@@ -2800,7 +2800,7 @@ export interface Modules {
2800
2800
  name?: I18NProperty63;
2801
2801
  weight?: number;
2802
2802
  location?: string;
2803
- conditions?: (SingleCondition5 | CompositeCondition7)[];
2803
+ conditions?: (CompositeCondition7 | SingleCondition5)[];
2804
2804
  params?: {
2805
2805
  [k: string]: unknown;
2806
2806
  };
@@ -3262,7 +3262,7 @@ export interface SingleCondition {
3262
3262
  *
3263
3263
  */
3264
3264
  export interface CompositeCondition {
3265
- conditions?: (SingleCondition | ManifestSchema)[];
3265
+ conditions?: (ManifestSchema | SingleCondition)[];
3266
3266
  type?: 'and' | 'AND' | 'or' | 'OR';
3267
3267
  [k: string]: unknown;
3268
3268
  }
@@ -5939,37 +5939,10 @@ export interface Icon10 {
5939
5939
  *
5940
5940
  */
5941
5941
  export interface WebItemTarget1 {
5942
- options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
5942
+ options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
5943
5943
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
5944
5944
  [k: string]: unknown;
5945
5945
  }
5946
- /**
5947
- *
5948
- *
5949
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
5950
- *
5951
- * <h3>Example</h3>
5952
- *
5953
- *
5954
- *
5955
- *
5956
- *
5957
- * {
5958
- * "target": {
5959
- * "type": "dialogmodule",
5960
- * "options": {
5961
- * "key": "dialog-module-key"
5962
- * }
5963
- * }
5964
- * }
5965
- *
5966
- *
5967
- *
5968
- */
5969
- export interface DialogModuleOptions1 {
5970
- key: string;
5971
- [k: string]: unknown;
5972
- }
5973
5946
  /**
5974
5947
  *
5975
5948
  *
@@ -6068,6 +6041,33 @@ export interface I18NProperty58 {
6068
6041
  i18n?: string;
6069
6042
  [k: string]: unknown;
6070
6043
  }
6044
+ /**
6045
+ *
6046
+ *
6047
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6048
+ *
6049
+ * <h3>Example</h3>
6050
+ *
6051
+ *
6052
+ *
6053
+ *
6054
+ *
6055
+ * {
6056
+ * "target": {
6057
+ * "type": "dialogmodule",
6058
+ * "options": {
6059
+ * "key": "dialog-module-key"
6060
+ * }
6061
+ * }
6062
+ * }
6063
+ *
6064
+ *
6065
+ *
6066
+ */
6067
+ export interface DialogModuleOptions1 {
6068
+ key: string;
6069
+ [k: string]: unknown;
6070
+ }
6071
6071
  /**
6072
6072
  *
6073
6073
  *
@@ -6197,7 +6197,7 @@ export interface SingleCondition4 {
6197
6197
  *
6198
6198
  */
6199
6199
  export interface CompositeCondition6 {
6200
- conditions?: (SingleCondition | ManifestSchema)[];
6200
+ conditions?: (ManifestSchema | SingleCondition)[];
6201
6201
  type?: 'and' | 'AND' | 'or' | 'OR';
6202
6202
  [k: string]: unknown;
6203
6203
  }
@@ -6555,37 +6555,6 @@ export interface I18NProperty63 {
6555
6555
  i18n?: string;
6556
6556
  [k: string]: unknown;
6557
6557
  }
6558
- /**
6559
- *
6560
- *
6561
- * Single Conditions are either provided by the host application. See the complete documentation of
6562
- * [Conditions](../../conditions/) for more information.
6563
- *
6564
- * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6565
- * This is useful where you want to show the section if a certain condition is not satisfied.
6566
- *
6567
- * <h3>Example</h3>
6568
- *
6569
- *
6570
- *
6571
- *
6572
- *
6573
- * {
6574
- * "condition": "user_is_logged_in",
6575
- * "invert": false
6576
- * }
6577
- *
6578
- *
6579
- *
6580
- */
6581
- export interface SingleCondition5 {
6582
- condition: string;
6583
- invert?: boolean;
6584
- params?: {
6585
- [k: string]: unknown;
6586
- };
6587
- [k: string]: unknown;
6588
- }
6589
6558
  /**
6590
6559
  *
6591
6560
  *
@@ -6623,10 +6592,41 @@ export interface SingleCondition5 {
6623
6592
  *
6624
6593
  */
6625
6594
  export interface CompositeCondition7 {
6626
- conditions?: (SingleCondition | ManifestSchema)[];
6595
+ conditions?: (ManifestSchema | SingleCondition)[];
6627
6596
  type?: 'and' | 'AND' | 'or' | 'OR';
6628
6597
  [k: string]: unknown;
6629
6598
  }
6599
+ /**
6600
+ *
6601
+ *
6602
+ * Single Conditions are either provided by the host application. See the complete documentation of
6603
+ * [Conditions](../../conditions/) for more information.
6604
+ *
6605
+ * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6606
+ * This is useful where you want to show the section if a certain condition is not satisfied.
6607
+ *
6608
+ * <h3>Example</h3>
6609
+ *
6610
+ *
6611
+ *
6612
+ *
6613
+ *
6614
+ * {
6615
+ * "condition": "user_is_logged_in",
6616
+ * "invert": false
6617
+ * }
6618
+ *
6619
+ *
6620
+ *
6621
+ */
6622
+ export interface SingleCondition5 {
6623
+ condition: string;
6624
+ invert?: boolean;
6625
+ params?: {
6626
+ [k: string]: unknown;
6627
+ };
6628
+ [k: string]: unknown;
6629
+ }
6630
6630
  /**
6631
6631
  *
6632
6632
  *
@@ -8046,7 +8046,7 @@ export interface I18NProperty74 {
8046
8046
  *
8047
8047
  */
8048
8048
  export interface MacroPropertyPanel {
8049
- controls?: (ControlGroup | ToggleGroup | TextControl | ButtonControl1)[];
8049
+ controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
8050
8050
  cacheable?: boolean;
8051
8051
  url: string;
8052
8052
  [k: string]: unknown;
@@ -8147,7 +8147,7 @@ export interface I18NProperty75 {
8147
8147
  /**
8148
8148
  *
8149
8149
  *
8150
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
8150
+ * Defines a text field which may appear in control extension points such as the property panel
8151
8151
  *
8152
8152
  * <p><b>Example</b></p>
8153
8153
  *
@@ -8155,44 +8155,27 @@ export interface I18NProperty75 {
8155
8155
  *
8156
8156
  *
8157
8157
  *
8158
- * [
8159
- * {
8160
- * "type": "togglegroup",
8161
- * "macroParameter": "toggleGroupMacroParameter",
8162
- * "controls": [
8163
- * {
8164
- * "type": "togglebutton",
8165
- * "macroParameterValue": "macroParameterValue 0",
8166
- * "label": {
8167
- * "value": "My Custom Control 0"
8168
- * },
8169
- * "key": "my-custom-toggle-button-0"
8170
- * },
8171
- * {
8172
- * "type": "togglebutton",
8173
- * "macroParameterValue": "macroParameterValue 1",
8174
- * "label": {
8175
- * "value": "My Custom Control 1"
8176
- * },
8177
- * "key": "my-custom-toggle-button-1"
8178
- * }
8179
- * ]
8180
- * }
8181
- * ]
8158
+ * {
8159
+ * "type": "button",
8160
+ * "label": {
8161
+ * "value": "My Custom Control 0"
8162
+ * },
8163
+ * "key": "my-custom-control-0"
8164
+ * }
8182
8165
  *
8183
8166
  *
8184
8167
  *
8185
8168
  */
8186
- export interface ToggleGroup {
8187
- controls: ToggleButtonControl[];
8169
+ export interface TextControl {
8188
8170
  macroParameter: string;
8189
- type: 'togglegroup' | 'TOGGLEGROUP';
8171
+ type: 'text' | 'TEXT';
8172
+ key: string;
8190
8173
  [k: string]: unknown;
8191
8174
  }
8192
8175
  /**
8193
8176
  *
8194
8177
  *
8195
- * Defines a toggle button which appears inside a ToggleGroup
8178
+ * Defines a button which may appear in control extension points such as the property panel
8196
8179
  *
8197
8180
  * <p><b>Example</b></p>
8198
8181
  *
@@ -8201,21 +8184,19 @@ export interface ToggleGroup {
8201
8184
  *
8202
8185
  *
8203
8186
  * {
8204
- * "type": "togglebutton",
8205
- * "macroParameterValue": "macroParameterValue 0",
8187
+ * "type": "button",
8206
8188
  * "label": {
8207
8189
  * "value": "My Custom Control 0"
8208
8190
  * },
8209
- * "key": "my-custom-toggle-button-0"
8191
+ * "key": "my-custom-control-0"
8210
8192
  * }
8211
8193
  *
8212
8194
  *
8213
8195
  *
8214
8196
  */
8215
- export interface ToggleButtonControl {
8216
- macroParameterValue: string;
8197
+ export interface ButtonControl1 {
8217
8198
  label: I18NProperty76;
8218
- type: 'togglebutton' | 'TOGGLEBUTTON';
8199
+ type: 'button' | 'BUTTON';
8219
8200
  key: string;
8220
8201
  [k: string]: unknown;
8221
8202
  }
@@ -8246,7 +8227,7 @@ export interface I18NProperty76 {
8246
8227
  /**
8247
8228
  *
8248
8229
  *
8249
- * Defines a text field which may appear in control extension points such as the property panel
8230
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
8250
8231
  *
8251
8232
  * <p><b>Example</b></p>
8252
8233
  *
@@ -8254,27 +8235,44 @@ export interface I18NProperty76 {
8254
8235
  *
8255
8236
  *
8256
8237
  *
8257
- * {
8258
- * "type": "button",
8259
- * "label": {
8260
- * "value": "My Custom Control 0"
8261
- * },
8262
- * "key": "my-custom-control-0"
8263
- * }
8238
+ * [
8239
+ * {
8240
+ * "type": "togglegroup",
8241
+ * "macroParameter": "toggleGroupMacroParameter",
8242
+ * "controls": [
8243
+ * {
8244
+ * "type": "togglebutton",
8245
+ * "macroParameterValue": "macroParameterValue 0",
8246
+ * "label": {
8247
+ * "value": "My Custom Control 0"
8248
+ * },
8249
+ * "key": "my-custom-toggle-button-0"
8250
+ * },
8251
+ * {
8252
+ * "type": "togglebutton",
8253
+ * "macroParameterValue": "macroParameterValue 1",
8254
+ * "label": {
8255
+ * "value": "My Custom Control 1"
8256
+ * },
8257
+ * "key": "my-custom-toggle-button-1"
8258
+ * }
8259
+ * ]
8260
+ * }
8261
+ * ]
8264
8262
  *
8265
8263
  *
8266
8264
  *
8267
8265
  */
8268
- export interface TextControl {
8266
+ export interface ToggleGroup {
8267
+ controls: ToggleButtonControl[];
8269
8268
  macroParameter: string;
8270
- type: 'text' | 'TEXT';
8271
- key: string;
8269
+ type: 'togglegroup' | 'TOGGLEGROUP';
8272
8270
  [k: string]: unknown;
8273
8271
  }
8274
8272
  /**
8275
8273
  *
8276
8274
  *
8277
- * Defines a button which may appear in control extension points such as the property panel
8275
+ * Defines a toggle button which appears inside a ToggleGroup
8278
8276
  *
8279
8277
  * <p><b>Example</b></p>
8280
8278
  *
@@ -8283,19 +8281,21 @@ export interface TextControl {
8283
8281
  *
8284
8282
  *
8285
8283
  * {
8286
- * "type": "button",
8284
+ * "type": "togglebutton",
8285
+ * "macroParameterValue": "macroParameterValue 0",
8287
8286
  * "label": {
8288
8287
  * "value": "My Custom Control 0"
8289
8288
  * },
8290
- * "key": "my-custom-control-0"
8289
+ * "key": "my-custom-toggle-button-0"
8291
8290
  * }
8292
8291
  *
8293
8292
  *
8294
8293
  *
8295
8294
  */
8296
- export interface ButtonControl1 {
8295
+ export interface ToggleButtonControl {
8296
+ macroParameterValue: string;
8297
8297
  label: I18NProperty77;
8298
- type: 'button' | 'BUTTON';
8298
+ type: 'togglebutton' | 'TOGGLEBUTTON';
8299
8299
  key: string;
8300
8300
  [k: string]: unknown;
8301
8301
  }
@@ -29291,7 +29291,7 @@ export interface I18NProperty83 {
29291
29291
  *
29292
29292
  */
29293
29293
  export interface MacroPropertyPanel1 {
29294
- controls?: (ControlGroup1 | ButtonControl3 | TextControl1 | ToggleGroup1)[];
29294
+ controls?: (ControlGroup1 | ToggleGroup1 | ButtonControl3 | TextControl1)[];
29295
29295
  cacheable?: boolean;
29296
29296
  url: string;
29297
29297
  [k: string]: unknown;
@@ -29392,7 +29392,52 @@ export interface I18NProperty84 {
29392
29392
  /**
29393
29393
  *
29394
29394
  *
29395
- * Defines a button which may appear in control extension points such as the property panel
29395
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
29396
+ *
29397
+ * <p><b>Example</b></p>
29398
+ *
29399
+ *
29400
+ *
29401
+ *
29402
+ *
29403
+ * [
29404
+ * {
29405
+ * "type": "togglegroup",
29406
+ * "macroParameter": "toggleGroupMacroParameter",
29407
+ * "controls": [
29408
+ * {
29409
+ * "type": "togglebutton",
29410
+ * "macroParameterValue": "macroParameterValue 0",
29411
+ * "label": {
29412
+ * "value": "My Custom Control 0"
29413
+ * },
29414
+ * "key": "my-custom-toggle-button-0"
29415
+ * },
29416
+ * {
29417
+ * "type": "togglebutton",
29418
+ * "macroParameterValue": "macroParameterValue 1",
29419
+ * "label": {
29420
+ * "value": "My Custom Control 1"
29421
+ * },
29422
+ * "key": "my-custom-toggle-button-1"
29423
+ * }
29424
+ * ]
29425
+ * }
29426
+ * ]
29427
+ *
29428
+ *
29429
+ *
29430
+ */
29431
+ export interface ToggleGroup1 {
29432
+ controls: ToggleButtonControl1[];
29433
+ macroParameter: string;
29434
+ type: 'togglegroup' | 'TOGGLEGROUP';
29435
+ [k: string]: unknown;
29436
+ }
29437
+ /**
29438
+ *
29439
+ *
29440
+ * Defines a toggle button which appears inside a ToggleGroup
29396
29441
  *
29397
29442
  * <p><b>Example</b></p>
29398
29443
  *
@@ -29401,19 +29446,21 @@ export interface I18NProperty84 {
29401
29446
  *
29402
29447
  *
29403
29448
  * {
29404
- * "type": "button",
29449
+ * "type": "togglebutton",
29450
+ * "macroParameterValue": "macroParameterValue 0",
29405
29451
  * "label": {
29406
29452
  * "value": "My Custom Control 0"
29407
29453
  * },
29408
- * "key": "my-custom-control-0"
29454
+ * "key": "my-custom-toggle-button-0"
29409
29455
  * }
29410
29456
  *
29411
29457
  *
29412
29458
  *
29413
29459
  */
29414
- export interface ButtonControl3 {
29460
+ export interface ToggleButtonControl1 {
29461
+ macroParameterValue: string;
29415
29462
  label: I18NProperty85;
29416
- type: 'button' | 'BUTTON';
29463
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29417
29464
  key: string;
29418
29465
  [k: string]: unknown;
29419
29466
  }
@@ -29444,7 +29491,7 @@ export interface I18NProperty85 {
29444
29491
  /**
29445
29492
  *
29446
29493
  *
29447
- * Defines a text field which may appear in control extension points such as the property panel
29494
+ * Defines a button which may appear in control extension points such as the property panel
29448
29495
  *
29449
29496
  * <p><b>Example</b></p>
29450
29497
  *
@@ -29463,61 +29510,40 @@ export interface I18NProperty85 {
29463
29510
  *
29464
29511
  *
29465
29512
  */
29466
- export interface TextControl1 {
29467
- macroParameter: string;
29468
- type: 'text' | 'TEXT';
29513
+ export interface ButtonControl3 {
29514
+ label: I18NProperty86;
29515
+ type: 'button' | 'BUTTON';
29469
29516
  key: string;
29470
29517
  [k: string]: unknown;
29471
29518
  }
29472
29519
  /**
29473
29520
  *
29474
29521
  *
29475
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29522
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29523
+ * and value in multiple places if you like, but identical keys must have identical values.
29476
29524
  *
29477
- * <p><b>Example</b></p>
29525
+ * <h3>Example</h3>
29478
29526
  *
29479
29527
  *
29480
29528
  *
29481
29529
  *
29482
29530
  *
29483
- * [
29484
- * {
29485
- * "type": "togglegroup",
29486
- * "macroParameter": "toggleGroupMacroParameter",
29487
- * "controls": [
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
- * "type": "togglebutton",
29498
- * "macroParameterValue": "macroParameterValue 1",
29499
- * "label": {
29500
- * "value": "My Custom Control 1"
29501
- * },
29502
- * "key": "my-custom-toggle-button-1"
29503
- * }
29504
- * ]
29505
- * }
29506
- * ]
29531
+ * {
29532
+ * "value": "My text"
29533
+ * }
29507
29534
  *
29508
29535
  *
29509
29536
  *
29510
29537
  */
29511
- export interface ToggleGroup1 {
29512
- controls: ToggleButtonControl1[];
29513
- macroParameter: string;
29514
- type: 'togglegroup' | 'TOGGLEGROUP';
29538
+ export interface I18NProperty86 {
29539
+ value: string;
29540
+ i18n?: string;
29515
29541
  [k: string]: unknown;
29516
29542
  }
29517
29543
  /**
29518
29544
  *
29519
29545
  *
29520
- * Defines a toggle button which appears inside a ToggleGroup
29546
+ * Defines a text field which may appear in control extension points such as the property panel
29521
29547
  *
29522
29548
  * <p><b>Example</b></p>
29523
29549
  *
@@ -29526,48 +29552,22 @@ export interface ToggleGroup1 {
29526
29552
  *
29527
29553
  *
29528
29554
  * {
29529
- * "type": "togglebutton",
29530
- * "macroParameterValue": "macroParameterValue 0",
29555
+ * "type": "button",
29531
29556
  * "label": {
29532
29557
  * "value": "My Custom Control 0"
29533
29558
  * },
29534
- * "key": "my-custom-toggle-button-0"
29559
+ * "key": "my-custom-control-0"
29535
29560
  * }
29536
29561
  *
29537
29562
  *
29538
29563
  *
29539
29564
  */
29540
- export interface ToggleButtonControl1 {
29541
- macroParameterValue: string;
29542
- label: I18NProperty86;
29543
- type: 'togglebutton' | 'TOGGLEBUTTON';
29565
+ export interface TextControl1 {
29566
+ macroParameter: string;
29567
+ type: 'text' | 'TEXT';
29544
29568
  key: string;
29545
29569
  [k: string]: unknown;
29546
29570
  }
29547
- /**
29548
- *
29549
- *
29550
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29551
- * and value in multiple places if you like, but identical keys must have identical values.
29552
- *
29553
- * <h3>Example</h3>
29554
- *
29555
- *
29556
- *
29557
- *
29558
- *
29559
- * {
29560
- * "value": "My text"
29561
- * }
29562
- *
29563
- *
29564
- *
29565
- */
29566
- export interface I18NProperty86 {
29567
- value: string;
29568
- i18n?: string;
29569
- [k: string]: unknown;
29570
- }
29571
29571
  /**
29572
29572
  *
29573
29573
  *
@@ -50417,14 +50417,14 @@ export interface I18NProperty91 {
50417
50417
  *
50418
50418
  */
50419
50419
  export interface WebItemTarget2 {
50420
- options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50420
+ options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
50421
50421
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50422
50422
  [k: string]: unknown;
50423
50423
  }
50424
50424
  /**
50425
50425
  *
50426
50426
  *
50427
- * Options for an inline dialog target
50427
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50428
50428
  *
50429
50429
  * <h3>Example</h3>
50430
50430
  *
@@ -50434,11 +50434,9 @@ export interface WebItemTarget2 {
50434
50434
  *
50435
50435
  * {
50436
50436
  * "target": {
50437
- * "type": "inlinedialog",
50437
+ * "type": "dialogmodule",
50438
50438
  * "options": {
50439
- * "onHover": true,
50440
- * "offsetX": "30px",
50441
- * "offsetY": "20px"
50439
+ * "key": "dialog-module-key"
50442
50440
  * }
50443
50441
  * }
50444
50442
  * }
@@ -50446,16 +50444,8 @@ export interface WebItemTarget2 {
50446
50444
  *
50447
50445
  *
50448
50446
  */
50449
- export interface InlineDialogOptions2 {
50450
- offsetX?: string;
50451
- offsetY?: string;
50452
- width?: string;
50453
- onTop?: boolean;
50454
- showDelay?: number;
50455
- closeOthers?: boolean;
50456
- persistent?: boolean;
50457
- onHover?: boolean;
50458
- isRelativeToMouse?: boolean;
50447
+ export interface DialogModuleOptions2 {
50448
+ key: string;
50459
50449
  [k: string]: unknown;
50460
50450
  }
50461
50451
  /**
@@ -50559,7 +50549,7 @@ export interface I18NProperty92 {
50559
50549
  /**
50560
50550
  *
50561
50551
  *
50562
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50552
+ * Options for an inline dialog target
50563
50553
  *
50564
50554
  * <h3>Example</h3>
50565
50555
  *
@@ -50569,9 +50559,11 @@ export interface I18NProperty92 {
50569
50559
  *
50570
50560
  * {
50571
50561
  * "target": {
50572
- * "type": "dialogmodule",
50562
+ * "type": "inlinedialog",
50573
50563
  * "options": {
50574
- * "key": "dialog-module-key"
50564
+ * "onHover": true,
50565
+ * "offsetX": "30px",
50566
+ * "offsetY": "20px"
50575
50567
  * }
50576
50568
  * }
50577
50569
  * }
@@ -50579,8 +50571,16 @@ export interface I18NProperty92 {
50579
50571
  *
50580
50572
  *
50581
50573
  */
50582
- export interface DialogModuleOptions2 {
50583
- key: string;
50574
+ export interface InlineDialogOptions2 {
50575
+ offsetX?: string;
50576
+ offsetY?: string;
50577
+ width?: string;
50578
+ onTop?: boolean;
50579
+ showDelay?: number;
50580
+ closeOthers?: boolean;
50581
+ persistent?: boolean;
50582
+ onHover?: boolean;
50583
+ isRelativeToMouse?: boolean;
50584
50584
  [k: string]: unknown;
50585
50585
  }
50586
50586
  /**