@forge/manifest 3.2.0-next.2 → 3.2.0-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.
@@ -3036,7 +3036,7 @@ export interface Modules {
3036
3036
  fullPage?: boolean;
3037
3037
  cacheable?: boolean;
3038
3038
  location?: string;
3039
- conditions?: (SingleCondition | CompositeCondition)[];
3039
+ conditions?: (CompositeCondition | SingleCondition)[];
3040
3040
  params?: {
3041
3041
  [k: string]: unknown;
3042
3042
  };
@@ -3051,7 +3051,7 @@ export interface Modules {
3051
3051
  fullPage?: boolean;
3052
3052
  cacheable?: boolean;
3053
3053
  location?: string;
3054
- conditions?: (SingleCondition | CompositeCondition)[];
3054
+ conditions?: (CompositeCondition | SingleCondition)[];
3055
3055
  params?: {
3056
3056
  [k: string]: unknown;
3057
3057
  };
@@ -3069,7 +3069,7 @@ export interface Modules {
3069
3069
  location?: string;
3070
3070
  cacheable?: boolean;
3071
3071
  supportsNative?: boolean;
3072
- conditions?: (SingleCondition | CompositeCondition)[];
3072
+ conditions?: (CompositeCondition | SingleCondition)[];
3073
3073
  params?: {
3074
3074
  [k: string]: unknown;
3075
3075
  };
@@ -3085,7 +3085,7 @@ export interface Modules {
3085
3085
  location?: string;
3086
3086
  cacheable?: boolean;
3087
3087
  supportsNative?: boolean;
3088
- conditions?: (SingleCondition | CompositeCondition)[];
3088
+ conditions?: (CompositeCondition | SingleCondition)[];
3089
3089
  params?: {
3090
3090
  [k: string]: unknown;
3091
3091
  };
@@ -3099,7 +3099,7 @@ export interface Modules {
3099
3099
  filter?: string;
3100
3100
  excludeBody?: boolean;
3101
3101
  event?: string;
3102
- conditions?: (SingleCondition | CompositeCondition)[];
3102
+ conditions?: (CompositeCondition | SingleCondition)[];
3103
3103
  propertyKeys?: string[];
3104
3104
  url?: string;
3105
3105
  key: ModuleKeySchema;
@@ -3109,7 +3109,7 @@ export interface Modules {
3109
3109
  filter?: string;
3110
3110
  excludeBody?: boolean;
3111
3111
  event?: string;
3112
- conditions?: (SingleCondition | CompositeCondition)[];
3112
+ conditions?: (CompositeCondition | SingleCondition)[];
3113
3113
  propertyKeys?: string[];
3114
3114
  url?: string;
3115
3115
  key: ModuleKeySchema;
@@ -3217,7 +3217,7 @@ export interface Modules {
3217
3217
  name?: I18NProperty59;
3218
3218
  location?: string;
3219
3219
  cacheable?: boolean;
3220
- conditions?: (CompositeCondition6 | SingleCondition4)[];
3220
+ conditions?: (SingleCondition4 | CompositeCondition6)[];
3221
3221
  key: ModuleKeySchema;
3222
3222
  [k: string]: unknown;
3223
3223
  },
@@ -3235,7 +3235,7 @@ export interface Modules {
3235
3235
  name?: I18NProperty59;
3236
3236
  location?: string;
3237
3237
  cacheable?: boolean;
3238
- conditions?: (CompositeCondition6 | SingleCondition4)[];
3238
+ conditions?: (SingleCondition4 | CompositeCondition6)[];
3239
3239
  key: ModuleKeySchema;
3240
3240
  [k: string]: unknown;
3241
3241
  }[]
@@ -3248,7 +3248,7 @@ export interface Modules {
3248
3248
  fullPage?: boolean;
3249
3249
  cacheable?: boolean;
3250
3250
  location?: string;
3251
- conditions?: (SingleCondition | CompositeCondition)[];
3251
+ conditions?: (CompositeCondition | SingleCondition)[];
3252
3252
  params?: {
3253
3253
  [k: string]: unknown;
3254
3254
  };
@@ -3263,7 +3263,7 @@ export interface Modules {
3263
3263
  fullPage?: boolean;
3264
3264
  cacheable?: boolean;
3265
3265
  location?: string;
3266
- conditions?: (SingleCondition | CompositeCondition)[];
3266
+ conditions?: (CompositeCondition | SingleCondition)[];
3267
3267
  params?: {
3268
3268
  [k: string]: unknown;
3269
3269
  };
@@ -3313,7 +3313,7 @@ export interface Modules {
3313
3313
  name?: I18NProperty63;
3314
3314
  weight?: number;
3315
3315
  location?: string;
3316
- conditions?: (SingleCondition5 | CompositeCondition7)[];
3316
+ conditions?: (CompositeCondition7 | SingleCondition5)[];
3317
3317
  params?: {
3318
3318
  [k: string]: unknown;
3319
3319
  };
@@ -3325,7 +3325,7 @@ export interface Modules {
3325
3325
  name?: I18NProperty63;
3326
3326
  weight?: number;
3327
3327
  location?: string;
3328
- conditions?: (SingleCondition5 | CompositeCondition7)[];
3328
+ conditions?: (CompositeCondition7 | SingleCondition5)[];
3329
3329
  params?: {
3330
3330
  [k: string]: unknown;
3331
3331
  };
@@ -6654,6 +6654,37 @@ export interface I18NProperty59 {
6654
6654
  i18n?: string;
6655
6655
  [k: string]: unknown;
6656
6656
  }
6657
+ /**
6658
+ *
6659
+ *
6660
+ * Single Conditions are either provided by the host application. See the complete documentation of
6661
+ * [Conditions](../../conditions/) for more information.
6662
+ *
6663
+ * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6664
+ * This is useful where you want to show the section if a certain condition is not satisfied.
6665
+ *
6666
+ * <h3>Example</h3>
6667
+ *
6668
+ *
6669
+ *
6670
+ *
6671
+ *
6672
+ * {
6673
+ * "condition": "user_is_logged_in",
6674
+ * "invert": false
6675
+ * }
6676
+ *
6677
+ *
6678
+ *
6679
+ */
6680
+ export interface SingleCondition4 {
6681
+ condition: string;
6682
+ invert?: boolean;
6683
+ params?: {
6684
+ [k: string]: unknown;
6685
+ };
6686
+ [k: string]: unknown;
6687
+ }
6657
6688
  /**
6658
6689
  *
6659
6690
  *
@@ -6695,37 +6726,6 @@ export interface CompositeCondition6 {
6695
6726
  type?: 'and' | 'AND' | 'or' | 'OR';
6696
6727
  [k: string]: unknown;
6697
6728
  }
6698
- /**
6699
- *
6700
- *
6701
- * Single Conditions are either provided by the host application. See the complete documentation of
6702
- * [Conditions](../../conditions/) for more information.
6703
- *
6704
- * To invert a condition, add the attribute ``invert="true"`` to the condition element.
6705
- * This is useful where you want to show the section if a certain condition is not satisfied.
6706
- *
6707
- * <h3>Example</h3>
6708
- *
6709
- *
6710
- *
6711
- *
6712
- *
6713
- * {
6714
- * "condition": "user_is_logged_in",
6715
- * "invert": false
6716
- * }
6717
- *
6718
- *
6719
- *
6720
- */
6721
- export interface SingleCondition4 {
6722
- condition: string;
6723
- invert?: boolean;
6724
- params?: {
6725
- [k: string]: unknown;
6726
- };
6727
- [k: string]: unknown;
6728
- }
6729
6729
  /**
6730
6730
  *
6731
6731
  *
@@ -7080,37 +7080,6 @@ export interface I18NProperty63 {
7080
7080
  i18n?: string;
7081
7081
  [k: string]: unknown;
7082
7082
  }
7083
- /**
7084
- *
7085
- *
7086
- * Single Conditions are either provided by the host application. See the complete documentation of
7087
- * [Conditions](../../conditions/) for more information.
7088
- *
7089
- * To invert a condition, add the attribute ``invert="true"`` to the condition element.
7090
- * This is useful where you want to show the section if a certain condition is not satisfied.
7091
- *
7092
- * <h3>Example</h3>
7093
- *
7094
- *
7095
- *
7096
- *
7097
- *
7098
- * {
7099
- * "condition": "user_is_logged_in",
7100
- * "invert": false
7101
- * }
7102
- *
7103
- *
7104
- *
7105
- */
7106
- export interface SingleCondition5 {
7107
- condition: string;
7108
- invert?: boolean;
7109
- params?: {
7110
- [k: string]: unknown;
7111
- };
7112
- [k: string]: unknown;
7113
- }
7114
7083
  /**
7115
7084
  *
7116
7085
  *
@@ -7152,6 +7121,37 @@ export interface CompositeCondition7 {
7152
7121
  type?: 'and' | 'AND' | 'or' | 'OR';
7153
7122
  [k: string]: unknown;
7154
7123
  }
7124
+ /**
7125
+ *
7126
+ *
7127
+ * Single Conditions are either provided by the host application. See the complete documentation of
7128
+ * [Conditions](../../conditions/) for more information.
7129
+ *
7130
+ * To invert a condition, add the attribute ``invert="true"`` to the condition element.
7131
+ * This is useful where you want to show the section if a certain condition is not satisfied.
7132
+ *
7133
+ * <h3>Example</h3>
7134
+ *
7135
+ *
7136
+ *
7137
+ *
7138
+ *
7139
+ * {
7140
+ * "condition": "user_is_logged_in",
7141
+ * "invert": false
7142
+ * }
7143
+ *
7144
+ *
7145
+ *
7146
+ */
7147
+ export interface SingleCondition5 {
7148
+ condition: string;
7149
+ invert?: boolean;
7150
+ params?: {
7151
+ [k: string]: unknown;
7152
+ };
7153
+ [k: string]: unknown;
7154
+ }
7155
7155
  /**
7156
7156
  *
7157
7157
  *
@@ -8571,7 +8571,7 @@ export interface I18NProperty74 {
8571
8571
  *
8572
8572
  */
8573
8573
  export interface MacroPropertyPanel {
8574
- controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
8574
+ controls?: (ControlGroup | ToggleGroup | TextControl | ButtonControl1)[];
8575
8575
  cacheable?: boolean;
8576
8576
  url: string;
8577
8577
  [k: string]: unknown;
@@ -8672,7 +8672,7 @@ export interface I18NProperty75 {
8672
8672
  /**
8673
8673
  *
8674
8674
  *
8675
- * Defines a text field which may appear in control extension points such as the property panel
8675
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
8676
8676
  *
8677
8677
  * <p><b>Example</b></p>
8678
8678
  *
@@ -8680,27 +8680,44 @@ export interface I18NProperty75 {
8680
8680
  *
8681
8681
  *
8682
8682
  *
8683
- * {
8684
- * "type": "button",
8685
- * "label": {
8686
- * "value": "My Custom Control 0"
8687
- * },
8688
- * "key": "my-custom-control-0"
8689
- * }
8683
+ * [
8684
+ * {
8685
+ * "type": "togglegroup",
8686
+ * "macroParameter": "toggleGroupMacroParameter",
8687
+ * "controls": [
8688
+ * {
8689
+ * "type": "togglebutton",
8690
+ * "macroParameterValue": "macroParameterValue 0",
8691
+ * "label": {
8692
+ * "value": "My Custom Control 0"
8693
+ * },
8694
+ * "key": "my-custom-toggle-button-0"
8695
+ * },
8696
+ * {
8697
+ * "type": "togglebutton",
8698
+ * "macroParameterValue": "macroParameterValue 1",
8699
+ * "label": {
8700
+ * "value": "My Custom Control 1"
8701
+ * },
8702
+ * "key": "my-custom-toggle-button-1"
8703
+ * }
8704
+ * ]
8705
+ * }
8706
+ * ]
8690
8707
  *
8691
8708
  *
8692
8709
  *
8693
8710
  */
8694
- export interface TextControl {
8711
+ export interface ToggleGroup {
8712
+ controls: ToggleButtonControl[];
8695
8713
  macroParameter: string;
8696
- type: 'text' | 'TEXT';
8697
- key: string;
8714
+ type: 'togglegroup' | 'TOGGLEGROUP';
8698
8715
  [k: string]: unknown;
8699
8716
  }
8700
8717
  /**
8701
8718
  *
8702
8719
  *
8703
- * Defines a button which may appear in control extension points such as the property panel
8720
+ * Defines a toggle button which appears inside a ToggleGroup
8704
8721
  *
8705
8722
  * <p><b>Example</b></p>
8706
8723
  *
@@ -8709,19 +8726,21 @@ export interface TextControl {
8709
8726
  *
8710
8727
  *
8711
8728
  * {
8712
- * "type": "button",
8729
+ * "type": "togglebutton",
8730
+ * "macroParameterValue": "macroParameterValue 0",
8713
8731
  * "label": {
8714
8732
  * "value": "My Custom Control 0"
8715
8733
  * },
8716
- * "key": "my-custom-control-0"
8734
+ * "key": "my-custom-toggle-button-0"
8717
8735
  * }
8718
8736
  *
8719
8737
  *
8720
8738
  *
8721
8739
  */
8722
- export interface ButtonControl1 {
8740
+ export interface ToggleButtonControl {
8741
+ macroParameterValue: string;
8723
8742
  label: I18NProperty76;
8724
- type: 'button' | 'BUTTON';
8743
+ type: 'togglebutton' | 'TOGGLEBUTTON';
8725
8744
  key: string;
8726
8745
  [k: string]: unknown;
8727
8746
  }
@@ -8752,7 +8771,7 @@ export interface I18NProperty76 {
8752
8771
  /**
8753
8772
  *
8754
8773
  *
8755
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
8774
+ * Defines a text field which may appear in control extension points such as the property panel
8756
8775
  *
8757
8776
  * <p><b>Example</b></p>
8758
8777
  *
@@ -8760,44 +8779,27 @@ export interface I18NProperty76 {
8760
8779
  *
8761
8780
  *
8762
8781
  *
8763
- * [
8764
- * {
8765
- * "type": "togglegroup",
8766
- * "macroParameter": "toggleGroupMacroParameter",
8767
- * "controls": [
8768
- * {
8769
- * "type": "togglebutton",
8770
- * "macroParameterValue": "macroParameterValue 0",
8771
- * "label": {
8772
- * "value": "My Custom Control 0"
8773
- * },
8774
- * "key": "my-custom-toggle-button-0"
8775
- * },
8776
- * {
8777
- * "type": "togglebutton",
8778
- * "macroParameterValue": "macroParameterValue 1",
8779
- * "label": {
8780
- * "value": "My Custom Control 1"
8781
- * },
8782
- * "key": "my-custom-toggle-button-1"
8783
- * }
8784
- * ]
8785
- * }
8786
- * ]
8782
+ * {
8783
+ * "type": "button",
8784
+ * "label": {
8785
+ * "value": "My Custom Control 0"
8786
+ * },
8787
+ * "key": "my-custom-control-0"
8788
+ * }
8787
8789
  *
8788
8790
  *
8789
8791
  *
8790
8792
  */
8791
- export interface ToggleGroup {
8792
- controls: ToggleButtonControl[];
8793
+ export interface TextControl {
8793
8794
  macroParameter: string;
8794
- type: 'togglegroup' | 'TOGGLEGROUP';
8795
+ type: 'text' | 'TEXT';
8796
+ key: string;
8795
8797
  [k: string]: unknown;
8796
8798
  }
8797
8799
  /**
8798
8800
  *
8799
8801
  *
8800
- * Defines a toggle button which appears inside a ToggleGroup
8802
+ * Defines a button which may appear in control extension points such as the property panel
8801
8803
  *
8802
8804
  * <p><b>Example</b></p>
8803
8805
  *
@@ -8806,21 +8808,19 @@ export interface ToggleGroup {
8806
8808
  *
8807
8809
  *
8808
8810
  * {
8809
- * "type": "togglebutton",
8810
- * "macroParameterValue": "macroParameterValue 0",
8811
+ * "type": "button",
8811
8812
  * "label": {
8812
8813
  * "value": "My Custom Control 0"
8813
8814
  * },
8814
- * "key": "my-custom-toggle-button-0"
8815
+ * "key": "my-custom-control-0"
8815
8816
  * }
8816
8817
  *
8817
8818
  *
8818
8819
  *
8819
8820
  */
8820
- export interface ToggleButtonControl {
8821
- macroParameterValue: string;
8821
+ export interface ButtonControl1 {
8822
8822
  label: I18NProperty77;
8823
- type: 'togglebutton' | 'TOGGLEBUTTON';
8823
+ type: 'button' | 'BUTTON';
8824
8824
  key: string;
8825
8825
  [k: string]: unknown;
8826
8826
  }
@@ -29816,7 +29816,7 @@ export interface I18NProperty83 {
29816
29816
  *
29817
29817
  */
29818
29818
  export interface MacroPropertyPanel1 {
29819
- controls?: (ControlGroup1 | ButtonControl3 | ToggleGroup1 | TextControl1)[];
29819
+ controls?: (TextControl1 | ToggleGroup1 | ControlGroup1 | ButtonControl3)[];
29820
29820
  cacheable?: boolean;
29821
29821
  url: string;
29822
29822
  [k: string]: unknown;
@@ -29824,48 +29824,7 @@ export interface MacroPropertyPanel1 {
29824
29824
  /**
29825
29825
  *
29826
29826
  *
29827
- * Defines a ControlGroup which may appear in control extension points such as the property panel
29828
- *
29829
- * <p><b>Example</b></p>
29830
- *
29831
- *
29832
- *
29833
- *
29834
- *
29835
- * [
29836
- * {
29837
- * "type": "group",
29838
- * "controls": [
29839
- * {
29840
- * "type": "button",
29841
- * "label": {
29842
- * "value": "My Custom Control 0"
29843
- * },
29844
- * "key": "my-custom-control-0"
29845
- * },
29846
- * {
29847
- * "type": "button",
29848
- * "label": {
29849
- * "value": "My Custom Control 1"
29850
- * },
29851
- * "key": "my-custom-control-1"
29852
- * }
29853
- * ]
29854
- * }
29855
- * ]
29856
- *
29857
- *
29858
- *
29859
- */
29860
- export interface ControlGroup1 {
29861
- controls: ButtonControl2[];
29862
- type: 'group' | 'GROUP';
29863
- [k: string]: unknown;
29864
- }
29865
- /**
29866
- *
29867
- *
29868
- * Defines a button which may appear in control extension points such as the property panel
29827
+ * Defines a text field which may appear in control extension points such as the property panel
29869
29828
  *
29870
29829
  * <p><b>Example</b></p>
29871
29830
  *
@@ -29884,40 +29843,61 @@ export interface ControlGroup1 {
29884
29843
  *
29885
29844
  *
29886
29845
  */
29887
- export interface ButtonControl2 {
29888
- label: I18NProperty84;
29889
- type: 'button' | 'BUTTON';
29846
+ export interface TextControl1 {
29847
+ macroParameter: string;
29848
+ type: 'text' | 'TEXT';
29890
29849
  key: string;
29891
29850
  [k: string]: unknown;
29892
29851
  }
29893
29852
  /**
29894
29853
  *
29895
29854
  *
29896
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
29897
- * and value in multiple places if you like, but identical keys must have identical values.
29855
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
29898
29856
  *
29899
- * <h3>Example</h3>
29857
+ * <p><b>Example</b></p>
29900
29858
  *
29901
29859
  *
29902
29860
  *
29903
29861
  *
29904
29862
  *
29905
- * {
29906
- * "value": "My text"
29907
- * }
29863
+ * [
29864
+ * {
29865
+ * "type": "togglegroup",
29866
+ * "macroParameter": "toggleGroupMacroParameter",
29867
+ * "controls": [
29868
+ * {
29869
+ * "type": "togglebutton",
29870
+ * "macroParameterValue": "macroParameterValue 0",
29871
+ * "label": {
29872
+ * "value": "My Custom Control 0"
29873
+ * },
29874
+ * "key": "my-custom-toggle-button-0"
29875
+ * },
29876
+ * {
29877
+ * "type": "togglebutton",
29878
+ * "macroParameterValue": "macroParameterValue 1",
29879
+ * "label": {
29880
+ * "value": "My Custom Control 1"
29881
+ * },
29882
+ * "key": "my-custom-toggle-button-1"
29883
+ * }
29884
+ * ]
29885
+ * }
29886
+ * ]
29908
29887
  *
29909
29888
  *
29910
29889
  *
29911
29890
  */
29912
- export interface I18NProperty84 {
29913
- value: string;
29914
- i18n?: string;
29891
+ export interface ToggleGroup1 {
29892
+ controls: ToggleButtonControl1[];
29893
+ macroParameter: string;
29894
+ type: 'togglegroup' | 'TOGGLEGROUP';
29915
29895
  [k: string]: unknown;
29916
29896
  }
29917
29897
  /**
29918
29898
  *
29919
29899
  *
29920
- * Defines a button which may appear in control extension points such as the property panel
29900
+ * Defines a toggle button which appears inside a ToggleGroup
29921
29901
  *
29922
29902
  * <p><b>Example</b></p>
29923
29903
  *
@@ -29926,19 +29906,21 @@ export interface I18NProperty84 {
29926
29906
  *
29927
29907
  *
29928
29908
  * {
29929
- * "type": "button",
29909
+ * "type": "togglebutton",
29910
+ * "macroParameterValue": "macroParameterValue 0",
29930
29911
  * "label": {
29931
29912
  * "value": "My Custom Control 0"
29932
29913
  * },
29933
- * "key": "my-custom-control-0"
29914
+ * "key": "my-custom-toggle-button-0"
29934
29915
  * }
29935
29916
  *
29936
29917
  *
29937
29918
  *
29938
29919
  */
29939
- export interface ButtonControl3 {
29940
- label: I18NProperty85;
29941
- type: 'button' | 'BUTTON';
29920
+ export interface ToggleButtonControl1 {
29921
+ macroParameterValue: string;
29922
+ label: I18NProperty84;
29923
+ type: 'togglebutton' | 'TOGGLEBUTTON';
29942
29924
  key: string;
29943
29925
  [k: string]: unknown;
29944
29926
  }
@@ -29961,7 +29943,7 @@ export interface ButtonControl3 {
29961
29943
  *
29962
29944
  *
29963
29945
  */
29964
- export interface I18NProperty85 {
29946
+ export interface I18NProperty84 {
29965
29947
  value: string;
29966
29948
  i18n?: string;
29967
29949
  [k: string]: unknown;
@@ -29969,7 +29951,7 @@ export interface I18NProperty85 {
29969
29951
  /**
29970
29952
  *
29971
29953
  *
29972
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
29954
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
29973
29955
  *
29974
29956
  * <p><b>Example</b></p>
29975
29957
  *
@@ -29979,24 +29961,21 @@ export interface I18NProperty85 {
29979
29961
  *
29980
29962
  * [
29981
29963
  * {
29982
- * "type": "togglegroup",
29983
- * "macroParameter": "toggleGroupMacroParameter",
29964
+ * "type": "group",
29984
29965
  * "controls": [
29985
29966
  * {
29986
- * "type": "togglebutton",
29987
- * "macroParameterValue": "macroParameterValue 0",
29967
+ * "type": "button",
29988
29968
  * "label": {
29989
29969
  * "value": "My Custom Control 0"
29990
29970
  * },
29991
- * "key": "my-custom-toggle-button-0"
29971
+ * "key": "my-custom-control-0"
29992
29972
  * },
29993
29973
  * {
29994
- * "type": "togglebutton",
29995
- * "macroParameterValue": "macroParameterValue 1",
29974
+ * "type": "button",
29996
29975
  * "label": {
29997
29976
  * "value": "My Custom Control 1"
29998
29977
  * },
29999
- * "key": "my-custom-toggle-button-1"
29978
+ * "key": "my-custom-control-1"
30000
29979
  * }
30001
29980
  * ]
30002
29981
  * }
@@ -30005,16 +29984,15 @@ export interface I18NProperty85 {
30005
29984
  *
30006
29985
  *
30007
29986
  */
30008
- export interface ToggleGroup1 {
30009
- controls: ToggleButtonControl1[];
30010
- macroParameter: string;
30011
- type: 'togglegroup' | 'TOGGLEGROUP';
29987
+ export interface ControlGroup1 {
29988
+ controls: ButtonControl2[];
29989
+ type: 'group' | 'GROUP';
30012
29990
  [k: string]: unknown;
30013
29991
  }
30014
29992
  /**
30015
29993
  *
30016
29994
  *
30017
- * Defines a toggle button which appears inside a ToggleGroup
29995
+ * Defines a button which may appear in control extension points such as the property panel
30018
29996
  *
30019
29997
  * <p><b>Example</b></p>
30020
29998
  *
@@ -30023,21 +30001,19 @@ export interface ToggleGroup1 {
30023
30001
  *
30024
30002
  *
30025
30003
  * {
30026
- * "type": "togglebutton",
30027
- * "macroParameterValue": "macroParameterValue 0",
30004
+ * "type": "button",
30028
30005
  * "label": {
30029
30006
  * "value": "My Custom Control 0"
30030
30007
  * },
30031
- * "key": "my-custom-toggle-button-0"
30008
+ * "key": "my-custom-control-0"
30032
30009
  * }
30033
30010
  *
30034
30011
  *
30035
30012
  *
30036
30013
  */
30037
- export interface ToggleButtonControl1 {
30038
- macroParameterValue: string;
30039
- label: I18NProperty86;
30040
- type: 'togglebutton' | 'TOGGLEBUTTON';
30014
+ export interface ButtonControl2 {
30015
+ label: I18NProperty85;
30016
+ type: 'button' | 'BUTTON';
30041
30017
  key: string;
30042
30018
  [k: string]: unknown;
30043
30019
  }
@@ -30060,7 +30036,7 @@ export interface ToggleButtonControl1 {
30060
30036
  *
30061
30037
  *
30062
30038
  */
30063
- export interface I18NProperty86 {
30039
+ export interface I18NProperty85 {
30064
30040
  value: string;
30065
30041
  i18n?: string;
30066
30042
  [k: string]: unknown;
@@ -30068,7 +30044,7 @@ export interface I18NProperty86 {
30068
30044
  /**
30069
30045
  *
30070
30046
  *
30071
- * Defines a text field which may appear in control extension points such as the property panel
30047
+ * Defines a button which may appear in control extension points such as the property panel
30072
30048
  *
30073
30049
  * <p><b>Example</b></p>
30074
30050
  *
@@ -30087,12 +30063,36 @@ export interface I18NProperty86 {
30087
30063
  *
30088
30064
  *
30089
30065
  */
30090
- export interface TextControl1 {
30091
- macroParameter: string;
30092
- type: 'text' | 'TEXT';
30066
+ export interface ButtonControl3 {
30067
+ label: I18NProperty86;
30068
+ type: 'button' | 'BUTTON';
30093
30069
  key: string;
30094
30070
  [k: string]: unknown;
30095
30071
  }
30072
+ /**
30073
+ *
30074
+ *
30075
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
30076
+ * and value in multiple places if you like, but identical keys must have identical values.
30077
+ *
30078
+ * <h3>Example</h3>
30079
+ *
30080
+ *
30081
+ *
30082
+ *
30083
+ *
30084
+ * {
30085
+ * "value": "My text"
30086
+ * }
30087
+ *
30088
+ *
30089
+ *
30090
+ */
30091
+ export interface I18NProperty86 {
30092
+ value: string;
30093
+ i18n?: string;
30094
+ [k: string]: unknown;
30095
+ }
30096
30096
  /**
30097
30097
  *
30098
30098
  *
@@ -50942,47 +50942,10 @@ export interface I18NProperty91 {
50942
50942
  *
50943
50943
  */
50944
50944
  export interface WebItemTarget2 {
50945
- options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
50945
+ options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
50946
50946
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
50947
50947
  [k: string]: unknown;
50948
50948
  }
50949
- /**
50950
- *
50951
- *
50952
- * Options for an inline dialog target
50953
- *
50954
- * <h3>Example</h3>
50955
- *
50956
- *
50957
- *
50958
- *
50959
- *
50960
- * {
50961
- * "target": {
50962
- * "type": "inlinedialog",
50963
- * "options": {
50964
- * "onHover": true,
50965
- * "offsetX": "30px",
50966
- * "offsetY": "20px"
50967
- * }
50968
- * }
50969
- * }
50970
- *
50971
- *
50972
- *
50973
- */
50974
- export interface InlineDialogOptions2 {
50975
- offsetX?: string;
50976
- offsetY?: string;
50977
- width?: string;
50978
- onTop?: boolean;
50979
- showDelay?: number;
50980
- closeOthers?: boolean;
50981
- persistent?: boolean;
50982
- onHover?: boolean;
50983
- isRelativeToMouse?: boolean;
50984
- [k: string]: unknown;
50985
- }
50986
50949
  /**
50987
50950
  *
50988
50951
  *
@@ -51108,6 +51071,43 @@ export interface DialogModuleOptions2 {
51108
51071
  key: string;
51109
51072
  [k: string]: unknown;
51110
51073
  }
51074
+ /**
51075
+ *
51076
+ *
51077
+ * Options for an inline dialog target
51078
+ *
51079
+ * <h3>Example</h3>
51080
+ *
51081
+ *
51082
+ *
51083
+ *
51084
+ *
51085
+ * {
51086
+ * "target": {
51087
+ * "type": "inlinedialog",
51088
+ * "options": {
51089
+ * "onHover": true,
51090
+ * "offsetX": "30px",
51091
+ * "offsetY": "20px"
51092
+ * }
51093
+ * }
51094
+ * }
51095
+ *
51096
+ *
51097
+ *
51098
+ */
51099
+ export interface InlineDialogOptions2 {
51100
+ offsetX?: string;
51101
+ offsetY?: string;
51102
+ width?: string;
51103
+ onTop?: boolean;
51104
+ showDelay?: number;
51105
+ closeOthers?: boolean;
51106
+ persistent?: boolean;
51107
+ onHover?: boolean;
51108
+ isRelativeToMouse?: boolean;
51109
+ [k: string]: unknown;
51110
+ }
51111
51111
  /**
51112
51112
  *
51113
51113
  *