@forge/manifest 2.6.0-next.5 → 2.6.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.
@@ -2511,7 +2511,7 @@ export interface Modules {
2511
2511
  fullPage?: boolean;
2512
2512
  cacheable?: boolean;
2513
2513
  location?: string;
2514
- conditions?: (CompositeCondition | SingleCondition)[];
2514
+ conditions?: (SingleCondition | CompositeCondition)[];
2515
2515
  params?: {
2516
2516
  [k: string]: unknown;
2517
2517
  };
@@ -2526,7 +2526,7 @@ export interface Modules {
2526
2526
  fullPage?: boolean;
2527
2527
  cacheable?: boolean;
2528
2528
  location?: string;
2529
- conditions?: (CompositeCondition | SingleCondition)[];
2529
+ conditions?: (SingleCondition | CompositeCondition)[];
2530
2530
  params?: {
2531
2531
  [k: string]: unknown;
2532
2532
  };
@@ -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;
@@ -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
  };
@@ -2723,7 +2723,7 @@ export interface Modules {
2723
2723
  fullPage?: boolean;
2724
2724
  cacheable?: boolean;
2725
2725
  location?: string;
2726
- conditions?: (CompositeCondition | SingleCondition)[];
2726
+ conditions?: (SingleCondition | CompositeCondition)[];
2727
2727
  params?: {
2728
2728
  [k: string]: unknown;
2729
2729
  };
@@ -2738,7 +2738,7 @@ export interface Modules {
2738
2738
  fullPage?: boolean;
2739
2739
  cacheable?: boolean;
2740
2740
  location?: string;
2741
- conditions?: (CompositeCondition | SingleCondition)[];
2741
+ conditions?: (SingleCondition | CompositeCondition)[];
2742
2742
  params?: {
2743
2743
  [k: string]: unknown;
2744
2744
  };
@@ -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,14 +5939,14 @@ export interface Icon10 {
5939
5939
  *
5940
5940
  */
5941
5941
  export interface WebItemTarget1 {
5942
- options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
5942
+ options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
5943
5943
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
5944
5944
  [k: string]: unknown;
5945
5945
  }
5946
5946
  /**
5947
5947
  *
5948
5948
  *
5949
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
5949
+ * Options for an inline dialog target
5950
5950
  *
5951
5951
  * <h3>Example</h3>
5952
5952
  *
@@ -5956,9 +5956,11 @@ export interface WebItemTarget1 {
5956
5956
  *
5957
5957
  * {
5958
5958
  * "target": {
5959
- * "type": "dialogmodule",
5959
+ * "type": "inlinedialog",
5960
5960
  * "options": {
5961
- * "key": "dialog-module-key"
5961
+ * "onHover": true,
5962
+ * "offsetX": "30px",
5963
+ * "offsetY": "20px"
5962
5964
  * }
5963
5965
  * }
5964
5966
  * }
@@ -5966,8 +5968,16 @@ export interface WebItemTarget1 {
5966
5968
  *
5967
5969
  *
5968
5970
  */
5969
- export interface DialogModuleOptions1 {
5970
- key: string;
5971
+ export interface InlineDialogOptions1 {
5972
+ offsetX?: string;
5973
+ offsetY?: string;
5974
+ width?: string;
5975
+ onTop?: boolean;
5976
+ showDelay?: number;
5977
+ closeOthers?: boolean;
5978
+ persistent?: boolean;
5979
+ onHover?: boolean;
5980
+ isRelativeToMouse?: boolean;
5971
5981
  [k: string]: unknown;
5972
5982
  }
5973
5983
  /**
@@ -6071,7 +6081,7 @@ export interface I18NProperty58 {
6071
6081
  /**
6072
6082
  *
6073
6083
  *
6074
- * Options for an inline dialog target
6084
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6075
6085
  *
6076
6086
  * <h3>Example</h3>
6077
6087
  *
@@ -6081,11 +6091,9 @@ export interface I18NProperty58 {
6081
6091
  *
6082
6092
  * {
6083
6093
  * "target": {
6084
- * "type": "inlinedialog",
6094
+ * "type": "dialogmodule",
6085
6095
  * "options": {
6086
- * "onHover": true,
6087
- * "offsetX": "30px",
6088
- * "offsetY": "20px"
6096
+ * "key": "dialog-module-key"
6089
6097
  * }
6090
6098
  * }
6091
6099
  * }
@@ -6093,16 +6101,8 @@ export interface I18NProperty58 {
6093
6101
  *
6094
6102
  *
6095
6103
  */
6096
- export interface InlineDialogOptions1 {
6097
- offsetX?: string;
6098
- offsetY?: string;
6099
- width?: string;
6100
- onTop?: boolean;
6101
- showDelay?: number;
6102
- closeOthers?: boolean;
6103
- persistent?: boolean;
6104
- onHover?: boolean;
6105
- isRelativeToMouse?: boolean;
6104
+ export interface DialogModuleOptions1 {
6105
+ key: string;
6106
6106
  [k: string]: unknown;
6107
6107
  }
6108
6108
  /**
@@ -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,11 +8046,39 @@ export interface I18NProperty74 {
8046
8046
  *
8047
8047
  */
8048
8048
  export interface MacroPropertyPanel {
8049
- controls?: (ControlGroup | ToggleGroup | TextControl | ButtonControl1)[];
8049
+ controls?: (TextControl | ControlGroup | ButtonControl1 | ToggleGroup)[];
8050
8050
  cacheable?: boolean;
8051
8051
  url: string;
8052
8052
  [k: string]: unknown;
8053
8053
  }
8054
+ /**
8055
+ *
8056
+ *
8057
+ * Defines a text field which may appear in control extension points such as the property panel
8058
+ *
8059
+ * <p><b>Example</b></p>
8060
+ *
8061
+ *
8062
+ *
8063
+ *
8064
+ *
8065
+ * {
8066
+ * "type": "button",
8067
+ * "label": {
8068
+ * "value": "My Custom Control 0"
8069
+ * },
8070
+ * "key": "my-custom-control-0"
8071
+ * }
8072
+ *
8073
+ *
8074
+ *
8075
+ */
8076
+ export interface TextControl {
8077
+ macroParameter: string;
8078
+ type: 'text' | 'TEXT';
8079
+ key: string;
8080
+ [k: string]: unknown;
8081
+ }
8054
8082
  /**
8055
8083
  *
8056
8084
  *
@@ -8147,52 +8175,7 @@ export interface I18NProperty75 {
8147
8175
  /**
8148
8176
  *
8149
8177
  *
8150
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
8151
- *
8152
- * <p><b>Example</b></p>
8153
- *
8154
- *
8155
- *
8156
- *
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
- * ]
8182
- *
8183
- *
8184
- *
8185
- */
8186
- export interface ToggleGroup {
8187
- controls: ToggleButtonControl[];
8188
- macroParameter: string;
8189
- type: 'togglegroup' | 'TOGGLEGROUP';
8190
- [k: string]: unknown;
8191
- }
8192
- /**
8193
- *
8194
- *
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?: (TextControl1 | ToggleGroup1 | ControlGroup1 | ButtonControl3)[];
29295
29295
  cacheable?: boolean;
29296
29296
  url: string;
29297
29297
  [k: string]: unknown;
@@ -29299,7 +29299,35 @@ export interface MacroPropertyPanel1 {
29299
29299
  /**
29300
29300
  *
29301
29301
  *
29302
- * Defines a ControlGroup which may appear in control extension points such as the property panel
29302
+ * Defines a text field which may appear in control extension points such as the property panel
29303
+ *
29304
+ * <p><b>Example</b></p>
29305
+ *
29306
+ *
29307
+ *
29308
+ *
29309
+ *
29310
+ * {
29311
+ * "type": "button",
29312
+ * "label": {
29313
+ * "value": "My Custom Control 0"
29314
+ * },
29315
+ * "key": "my-custom-control-0"
29316
+ * }
29317
+ *
29318
+ *
29319
+ *
29320
+ */
29321
+ export interface TextControl1 {
29322
+ macroParameter: string;
29323
+ type: 'text' | 'TEXT';
29324
+ key: string;
29325
+ [k: string]: unknown;
29326
+ }
29327
+ /**
29328
+ *
29329
+ *
29330
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
29303
29331
  *
29304
29332
  * <p><b>Example</b></p>
29305
29333
  *
@@ -29309,21 +29337,24 @@ export interface MacroPropertyPanel1 {
29309
29337
  *
29310
29338
  * [
29311
29339
  * {
29312
- * "type": "group",
29340
+ * "type": "togglegroup",
29341
+ * "macroParameter": "toggleGroupMacroParameter",
29313
29342
  * "controls": [
29314
29343
  * {
29315
- * "type": "button",
29344
+ * "type": "togglebutton",
29345
+ * "macroParameterValue": "macroParameterValue 0",
29316
29346
  * "label": {
29317
29347
  * "value": "My Custom Control 0"
29318
29348
  * },
29319
- * "key": "my-custom-control-0"
29349
+ * "key": "my-custom-toggle-button-0"
29320
29350
  * },
29321
29351
  * {
29322
- * "type": "button",
29352
+ * "type": "togglebutton",
29353
+ * "macroParameterValue": "macroParameterValue 1",
29323
29354
  * "label": {
29324
29355
  * "value": "My Custom Control 1"
29325
29356
  * },
29326
- * "key": "my-custom-control-1"
29357
+ * "key": "my-custom-toggle-button-1"
29327
29358
  * }
29328
29359
  * ]
29329
29360
  * }
@@ -29332,15 +29363,16 @@ export interface MacroPropertyPanel1 {
29332
29363
  *
29333
29364
  *
29334
29365
  */
29335
- export interface ControlGroup1 {
29336
- controls: ButtonControl2[];
29337
- type: 'group' | 'GROUP';
29366
+ export interface ToggleGroup1 {
29367
+ controls: ToggleButtonControl1[];
29368
+ macroParameter: string;
29369
+ type: 'togglegroup' | 'TOGGLEGROUP';
29338
29370
  [k: string]: unknown;
29339
29371
  }
29340
29372
  /**
29341
29373
  *
29342
29374
  *
29343
- * Defines a button which may appear in control extension points such as the property panel
29375
+ * Defines a toggle button which appears inside a ToggleGroup
29344
29376
  *
29345
29377
  * <p><b>Example</b></p>
29346
29378
  *
@@ -29349,19 +29381,21 @@ export interface ControlGroup1 {
29349
29381
  *
29350
29382
  *
29351
29383
  * {
29352
- * "type": "button",
29384
+ * "type": "togglebutton",
29385
+ * "macroParameterValue": "macroParameterValue 0",
29353
29386
  * "label": {
29354
29387
  * "value": "My Custom Control 0"
29355
29388
  * },
29356
- * "key": "my-custom-control-0"
29389
+ * "key": "my-custom-toggle-button-0"
29357
29390
  * }
29358
29391
  *
29359
29392
  *
29360
29393
  *
29361
29394
  */
29362
- export interface ButtonControl2 {
29395
+ export interface ToggleButtonControl1 {
29396
+ macroParameterValue: string;
29363
29397
  label: I18NProperty84;
29364
- type: 'button' | 'BUTTON';
29398
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29365
29399
  key: string;
29366
29400
  [k: string]: unknown;
29367
29401
  }
@@ -29392,7 +29426,7 @@ export interface I18NProperty84 {
29392
29426
  /**
29393
29427
  *
29394
29428
  *
29395
- * Defines a button which may appear in control extension points such as the property panel
29429
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
29396
29430
  *
29397
29431
  * <p><b>Example</b></p>
29398
29432
  *
@@ -29400,51 +29434,40 @@ export interface I18NProperty84 {
29400
29434
  *
29401
29435
  *
29402
29436
  *
29403
- * {
29404
- * "type": "button",
29405
- * "label": {
29406
- * "value": "My Custom Control 0"
29407
- * },
29408
- * "key": "my-custom-control-0"
29409
- * }
29410
- *
29411
- *
29412
- *
29413
- */
29414
- export interface ButtonControl3 {
29415
- label: I18NProperty85;
29416
- type: 'button' | 'BUTTON';
29417
- key: string;
29418
- [k: string]: unknown;
29419
- }
29420
- /**
29421
- *
29422
- *
29423
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29424
- * and value in multiple places if you like, but identical keys must have identical values.
29425
- *
29426
- * <h3>Example</h3>
29427
- *
29428
- *
29429
- *
29430
- *
29431
- *
29432
- * {
29433
- * "value": "My text"
29434
- * }
29437
+ * [
29438
+ * {
29439
+ * "type": "group",
29440
+ * "controls": [
29441
+ * {
29442
+ * "type": "button",
29443
+ * "label": {
29444
+ * "value": "My Custom Control 0"
29445
+ * },
29446
+ * "key": "my-custom-control-0"
29447
+ * },
29448
+ * {
29449
+ * "type": "button",
29450
+ * "label": {
29451
+ * "value": "My Custom Control 1"
29452
+ * },
29453
+ * "key": "my-custom-control-1"
29454
+ * }
29455
+ * ]
29456
+ * }
29457
+ * ]
29435
29458
  *
29436
29459
  *
29437
29460
  *
29438
29461
  */
29439
- export interface I18NProperty85 {
29440
- value: string;
29441
- i18n?: string;
29462
+ export interface ControlGroup1 {
29463
+ controls: ButtonControl2[];
29464
+ type: 'group' | 'GROUP';
29442
29465
  [k: string]: unknown;
29443
29466
  }
29444
29467
  /**
29445
29468
  *
29446
29469
  *
29447
- * Defines a text field which may appear in control extension points such as the property panel
29470
+ * Defines a button which may appear in control extension points such as the property panel
29448
29471
  *
29449
29472
  * <p><b>Example</b></p>
29450
29473
  *
@@ -29463,61 +29486,40 @@ export interface I18NProperty85 {
29463
29486
  *
29464
29487
  *
29465
29488
  */
29466
- export interface TextControl1 {
29467
- macroParameter: string;
29468
- type: 'text' | 'TEXT';
29489
+ export interface ButtonControl2 {
29490
+ label: I18NProperty85;
29491
+ type: 'button' | 'BUTTON';
29469
29492
  key: string;
29470
29493
  [k: string]: unknown;
29471
29494
  }
29472
29495
  /**
29473
29496
  *
29474
29497
  *
29475
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29498
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29499
+ * and value in multiple places if you like, but identical keys must have identical values.
29476
29500
  *
29477
- * <p><b>Example</b></p>
29501
+ * <h3>Example</h3>
29478
29502
  *
29479
29503
  *
29480
29504
  *
29481
29505
  *
29482
29506
  *
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
- * ]
29507
+ * {
29508
+ * "value": "My text"
29509
+ * }
29507
29510
  *
29508
29511
  *
29509
29512
  *
29510
29513
  */
29511
- export interface ToggleGroup1 {
29512
- controls: ToggleButtonControl1[];
29513
- macroParameter: string;
29514
- type: 'togglegroup' | 'TOGGLEGROUP';
29514
+ export interface I18NProperty85 {
29515
+ value: string;
29516
+ i18n?: string;
29515
29517
  [k: string]: unknown;
29516
29518
  }
29517
29519
  /**
29518
29520
  *
29519
29521
  *
29520
- * Defines a toggle button which appears inside a ToggleGroup
29522
+ * Defines a button which may appear in control extension points such as the property panel
29521
29523
  *
29522
29524
  * <p><b>Example</b></p>
29523
29525
  *
@@ -29526,21 +29528,19 @@ export interface ToggleGroup1 {
29526
29528
  *
29527
29529
  *
29528
29530
  * {
29529
- * "type": "togglebutton",
29530
- * "macroParameterValue": "macroParameterValue 0",
29531
+ * "type": "button",
29531
29532
  * "label": {
29532
29533
  * "value": "My Custom Control 0"
29533
29534
  * },
29534
- * "key": "my-custom-toggle-button-0"
29535
+ * "key": "my-custom-control-0"
29535
29536
  * }
29536
29537
  *
29537
29538
  *
29538
29539
  *
29539
29540
  */
29540
- export interface ToggleButtonControl1 {
29541
- macroParameterValue: string;
29541
+ export interface ButtonControl3 {
29542
29542
  label: I18NProperty86;
29543
- type: 'togglebutton' | 'TOGGLEBUTTON';
29543
+ type: 'button' | 'BUTTON';
29544
29544
  key: string;
29545
29545
  [k: string]: unknown;
29546
29546
  }
@@ -50417,47 +50417,10 @@ export interface I18NProperty91 {
50417
50417
  *
50418
50418
  */
50419
50419
  export interface WebItemTarget2 {
50420
- options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50420
+ options?: DialogOptions4 | InlineDialogOptions2 | DialogModuleOptions2;
50421
50421
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50422
50422
  [k: string]: unknown;
50423
50423
  }
50424
- /**
50425
- *
50426
- *
50427
- * Options for an inline dialog target
50428
- *
50429
- * <h3>Example</h3>
50430
- *
50431
- *
50432
- *
50433
- *
50434
- *
50435
- * {
50436
- * "target": {
50437
- * "type": "inlinedialog",
50438
- * "options": {
50439
- * "onHover": true,
50440
- * "offsetX": "30px",
50441
- * "offsetY": "20px"
50442
- * }
50443
- * }
50444
- * }
50445
- *
50446
- *
50447
- *
50448
- */
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;
50459
- [k: string]: unknown;
50460
- }
50461
50424
  /**
50462
50425
  *
50463
50426
  *
@@ -50556,6 +50519,43 @@ export interface I18NProperty92 {
50556
50519
  i18n?: string;
50557
50520
  [k: string]: unknown;
50558
50521
  }
50522
+ /**
50523
+ *
50524
+ *
50525
+ * Options for an inline dialog target
50526
+ *
50527
+ * <h3>Example</h3>
50528
+ *
50529
+ *
50530
+ *
50531
+ *
50532
+ *
50533
+ * {
50534
+ * "target": {
50535
+ * "type": "inlinedialog",
50536
+ * "options": {
50537
+ * "onHover": true,
50538
+ * "offsetX": "30px",
50539
+ * "offsetY": "20px"
50540
+ * }
50541
+ * }
50542
+ * }
50543
+ *
50544
+ *
50545
+ *
50546
+ */
50547
+ export interface InlineDialogOptions2 {
50548
+ offsetX?: string;
50549
+ offsetY?: string;
50550
+ width?: string;
50551
+ onTop?: boolean;
50552
+ showDelay?: number;
50553
+ closeOthers?: boolean;
50554
+ persistent?: boolean;
50555
+ onHover?: boolean;
50556
+ isRelativeToMouse?: boolean;
50557
+ [k: string]: unknown;
50558
+ }
50559
50559
  /**
50560
50560
  *
50561
50561
  *