@forge/manifest 2.5.1-next.2 → 2.5.1-next.3

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
  };
@@ -2536,7 +2536,7 @@ export interface Modules {
2536
2536
  filter?: string;
2537
2537
  excludeBody?: boolean;
2538
2538
  event?: string;
2539
- conditions?: (SingleCondition | CompositeCondition)[];
2539
+ conditions?: (CompositeCondition | SingleCondition)[];
2540
2540
  propertyKeys?: string[];
2541
2541
  url?: string;
2542
2542
  key: ModuleKeySchema;
@@ -2546,7 +2546,7 @@ export interface Modules {
2546
2546
  filter?: string;
2547
2547
  excludeBody?: boolean;
2548
2548
  event?: string;
2549
- conditions?: (SingleCondition | CompositeCondition)[];
2549
+ conditions?: (CompositeCondition | SingleCondition)[];
2550
2550
  propertyKeys?: string[];
2551
2551
  url?: string;
2552
2552
  key: ModuleKeySchema;
@@ -2589,7 +2589,7 @@ export interface Modules {
2589
2589
  name?: I18NProperty55;
2590
2590
  weight?: number;
2591
2591
  location?: string;
2592
- conditions?: (CompositeCondition | SingleCondition)[];
2592
+ conditions?: (SingleCondition | CompositeCondition)[];
2593
2593
  params?: {
2594
2594
  [k: string]: unknown;
2595
2595
  };
@@ -2601,7 +2601,7 @@ export interface Modules {
2601
2601
  name?: I18NProperty55;
2602
2602
  weight?: number;
2603
2603
  location?: string;
2604
- conditions?: (CompositeCondition | SingleCondition)[];
2604
+ conditions?: (SingleCondition | CompositeCondition)[];
2605
2605
  params?: {
2606
2606
  [k: string]: unknown;
2607
2607
  };
@@ -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
  };
@@ -2750,7 +2750,7 @@ export interface Modules {
2750
2750
  name?: I18NProperty63;
2751
2751
  weight?: number;
2752
2752
  location?: string;
2753
- conditions?: (CompositeCondition7 | SingleCondition5)[];
2753
+ conditions?: (SingleCondition5 | CompositeCondition7)[];
2754
2754
  params?: {
2755
2755
  [k: string]: unknown;
2756
2756
  };
@@ -2762,7 +2762,7 @@ export interface Modules {
2762
2762
  name?: I18NProperty63;
2763
2763
  weight?: number;
2764
2764
  location?: string;
2765
- conditions?: (CompositeCondition7 | SingleCondition5)[];
2765
+ conditions?: (SingleCondition5 | CompositeCondition7)[];
2766
2766
  params?: {
2767
2767
  [k: string]: unknown;
2768
2768
  };
@@ -2958,7 +2958,7 @@ export interface Modules {
2958
2958
  icon?: Icon18;
2959
2959
  name?: I18NProperty91;
2960
2960
  cacheable?: boolean;
2961
- conditions?: (CompositeCondition | SingleCondition)[];
2961
+ conditions?: (SingleCondition | CompositeCondition)[];
2962
2962
  params?: {
2963
2963
  [k: string]: unknown;
2964
2964
  };
@@ -2974,7 +2974,7 @@ export interface Modules {
2974
2974
  icon?: Icon18;
2975
2975
  name?: I18NProperty91;
2976
2976
  cacheable?: boolean;
2977
- conditions?: (CompositeCondition | SingleCondition)[];
2977
+ conditions?: (SingleCondition | CompositeCondition)[];
2978
2978
  params?: {
2979
2979
  [k: string]: unknown;
2980
2980
  };
@@ -5901,14 +5901,14 @@ export interface Icon10 {
5901
5901
  *
5902
5902
  */
5903
5903
  export interface WebItemTarget1 {
5904
- options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
5904
+ options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
5905
5905
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
5906
5906
  [k: string]: unknown;
5907
5907
  }
5908
5908
  /**
5909
5909
  *
5910
5910
  *
5911
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
5911
+ * Options for an inline dialog target
5912
5912
  *
5913
5913
  * <h3>Example</h3>
5914
5914
  *
@@ -5918,9 +5918,11 @@ export interface WebItemTarget1 {
5918
5918
  *
5919
5919
  * {
5920
5920
  * "target": {
5921
- * "type": "dialogmodule",
5921
+ * "type": "inlinedialog",
5922
5922
  * "options": {
5923
- * "key": "dialog-module-key"
5923
+ * "onHover": true,
5924
+ * "offsetX": "30px",
5925
+ * "offsetY": "20px"
5924
5926
  * }
5925
5927
  * }
5926
5928
  * }
@@ -5928,8 +5930,16 @@ export interface WebItemTarget1 {
5928
5930
  *
5929
5931
  *
5930
5932
  */
5931
- export interface DialogModuleOptions1 {
5932
- key: string;
5933
+ export interface InlineDialogOptions1 {
5934
+ offsetX?: string;
5935
+ offsetY?: string;
5936
+ width?: string;
5937
+ onTop?: boolean;
5938
+ showDelay?: number;
5939
+ closeOthers?: boolean;
5940
+ persistent?: boolean;
5941
+ onHover?: boolean;
5942
+ isRelativeToMouse?: boolean;
5933
5943
  [k: string]: unknown;
5934
5944
  }
5935
5945
  /**
@@ -6033,7 +6043,7 @@ export interface I18NProperty58 {
6033
6043
  /**
6034
6044
  *
6035
6045
  *
6036
- * Options for an inline dialog target
6046
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
6037
6047
  *
6038
6048
  * <h3>Example</h3>
6039
6049
  *
@@ -6043,11 +6053,9 @@ export interface I18NProperty58 {
6043
6053
  *
6044
6054
  * {
6045
6055
  * "target": {
6046
- * "type": "inlinedialog",
6056
+ * "type": "dialogmodule",
6047
6057
  * "options": {
6048
- * "onHover": true,
6049
- * "offsetX": "30px",
6050
- * "offsetY": "20px"
6058
+ * "key": "dialog-module-key"
6051
6059
  * }
6052
6060
  * }
6053
6061
  * }
@@ -6055,16 +6063,8 @@ export interface I18NProperty58 {
6055
6063
  *
6056
6064
  *
6057
6065
  */
6058
- export interface InlineDialogOptions1 {
6059
- offsetX?: string;
6060
- offsetY?: string;
6061
- width?: string;
6062
- onTop?: boolean;
6063
- showDelay?: number;
6064
- closeOthers?: boolean;
6065
- persistent?: boolean;
6066
- onHover?: boolean;
6067
- isRelativeToMouse?: boolean;
6066
+ export interface DialogModuleOptions1 {
6067
+ key: string;
6068
6068
  [k: string]: unknown;
6069
6069
  }
6070
6070
  /**
@@ -6159,7 +6159,7 @@ export interface SingleCondition4 {
6159
6159
  *
6160
6160
  */
6161
6161
  export interface CompositeCondition6 {
6162
- conditions?: (SingleCondition | ManifestSchema)[];
6162
+ conditions?: (ManifestSchema | SingleCondition)[];
6163
6163
  type?: 'and' | 'AND' | 'or' | 'OR';
6164
6164
  [k: string]: unknown;
6165
6165
  }
@@ -6517,6 +6517,37 @@ export interface I18NProperty63 {
6517
6517
  i18n?: string;
6518
6518
  [k: string]: unknown;
6519
6519
  }
6520
+ /**
6521
+ *
6522
+ *
6523
+ * Single Conditions are either provided by the host application. See the complete documentation of
6524
+ * [Conditions](../../conditions/) for more information.
6525
+ *
6526
+ * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6527
+ * This is useful where you want to show the section if a certain condition is not satisfied.
6528
+ *
6529
+ * <h3>Example</h3>
6530
+ *
6531
+ *
6532
+ *
6533
+ *
6534
+ *
6535
+ * {
6536
+ * "condition": "user_is_logged_in",
6537
+ * "invert": false
6538
+ * }
6539
+ *
6540
+ *
6541
+ *
6542
+ */
6543
+ export interface SingleCondition5 {
6544
+ condition: string;
6545
+ invert?: boolean;
6546
+ params?: {
6547
+ [k: string]: unknown;
6548
+ };
6549
+ [k: string]: unknown;
6550
+ }
6520
6551
  /**
6521
6552
  *
6522
6553
  *
@@ -6558,37 +6589,6 @@ export interface CompositeCondition7 {
6558
6589
  type?: 'and' | 'AND' | 'or' | 'OR';
6559
6590
  [k: string]: unknown;
6560
6591
  }
6561
- /**
6562
- *
6563
- *
6564
- * Single Conditions are either provided by the host application. See the complete documentation of
6565
- * [Conditions](../../conditions/) for more information.
6566
- *
6567
- * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6568
- * This is useful where you want to show the section if a certain condition is not satisfied.
6569
- *
6570
- * <h3>Example</h3>
6571
- *
6572
- *
6573
- *
6574
- *
6575
- *
6576
- * {
6577
- * "condition": "user_is_logged_in",
6578
- * "invert": false
6579
- * }
6580
- *
6581
- *
6582
- *
6583
- */
6584
- export interface SingleCondition5 {
6585
- condition: string;
6586
- invert?: boolean;
6587
- params?: {
6588
- [k: string]: unknown;
6589
- };
6590
- [k: string]: unknown;
6591
- }
6592
6592
  /**
6593
6593
  *
6594
6594
  *
@@ -8008,7 +8008,7 @@ export interface I18NProperty74 {
8008
8008
  *
8009
8009
  */
8010
8010
  export interface MacroPropertyPanel {
8011
- controls?: (ToggleGroup | TextControl | ButtonControl | ControlGroup)[];
8011
+ controls?: (ButtonControl | ControlGroup | ToggleGroup | TextControl)[];
8012
8012
  cacheable?: boolean;
8013
8013
  url: string;
8014
8014
  [k: string]: unknown;
@@ -8016,52 +8016,7 @@ export interface MacroPropertyPanel {
8016
8016
  /**
8017
8017
  *
8018
8018
  *
8019
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
8020
- *
8021
- * <p><b>Example</b></p>
8022
- *
8023
- *
8024
- *
8025
- *
8026
- *
8027
- * [
8028
- * {
8029
- * "type": "togglegroup",
8030
- * "macroParameter": "toggleGroupMacroParameter",
8031
- * "controls": [
8032
- * {
8033
- * "type": "togglebutton",
8034
- * "macroParameterValue": "macroParameterValue 0",
8035
- * "label": {
8036
- * "value": "My Custom Control 0"
8037
- * },
8038
- * "key": "my-custom-toggle-button-0"
8039
- * },
8040
- * {
8041
- * "type": "togglebutton",
8042
- * "macroParameterValue": "macroParameterValue 1",
8043
- * "label": {
8044
- * "value": "My Custom Control 1"
8045
- * },
8046
- * "key": "my-custom-toggle-button-1"
8047
- * }
8048
- * ]
8049
- * }
8050
- * ]
8051
- *
8052
- *
8053
- *
8054
- */
8055
- export interface ToggleGroup {
8056
- controls: ToggleButtonControl[];
8057
- macroParameter: string;
8058
- type: 'togglegroup' | 'TOGGLEGROUP';
8059
- [k: string]: unknown;
8060
- }
8061
- /**
8062
- *
8063
- *
8064
- * Defines a toggle button which appears inside a ToggleGroup
8019
+ * Defines a button which may appear in control extension points such as the property panel
8065
8020
  *
8066
8021
  * <p><b>Example</b></p>
8067
8022
  *
@@ -8070,21 +8025,19 @@ export interface ToggleGroup {
8070
8025
  *
8071
8026
  *
8072
8027
  * {
8073
- * "type": "togglebutton",
8074
- * "macroParameterValue": "macroParameterValue 0",
8028
+ * "type": "button",
8075
8029
  * "label": {
8076
8030
  * "value": "My Custom Control 0"
8077
8031
  * },
8078
- * "key": "my-custom-toggle-button-0"
8032
+ * "key": "my-custom-control-0"
8079
8033
  * }
8080
8034
  *
8081
8035
  *
8082
8036
  *
8083
8037
  */
8084
- export interface ToggleButtonControl {
8085
- macroParameterValue: string;
8038
+ export interface ButtonControl {
8086
8039
  label: I18NProperty75;
8087
- type: 'togglebutton' | 'TOGGLEBUTTON';
8040
+ type: 'button' | 'BUTTON';
8088
8041
  key: string;
8089
8042
  [k: string]: unknown;
8090
8043
  }
@@ -8115,7 +8068,7 @@ export interface I18NProperty75 {
8115
8068
  /**
8116
8069
  *
8117
8070
  *
8118
- * Defines a text field which may appear in control extension points such as the property panel
8071
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
8119
8072
  *
8120
8073
  * <p><b>Example</b></p>
8121
8074
  *
@@ -8123,21 +8076,34 @@ export interface I18NProperty75 {
8123
8076
  *
8124
8077
  *
8125
8078
  *
8126
- * {
8127
- * "type": "button",
8128
- * "label": {
8129
- * "value": "My Custom Control 0"
8130
- * },
8131
- * "key": "my-custom-control-0"
8132
- * }
8079
+ * [
8080
+ * {
8081
+ * "type": "group",
8082
+ * "controls": [
8083
+ * {
8084
+ * "type": "button",
8085
+ * "label": {
8086
+ * "value": "My Custom Control 0"
8087
+ * },
8088
+ * "key": "my-custom-control-0"
8089
+ * },
8090
+ * {
8091
+ * "type": "button",
8092
+ * "label": {
8093
+ * "value": "My Custom Control 1"
8094
+ * },
8095
+ * "key": "my-custom-control-1"
8096
+ * }
8097
+ * ]
8098
+ * }
8099
+ * ]
8133
8100
  *
8134
8101
  *
8135
8102
  *
8136
8103
  */
8137
- export interface TextControl {
8138
- macroParameter: string;
8139
- type: 'text' | 'TEXT';
8140
- key: string;
8104
+ export interface ControlGroup {
8105
+ controls: ButtonControl1[];
8106
+ type: 'group' | 'GROUP';
8141
8107
  [k: string]: unknown;
8142
8108
  }
8143
8109
  /**
@@ -8162,7 +8128,7 @@ export interface TextControl {
8162
8128
  *
8163
8129
  *
8164
8130
  */
8165
- export interface ButtonControl {
8131
+ export interface ButtonControl1 {
8166
8132
  label: I18NProperty76;
8167
8133
  type: 'button' | 'BUTTON';
8168
8134
  key: string;
@@ -8195,7 +8161,7 @@ export interface I18NProperty76 {
8195
8161
  /**
8196
8162
  *
8197
8163
  *
8198
- * Defines a ControlGroup which may appear in control extension points such as the property panel
8164
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
8199
8165
  *
8200
8166
  * <p><b>Example</b></p>
8201
8167
  *
@@ -8205,21 +8171,24 @@ export interface I18NProperty76 {
8205
8171
  *
8206
8172
  * [
8207
8173
  * {
8208
- * "type": "group",
8174
+ * "type": "togglegroup",
8175
+ * "macroParameter": "toggleGroupMacroParameter",
8209
8176
  * "controls": [
8210
8177
  * {
8211
- * "type": "button",
8178
+ * "type": "togglebutton",
8179
+ * "macroParameterValue": "macroParameterValue 0",
8212
8180
  * "label": {
8213
8181
  * "value": "My Custom Control 0"
8214
8182
  * },
8215
- * "key": "my-custom-control-0"
8183
+ * "key": "my-custom-toggle-button-0"
8216
8184
  * },
8217
8185
  * {
8218
- * "type": "button",
8186
+ * "type": "togglebutton",
8187
+ * "macroParameterValue": "macroParameterValue 1",
8219
8188
  * "label": {
8220
8189
  * "value": "My Custom Control 1"
8221
8190
  * },
8222
- * "key": "my-custom-control-1"
8191
+ * "key": "my-custom-toggle-button-1"
8223
8192
  * }
8224
8193
  * ]
8225
8194
  * }
@@ -8228,15 +8197,16 @@ export interface I18NProperty76 {
8228
8197
  *
8229
8198
  *
8230
8199
  */
8231
- export interface ControlGroup {
8232
- controls: ButtonControl1[];
8233
- type: 'group' | 'GROUP';
8200
+ export interface ToggleGroup {
8201
+ controls: ToggleButtonControl[];
8202
+ macroParameter: string;
8203
+ type: 'togglegroup' | 'TOGGLEGROUP';
8234
8204
  [k: string]: unknown;
8235
8205
  }
8236
8206
  /**
8237
8207
  *
8238
8208
  *
8239
- * Defines a button which may appear in control extension points such as the property panel
8209
+ * Defines a toggle button which appears inside a ToggleGroup
8240
8210
  *
8241
8211
  * <p><b>Example</b></p>
8242
8212
  *
@@ -8245,19 +8215,21 @@ export interface ControlGroup {
8245
8215
  *
8246
8216
  *
8247
8217
  * {
8248
- * "type": "button",
8218
+ * "type": "togglebutton",
8219
+ * "macroParameterValue": "macroParameterValue 0",
8249
8220
  * "label": {
8250
8221
  * "value": "My Custom Control 0"
8251
8222
  * },
8252
- * "key": "my-custom-control-0"
8223
+ * "key": "my-custom-toggle-button-0"
8253
8224
  * }
8254
8225
  *
8255
8226
  *
8256
8227
  *
8257
8228
  */
8258
- export interface ButtonControl1 {
8229
+ export interface ToggleButtonControl {
8230
+ macroParameterValue: string;
8259
8231
  label: I18NProperty77;
8260
- type: 'button' | 'BUTTON';
8232
+ type: 'togglebutton' | 'TOGGLEBUTTON';
8261
8233
  key: string;
8262
8234
  [k: string]: unknown;
8263
8235
  }
@@ -8285,6 +8257,34 @@ export interface I18NProperty77 {
8285
8257
  i18n?: string;
8286
8258
  [k: string]: unknown;
8287
8259
  }
8260
+ /**
8261
+ *
8262
+ *
8263
+ * Defines a text field which may appear in control extension points such as the property panel
8264
+ *
8265
+ * <p><b>Example</b></p>
8266
+ *
8267
+ *
8268
+ *
8269
+ *
8270
+ *
8271
+ * {
8272
+ * "type": "button",
8273
+ * "label": {
8274
+ * "value": "My Custom Control 0"
8275
+ * },
8276
+ * "key": "my-custom-control-0"
8277
+ * }
8278
+ *
8279
+ *
8280
+ *
8281
+ */
8282
+ export interface TextControl {
8283
+ macroParameter: string;
8284
+ type: 'text' | 'TEXT';
8285
+ key: string;
8286
+ [k: string]: unknown;
8287
+ }
8288
8288
  /**
8289
8289
  *
8290
8290
  *
@@ -29253,11 +29253,52 @@ export interface I18NProperty83 {
29253
29253
  *
29254
29254
  */
29255
29255
  export interface MacroPropertyPanel1 {
29256
- controls?: (ButtonControl2 | ControlGroup1 | ToggleGroup1 | TextControl1)[];
29256
+ controls?: (ControlGroup1 | TextControl1 | ToggleGroup1 | ButtonControl3)[];
29257
29257
  cacheable?: boolean;
29258
29258
  url: string;
29259
29259
  [k: string]: unknown;
29260
29260
  }
29261
+ /**
29262
+ *
29263
+ *
29264
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
29265
+ *
29266
+ * <p><b>Example</b></p>
29267
+ *
29268
+ *
29269
+ *
29270
+ *
29271
+ *
29272
+ * [
29273
+ * {
29274
+ * "type": "group",
29275
+ * "controls": [
29276
+ * {
29277
+ * "type": "button",
29278
+ * "label": {
29279
+ * "value": "My Custom Control 0"
29280
+ * },
29281
+ * "key": "my-custom-control-0"
29282
+ * },
29283
+ * {
29284
+ * "type": "button",
29285
+ * "label": {
29286
+ * "value": "My Custom Control 1"
29287
+ * },
29288
+ * "key": "my-custom-control-1"
29289
+ * }
29290
+ * ]
29291
+ * }
29292
+ * ]
29293
+ *
29294
+ *
29295
+ *
29296
+ */
29297
+ export interface ControlGroup1 {
29298
+ controls: ButtonControl2[];
29299
+ type: 'group' | 'GROUP';
29300
+ [k: string]: unknown;
29301
+ }
29261
29302
  /**
29262
29303
  *
29263
29304
  *
@@ -29313,7 +29354,35 @@ export interface I18NProperty84 {
29313
29354
  /**
29314
29355
  *
29315
29356
  *
29316
- * Defines a ControlGroup which may appear in control extension points such as the property panel
29357
+ * Defines a text field which may appear in control extension points such as the property panel
29358
+ *
29359
+ * <p><b>Example</b></p>
29360
+ *
29361
+ *
29362
+ *
29363
+ *
29364
+ *
29365
+ * {
29366
+ * "type": "button",
29367
+ * "label": {
29368
+ * "value": "My Custom Control 0"
29369
+ * },
29370
+ * "key": "my-custom-control-0"
29371
+ * }
29372
+ *
29373
+ *
29374
+ *
29375
+ */
29376
+ export interface TextControl1 {
29377
+ macroParameter: string;
29378
+ type: 'text' | 'TEXT';
29379
+ key: string;
29380
+ [k: string]: unknown;
29381
+ }
29382
+ /**
29383
+ *
29384
+ *
29385
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
29317
29386
  *
29318
29387
  * <p><b>Example</b></p>
29319
29388
  *
@@ -29323,21 +29392,24 @@ export interface I18NProperty84 {
29323
29392
  *
29324
29393
  * [
29325
29394
  * {
29326
- * "type": "group",
29395
+ * "type": "togglegroup",
29396
+ * "macroParameter": "toggleGroupMacroParameter",
29327
29397
  * "controls": [
29328
29398
  * {
29329
- * "type": "button",
29399
+ * "type": "togglebutton",
29400
+ * "macroParameterValue": "macroParameterValue 0",
29330
29401
  * "label": {
29331
29402
  * "value": "My Custom Control 0"
29332
29403
  * },
29333
- * "key": "my-custom-control-0"
29404
+ * "key": "my-custom-toggle-button-0"
29334
29405
  * },
29335
29406
  * {
29336
- * "type": "button",
29407
+ * "type": "togglebutton",
29408
+ * "macroParameterValue": "macroParameterValue 1",
29337
29409
  * "label": {
29338
29410
  * "value": "My Custom Control 1"
29339
29411
  * },
29340
- * "key": "my-custom-control-1"
29412
+ * "key": "my-custom-toggle-button-1"
29341
29413
  * }
29342
29414
  * ]
29343
29415
  * }
@@ -29346,9 +29418,64 @@ export interface I18NProperty84 {
29346
29418
  *
29347
29419
  *
29348
29420
  */
29349
- export interface ControlGroup1 {
29350
- controls: ButtonControl3[];
29351
- type: 'group' | 'GROUP';
29421
+ export interface ToggleGroup1 {
29422
+ controls: ToggleButtonControl1[];
29423
+ macroParameter: string;
29424
+ type: 'togglegroup' | 'TOGGLEGROUP';
29425
+ [k: string]: unknown;
29426
+ }
29427
+ /**
29428
+ *
29429
+ *
29430
+ * Defines a toggle button which appears inside a ToggleGroup
29431
+ *
29432
+ * <p><b>Example</b></p>
29433
+ *
29434
+ *
29435
+ *
29436
+ *
29437
+ *
29438
+ * {
29439
+ * "type": "togglebutton",
29440
+ * "macroParameterValue": "macroParameterValue 0",
29441
+ * "label": {
29442
+ * "value": "My Custom Control 0"
29443
+ * },
29444
+ * "key": "my-custom-toggle-button-0"
29445
+ * }
29446
+ *
29447
+ *
29448
+ *
29449
+ */
29450
+ export interface ToggleButtonControl1 {
29451
+ macroParameterValue: string;
29452
+ label: I18NProperty85;
29453
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29454
+ key: string;
29455
+ [k: string]: unknown;
29456
+ }
29457
+ /**
29458
+ *
29459
+ *
29460
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29461
+ * and value in multiple places if you like, but identical keys must have identical values.
29462
+ *
29463
+ * <h3>Example</h3>
29464
+ *
29465
+ *
29466
+ *
29467
+ *
29468
+ *
29469
+ * {
29470
+ * "value": "My text"
29471
+ * }
29472
+ *
29473
+ *
29474
+ *
29475
+ */
29476
+ export interface I18NProperty85 {
29477
+ value: string;
29478
+ i18n?: string;
29352
29479
  [k: string]: unknown;
29353
29480
  }
29354
29481
  /**
@@ -29374,107 +29501,8 @@ export interface ControlGroup1 {
29374
29501
  *
29375
29502
  */
29376
29503
  export interface ButtonControl3 {
29377
- label: I18NProperty85;
29378
- type: 'button' | 'BUTTON';
29379
- key: string;
29380
- [k: string]: unknown;
29381
- }
29382
- /**
29383
- *
29384
- *
29385
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29386
- * and value in multiple places if you like, but identical keys must have identical values.
29387
- *
29388
- * <h3>Example</h3>
29389
- *
29390
- *
29391
- *
29392
- *
29393
- *
29394
- * {
29395
- * "value": "My text"
29396
- * }
29397
- *
29398
- *
29399
- *
29400
- */
29401
- export interface I18NProperty85 {
29402
- value: string;
29403
- i18n?: string;
29404
- [k: string]: unknown;
29405
- }
29406
- /**
29407
- *
29408
- *
29409
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29410
- *
29411
- * <p><b>Example</b></p>
29412
- *
29413
- *
29414
- *
29415
- *
29416
- *
29417
- * [
29418
- * {
29419
- * "type": "togglegroup",
29420
- * "macroParameter": "toggleGroupMacroParameter",
29421
- * "controls": [
29422
- * {
29423
- * "type": "togglebutton",
29424
- * "macroParameterValue": "macroParameterValue 0",
29425
- * "label": {
29426
- * "value": "My Custom Control 0"
29427
- * },
29428
- * "key": "my-custom-toggle-button-0"
29429
- * },
29430
- * {
29431
- * "type": "togglebutton",
29432
- * "macroParameterValue": "macroParameterValue 1",
29433
- * "label": {
29434
- * "value": "My Custom Control 1"
29435
- * },
29436
- * "key": "my-custom-toggle-button-1"
29437
- * }
29438
- * ]
29439
- * }
29440
- * ]
29441
- *
29442
- *
29443
- *
29444
- */
29445
- export interface ToggleGroup1 {
29446
- controls: ToggleButtonControl1[];
29447
- macroParameter: string;
29448
- type: 'togglegroup' | 'TOGGLEGROUP';
29449
- [k: string]: unknown;
29450
- }
29451
- /**
29452
- *
29453
- *
29454
- * Defines a toggle button which appears inside a ToggleGroup
29455
- *
29456
- * <p><b>Example</b></p>
29457
- *
29458
- *
29459
- *
29460
- *
29461
- *
29462
- * {
29463
- * "type": "togglebutton",
29464
- * "macroParameterValue": "macroParameterValue 0",
29465
- * "label": {
29466
- * "value": "My Custom Control 0"
29467
- * },
29468
- * "key": "my-custom-toggle-button-0"
29469
- * }
29470
- *
29471
- *
29472
- *
29473
- */
29474
- export interface ToggleButtonControl1 {
29475
- macroParameterValue: string;
29476
29504
  label: I18NProperty86;
29477
- type: 'togglebutton' | 'TOGGLEBUTTON';
29505
+ type: 'button' | 'BUTTON';
29478
29506
  key: string;
29479
29507
  [k: string]: unknown;
29480
29508
  }
@@ -29502,34 +29530,6 @@ export interface I18NProperty86 {
29502
29530
  i18n?: string;
29503
29531
  [k: string]: unknown;
29504
29532
  }
29505
- /**
29506
- *
29507
- *
29508
- * Defines a text field which may appear in control extension points such as the property panel
29509
- *
29510
- * <p><b>Example</b></p>
29511
- *
29512
- *
29513
- *
29514
- *
29515
- *
29516
- * {
29517
- * "type": "button",
29518
- * "label": {
29519
- * "value": "My Custom Control 0"
29520
- * },
29521
- * "key": "my-custom-control-0"
29522
- * }
29523
- *
29524
- *
29525
- *
29526
- */
29527
- export interface TextControl1 {
29528
- macroParameter: string;
29529
- type: 'text' | 'TEXT';
29530
- key: string;
29531
- [k: string]: unknown;
29532
- }
29533
29533
  /**
29534
29534
  *
29535
29535
  *
@@ -50379,10 +50379,74 @@ export interface I18NProperty91 {
50379
50379
  *
50380
50380
  */
50381
50381
  export interface WebItemTarget2 {
50382
- options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
50382
+ options?: DialogModuleOptions2 | InlineDialogOptions2 | DialogOptions4;
50383
50383
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50384
50384
  [k: string]: unknown;
50385
50385
  }
50386
+ /**
50387
+ *
50388
+ *
50389
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50390
+ *
50391
+ * <h3>Example</h3>
50392
+ *
50393
+ *
50394
+ *
50395
+ *
50396
+ *
50397
+ * {
50398
+ * "target": {
50399
+ * "type": "dialogmodule",
50400
+ * "options": {
50401
+ * "key": "dialog-module-key"
50402
+ * }
50403
+ * }
50404
+ * }
50405
+ *
50406
+ *
50407
+ *
50408
+ */
50409
+ export interface DialogModuleOptions2 {
50410
+ key: string;
50411
+ [k: string]: unknown;
50412
+ }
50413
+ /**
50414
+ *
50415
+ *
50416
+ * Options for an inline dialog target
50417
+ *
50418
+ * <h3>Example</h3>
50419
+ *
50420
+ *
50421
+ *
50422
+ *
50423
+ *
50424
+ * {
50425
+ * "target": {
50426
+ * "type": "inlinedialog",
50427
+ * "options": {
50428
+ * "onHover": true,
50429
+ * "offsetX": "30px",
50430
+ * "offsetY": "20px"
50431
+ * }
50432
+ * }
50433
+ * }
50434
+ *
50435
+ *
50436
+ *
50437
+ */
50438
+ export interface InlineDialogOptions2 {
50439
+ offsetX?: string;
50440
+ offsetY?: string;
50441
+ width?: string;
50442
+ onTop?: boolean;
50443
+ showDelay?: number;
50444
+ closeOthers?: boolean;
50445
+ persistent?: boolean;
50446
+ onHover?: boolean;
50447
+ isRelativeToMouse?: boolean;
50448
+ [k: string]: unknown;
50449
+ }
50386
50450
  /**
50387
50451
  *
50388
50452
  *
@@ -50481,70 +50545,6 @@ export interface I18NProperty92 {
50481
50545
  i18n?: string;
50482
50546
  [k: string]: unknown;
50483
50547
  }
50484
- /**
50485
- *
50486
- *
50487
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
50488
- *
50489
- * <h3>Example</h3>
50490
- *
50491
- *
50492
- *
50493
- *
50494
- *
50495
- * {
50496
- * "target": {
50497
- * "type": "dialogmodule",
50498
- * "options": {
50499
- * "key": "dialog-module-key"
50500
- * }
50501
- * }
50502
- * }
50503
- *
50504
- *
50505
- *
50506
- */
50507
- export interface DialogModuleOptions2 {
50508
- key: string;
50509
- [k: string]: unknown;
50510
- }
50511
- /**
50512
- *
50513
- *
50514
- * Options for an inline dialog target
50515
- *
50516
- * <h3>Example</h3>
50517
- *
50518
- *
50519
- *
50520
- *
50521
- *
50522
- * {
50523
- * "target": {
50524
- * "type": "inlinedialog",
50525
- * "options": {
50526
- * "onHover": true,
50527
- * "offsetX": "30px",
50528
- * "offsetY": "20px"
50529
- * }
50530
- * }
50531
- * }
50532
- *
50533
- *
50534
- *
50535
- */
50536
- export interface InlineDialogOptions2 {
50537
- offsetX?: string;
50538
- offsetY?: string;
50539
- width?: string;
50540
- onTop?: boolean;
50541
- showDelay?: number;
50542
- closeOthers?: boolean;
50543
- persistent?: boolean;
50544
- onHover?: boolean;
50545
- isRelativeToMouse?: boolean;
50546
- [k: string]: unknown;
50547
- }
50548
50548
  /**
50549
50549
  *
50550
50550
  *