@forge/manifest 3.1.0-next.6 → 3.1.0
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.
- package/CHANGELOG.md +44 -0
- package/out/mapping/product-event-to-scope-mapping.json +0 -11
- package/out/schema/manifest-schema.json +251 -251
- package/out/schema/manifest.d.ts +246 -246
- package/package.json +3 -3
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3069,7 +3069,7 @@ export interface Modules {
|
|
|
3069
3069
|
location?: string;
|
|
3070
3070
|
cacheable?: boolean;
|
|
3071
3071
|
supportsNative?: boolean;
|
|
3072
|
-
conditions?: (
|
|
3072
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
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?: (
|
|
3088
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3089
3089
|
params?: {
|
|
3090
3090
|
[k: string]: unknown;
|
|
3091
3091
|
};
|
|
@@ -3217,7 +3217,7 @@ export interface Modules {
|
|
|
3217
3217
|
name?: I18NProperty59;
|
|
3218
3218
|
location?: string;
|
|
3219
3219
|
cacheable?: boolean;
|
|
3220
|
-
conditions?: (
|
|
3220
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
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?: (
|
|
3238
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3239
3239
|
key: ModuleKeySchema;
|
|
3240
3240
|
[k: string]: unknown;
|
|
3241
3241
|
}[]
|
|
@@ -3313,7 +3313,7 @@ export interface Modules {
|
|
|
3313
3313
|
name?: I18NProperty63;
|
|
3314
3314
|
weight?: number;
|
|
3315
3315
|
location?: string;
|
|
3316
|
-
conditions?: (
|
|
3316
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
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?: (
|
|
3328
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
3329
3329
|
params?: {
|
|
3330
3330
|
[k: string]: unknown;
|
|
3331
3331
|
};
|
|
@@ -6464,10 +6464,37 @@ export interface Icon10 {
|
|
|
6464
6464
|
*
|
|
6465
6465
|
*/
|
|
6466
6466
|
export interface WebItemTarget1 {
|
|
6467
|
-
options?:
|
|
6467
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
6468
6468
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
6469
6469
|
[k: string]: unknown;
|
|
6470
6470
|
}
|
|
6471
|
+
/**
|
|
6472
|
+
*
|
|
6473
|
+
*
|
|
6474
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6475
|
+
*
|
|
6476
|
+
* <h3>Example</h3>
|
|
6477
|
+
*
|
|
6478
|
+
*
|
|
6479
|
+
*
|
|
6480
|
+
*
|
|
6481
|
+
*
|
|
6482
|
+
* {
|
|
6483
|
+
* "target": {
|
|
6484
|
+
* "type": "dialogmodule",
|
|
6485
|
+
* "options": {
|
|
6486
|
+
* "key": "dialog-module-key"
|
|
6487
|
+
* }
|
|
6488
|
+
* }
|
|
6489
|
+
* }
|
|
6490
|
+
*
|
|
6491
|
+
*
|
|
6492
|
+
*
|
|
6493
|
+
*/
|
|
6494
|
+
export interface DialogModuleOptions1 {
|
|
6495
|
+
key: string;
|
|
6496
|
+
[k: string]: unknown;
|
|
6497
|
+
}
|
|
6471
6498
|
/**
|
|
6472
6499
|
*
|
|
6473
6500
|
*
|
|
@@ -6606,7 +6633,8 @@ export interface InlineDialogOptions1 {
|
|
|
6606
6633
|
/**
|
|
6607
6634
|
*
|
|
6608
6635
|
*
|
|
6609
|
-
*
|
|
6636
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
6637
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
6610
6638
|
*
|
|
6611
6639
|
* <h3>Example</h3>
|
|
6612
6640
|
*
|
|
@@ -6615,26 +6643,22 @@ export interface InlineDialogOptions1 {
|
|
|
6615
6643
|
*
|
|
6616
6644
|
*
|
|
6617
6645
|
* {
|
|
6618
|
-
* "
|
|
6619
|
-
* "type": "dialogmodule",
|
|
6620
|
-
* "options": {
|
|
6621
|
-
* "key": "dialog-module-key"
|
|
6622
|
-
* }
|
|
6623
|
-
* }
|
|
6646
|
+
* "value": "My text"
|
|
6624
6647
|
* }
|
|
6625
6648
|
*
|
|
6626
6649
|
*
|
|
6627
6650
|
*
|
|
6628
6651
|
*/
|
|
6629
|
-
export interface
|
|
6630
|
-
|
|
6652
|
+
export interface I18NProperty59 {
|
|
6653
|
+
value: string;
|
|
6654
|
+
i18n?: string;
|
|
6631
6655
|
[k: string]: unknown;
|
|
6632
6656
|
}
|
|
6633
6657
|
/**
|
|
6634
6658
|
*
|
|
6635
6659
|
*
|
|
6636
|
-
*
|
|
6637
|
-
* and
|
|
6660
|
+
* Composite Conditions are composed of a collection of [Single Condition](../single-condition/) / Composite Conditions
|
|
6661
|
+
* and a type attribute.
|
|
6638
6662
|
*
|
|
6639
6663
|
* <h3>Example</h3>
|
|
6640
6664
|
*
|
|
@@ -6643,15 +6667,32 @@ export interface DialogModuleOptions1 {
|
|
|
6643
6667
|
*
|
|
6644
6668
|
*
|
|
6645
6669
|
* {
|
|
6646
|
-
* "
|
|
6670
|
+
* "conditions": [
|
|
6671
|
+
* {
|
|
6672
|
+
* "or": [
|
|
6673
|
+
* {
|
|
6674
|
+
* "condition": "can_attach_file_to_issue",
|
|
6675
|
+
* "invert": false
|
|
6676
|
+
* },
|
|
6677
|
+
* {
|
|
6678
|
+
* "condition": "is_issue_assigned_to_current_user",
|
|
6679
|
+
* "invert": false
|
|
6680
|
+
* }
|
|
6681
|
+
* ]
|
|
6682
|
+
* },
|
|
6683
|
+
* {
|
|
6684
|
+
* "condition": "user_is_logged_in",
|
|
6685
|
+
* "invert": false
|
|
6686
|
+
* }
|
|
6687
|
+
* ]
|
|
6647
6688
|
* }
|
|
6648
6689
|
*
|
|
6649
6690
|
*
|
|
6650
6691
|
*
|
|
6651
6692
|
*/
|
|
6652
|
-
export interface
|
|
6653
|
-
|
|
6654
|
-
|
|
6693
|
+
export interface CompositeCondition6 {
|
|
6694
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6695
|
+
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6655
6696
|
[k: string]: unknown;
|
|
6656
6697
|
}
|
|
6657
6698
|
/**
|
|
@@ -6685,47 +6726,6 @@ export interface SingleCondition4 {
|
|
|
6685
6726
|
};
|
|
6686
6727
|
[k: string]: unknown;
|
|
6687
6728
|
}
|
|
6688
|
-
/**
|
|
6689
|
-
*
|
|
6690
|
-
*
|
|
6691
|
-
* Composite Conditions are composed of a collection of [Single Condition](../single-condition/) / Composite Conditions
|
|
6692
|
-
* and a type attribute.
|
|
6693
|
-
*
|
|
6694
|
-
* <h3>Example</h3>
|
|
6695
|
-
*
|
|
6696
|
-
*
|
|
6697
|
-
*
|
|
6698
|
-
*
|
|
6699
|
-
*
|
|
6700
|
-
* {
|
|
6701
|
-
* "conditions": [
|
|
6702
|
-
* {
|
|
6703
|
-
* "or": [
|
|
6704
|
-
* {
|
|
6705
|
-
* "condition": "can_attach_file_to_issue",
|
|
6706
|
-
* "invert": false
|
|
6707
|
-
* },
|
|
6708
|
-
* {
|
|
6709
|
-
* "condition": "is_issue_assigned_to_current_user",
|
|
6710
|
-
* "invert": false
|
|
6711
|
-
* }
|
|
6712
|
-
* ]
|
|
6713
|
-
* },
|
|
6714
|
-
* {
|
|
6715
|
-
* "condition": "user_is_logged_in",
|
|
6716
|
-
* "invert": false
|
|
6717
|
-
* }
|
|
6718
|
-
* ]
|
|
6719
|
-
* }
|
|
6720
|
-
*
|
|
6721
|
-
*
|
|
6722
|
-
*
|
|
6723
|
-
*/
|
|
6724
|
-
export interface CompositeCondition6 {
|
|
6725
|
-
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6726
|
-
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6727
|
-
[k: string]: unknown;
|
|
6728
|
-
}
|
|
6729
6729
|
/**
|
|
6730
6730
|
*
|
|
6731
6731
|
*
|
|
@@ -7080,6 +7080,37 @@ 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
|
+
}
|
|
7083
7114
|
/**
|
|
7084
7115
|
*
|
|
7085
7116
|
*
|
|
@@ -7121,37 +7152,6 @@ export interface CompositeCondition7 {
|
|
|
7121
7152
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7122
7153
|
[k: string]: unknown;
|
|
7123
7154
|
}
|
|
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,11 +8571,52 @@ export interface I18NProperty74 {
|
|
|
8571
8571
|
*
|
|
8572
8572
|
*/
|
|
8573
8573
|
export interface MacroPropertyPanel {
|
|
8574
|
-
controls?: (
|
|
8574
|
+
controls?: (ControlGroup | ButtonControl1 | TextControl | ToggleGroup)[];
|
|
8575
8575
|
cacheable?: boolean;
|
|
8576
8576
|
url: string;
|
|
8577
8577
|
[k: string]: unknown;
|
|
8578
8578
|
}
|
|
8579
|
+
/**
|
|
8580
|
+
*
|
|
8581
|
+
*
|
|
8582
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8583
|
+
*
|
|
8584
|
+
* <p><b>Example</b></p>
|
|
8585
|
+
*
|
|
8586
|
+
*
|
|
8587
|
+
*
|
|
8588
|
+
*
|
|
8589
|
+
*
|
|
8590
|
+
* [
|
|
8591
|
+
* {
|
|
8592
|
+
* "type": "group",
|
|
8593
|
+
* "controls": [
|
|
8594
|
+
* {
|
|
8595
|
+
* "type": "button",
|
|
8596
|
+
* "label": {
|
|
8597
|
+
* "value": "My Custom Control 0"
|
|
8598
|
+
* },
|
|
8599
|
+
* "key": "my-custom-control-0"
|
|
8600
|
+
* },
|
|
8601
|
+
* {
|
|
8602
|
+
* "type": "button",
|
|
8603
|
+
* "label": {
|
|
8604
|
+
* "value": "My Custom Control 1"
|
|
8605
|
+
* },
|
|
8606
|
+
* "key": "my-custom-control-1"
|
|
8607
|
+
* }
|
|
8608
|
+
* ]
|
|
8609
|
+
* }
|
|
8610
|
+
* ]
|
|
8611
|
+
*
|
|
8612
|
+
*
|
|
8613
|
+
*
|
|
8614
|
+
*/
|
|
8615
|
+
export interface ControlGroup {
|
|
8616
|
+
controls: ButtonControl[];
|
|
8617
|
+
type: 'group' | 'GROUP';
|
|
8618
|
+
[k: string]: unknown;
|
|
8619
|
+
}
|
|
8579
8620
|
/**
|
|
8580
8621
|
*
|
|
8581
8622
|
*
|
|
@@ -8628,47 +8669,6 @@ export interface I18NProperty75 {
|
|
|
8628
8669
|
i18n?: string;
|
|
8629
8670
|
[k: string]: unknown;
|
|
8630
8671
|
}
|
|
8631
|
-
/**
|
|
8632
|
-
*
|
|
8633
|
-
*
|
|
8634
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8635
|
-
*
|
|
8636
|
-
* <p><b>Example</b></p>
|
|
8637
|
-
*
|
|
8638
|
-
*
|
|
8639
|
-
*
|
|
8640
|
-
*
|
|
8641
|
-
*
|
|
8642
|
-
* [
|
|
8643
|
-
* {
|
|
8644
|
-
* "type": "group",
|
|
8645
|
-
* "controls": [
|
|
8646
|
-
* {
|
|
8647
|
-
* "type": "button",
|
|
8648
|
-
* "label": {
|
|
8649
|
-
* "value": "My Custom Control 0"
|
|
8650
|
-
* },
|
|
8651
|
-
* "key": "my-custom-control-0"
|
|
8652
|
-
* },
|
|
8653
|
-
* {
|
|
8654
|
-
* "type": "button",
|
|
8655
|
-
* "label": {
|
|
8656
|
-
* "value": "My Custom Control 1"
|
|
8657
|
-
* },
|
|
8658
|
-
* "key": "my-custom-control-1"
|
|
8659
|
-
* }
|
|
8660
|
-
* ]
|
|
8661
|
-
* }
|
|
8662
|
-
* ]
|
|
8663
|
-
*
|
|
8664
|
-
*
|
|
8665
|
-
*
|
|
8666
|
-
*/
|
|
8667
|
-
export interface ControlGroup {
|
|
8668
|
-
controls: ButtonControl1[];
|
|
8669
|
-
type: 'group' | 'GROUP';
|
|
8670
|
-
[k: string]: unknown;
|
|
8671
|
-
}
|
|
8672
8672
|
/**
|
|
8673
8673
|
*
|
|
8674
8674
|
*
|
|
@@ -8721,6 +8721,34 @@ export interface I18NProperty76 {
|
|
|
8721
8721
|
i18n?: string;
|
|
8722
8722
|
[k: string]: unknown;
|
|
8723
8723
|
}
|
|
8724
|
+
/**
|
|
8725
|
+
*
|
|
8726
|
+
*
|
|
8727
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8728
|
+
*
|
|
8729
|
+
* <p><b>Example</b></p>
|
|
8730
|
+
*
|
|
8731
|
+
*
|
|
8732
|
+
*
|
|
8733
|
+
*
|
|
8734
|
+
*
|
|
8735
|
+
* {
|
|
8736
|
+
* "type": "button",
|
|
8737
|
+
* "label": {
|
|
8738
|
+
* "value": "My Custom Control 0"
|
|
8739
|
+
* },
|
|
8740
|
+
* "key": "my-custom-control-0"
|
|
8741
|
+
* }
|
|
8742
|
+
*
|
|
8743
|
+
*
|
|
8744
|
+
*
|
|
8745
|
+
*/
|
|
8746
|
+
export interface TextControl {
|
|
8747
|
+
macroParameter: string;
|
|
8748
|
+
type: 'text' | 'TEXT';
|
|
8749
|
+
key: string;
|
|
8750
|
+
[k: string]: unknown;
|
|
8751
|
+
}
|
|
8724
8752
|
/**
|
|
8725
8753
|
*
|
|
8726
8754
|
*
|
|
@@ -8820,34 +8848,6 @@ export interface I18NProperty77 {
|
|
|
8820
8848
|
i18n?: string;
|
|
8821
8849
|
[k: string]: unknown;
|
|
8822
8850
|
}
|
|
8823
|
-
/**
|
|
8824
|
-
*
|
|
8825
|
-
*
|
|
8826
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
8827
|
-
*
|
|
8828
|
-
* <p><b>Example</b></p>
|
|
8829
|
-
*
|
|
8830
|
-
*
|
|
8831
|
-
*
|
|
8832
|
-
*
|
|
8833
|
-
*
|
|
8834
|
-
* {
|
|
8835
|
-
* "type": "button",
|
|
8836
|
-
* "label": {
|
|
8837
|
-
* "value": "My Custom Control 0"
|
|
8838
|
-
* },
|
|
8839
|
-
* "key": "my-custom-control-0"
|
|
8840
|
-
* }
|
|
8841
|
-
*
|
|
8842
|
-
*
|
|
8843
|
-
*
|
|
8844
|
-
*/
|
|
8845
|
-
export interface TextControl {
|
|
8846
|
-
macroParameter: string;
|
|
8847
|
-
type: 'text' | 'TEXT';
|
|
8848
|
-
key: string;
|
|
8849
|
-
[k: string]: unknown;
|
|
8850
|
-
}
|
|
8851
8851
|
/**
|
|
8852
8852
|
*
|
|
8853
8853
|
*
|
|
@@ -29816,7 +29816,7 @@ export interface I18NProperty83 {
|
|
|
29816
29816
|
*
|
|
29817
29817
|
*/
|
|
29818
29818
|
export interface MacroPropertyPanel1 {
|
|
29819
|
-
controls?: (
|
|
29819
|
+
controls?: (ToggleGroup1 | ControlGroup1 | TextControl1 | ButtonControl3)[];
|
|
29820
29820
|
cacheable?: boolean;
|
|
29821
29821
|
url: string;
|
|
29822
29822
|
[k: string]: unknown;
|
|
@@ -29824,7 +29824,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29824
29824
|
/**
|
|
29825
29825
|
*
|
|
29826
29826
|
*
|
|
29827
|
-
* Defines a
|
|
29827
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29828
29828
|
*
|
|
29829
29829
|
* <p><b>Example</b></p>
|
|
29830
29830
|
*
|
|
@@ -29832,27 +29832,44 @@ export interface MacroPropertyPanel1 {
|
|
|
29832
29832
|
*
|
|
29833
29833
|
*
|
|
29834
29834
|
*
|
|
29835
|
-
*
|
|
29836
|
-
*
|
|
29837
|
-
*
|
|
29838
|
-
* "
|
|
29839
|
-
*
|
|
29840
|
-
*
|
|
29841
|
-
*
|
|
29835
|
+
* [
|
|
29836
|
+
* {
|
|
29837
|
+
* "type": "togglegroup",
|
|
29838
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29839
|
+
* "controls": [
|
|
29840
|
+
* {
|
|
29841
|
+
* "type": "togglebutton",
|
|
29842
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29843
|
+
* "label": {
|
|
29844
|
+
* "value": "My Custom Control 0"
|
|
29845
|
+
* },
|
|
29846
|
+
* "key": "my-custom-toggle-button-0"
|
|
29847
|
+
* },
|
|
29848
|
+
* {
|
|
29849
|
+
* "type": "togglebutton",
|
|
29850
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29851
|
+
* "label": {
|
|
29852
|
+
* "value": "My Custom Control 1"
|
|
29853
|
+
* },
|
|
29854
|
+
* "key": "my-custom-toggle-button-1"
|
|
29855
|
+
* }
|
|
29856
|
+
* ]
|
|
29857
|
+
* }
|
|
29858
|
+
* ]
|
|
29842
29859
|
*
|
|
29843
29860
|
*
|
|
29844
29861
|
*
|
|
29845
29862
|
*/
|
|
29846
|
-
export interface
|
|
29863
|
+
export interface ToggleGroup1 {
|
|
29864
|
+
controls: ToggleButtonControl1[];
|
|
29847
29865
|
macroParameter: string;
|
|
29848
|
-
type: '
|
|
29849
|
-
key: string;
|
|
29866
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29850
29867
|
[k: string]: unknown;
|
|
29851
29868
|
}
|
|
29852
29869
|
/**
|
|
29853
29870
|
*
|
|
29854
29871
|
*
|
|
29855
|
-
* Defines a button which
|
|
29872
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29856
29873
|
*
|
|
29857
29874
|
* <p><b>Example</b></p>
|
|
29858
29875
|
*
|
|
@@ -29861,19 +29878,21 @@ export interface TextControl1 {
|
|
|
29861
29878
|
*
|
|
29862
29879
|
*
|
|
29863
29880
|
* {
|
|
29864
|
-
* "type": "
|
|
29881
|
+
* "type": "togglebutton",
|
|
29882
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29865
29883
|
* "label": {
|
|
29866
29884
|
* "value": "My Custom Control 0"
|
|
29867
29885
|
* },
|
|
29868
|
-
* "key": "my-custom-
|
|
29886
|
+
* "key": "my-custom-toggle-button-0"
|
|
29869
29887
|
* }
|
|
29870
29888
|
*
|
|
29871
29889
|
*
|
|
29872
29890
|
*
|
|
29873
29891
|
*/
|
|
29874
|
-
export interface
|
|
29892
|
+
export interface ToggleButtonControl1 {
|
|
29893
|
+
macroParameterValue: string;
|
|
29875
29894
|
label: I18NProperty84;
|
|
29876
|
-
type: '
|
|
29895
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29877
29896
|
key: string;
|
|
29878
29897
|
[k: string]: unknown;
|
|
29879
29898
|
}
|
|
@@ -29938,7 +29957,7 @@ export interface I18NProperty84 {
|
|
|
29938
29957
|
*
|
|
29939
29958
|
*/
|
|
29940
29959
|
export interface ControlGroup1 {
|
|
29941
|
-
controls:
|
|
29960
|
+
controls: ButtonControl2[];
|
|
29942
29961
|
type: 'group' | 'GROUP';
|
|
29943
29962
|
[k: string]: unknown;
|
|
29944
29963
|
}
|
|
@@ -29964,7 +29983,7 @@ export interface ControlGroup1 {
|
|
|
29964
29983
|
*
|
|
29965
29984
|
*
|
|
29966
29985
|
*/
|
|
29967
|
-
export interface
|
|
29986
|
+
export interface ButtonControl2 {
|
|
29968
29987
|
label: I18NProperty85;
|
|
29969
29988
|
type: 'button' | 'BUTTON';
|
|
29970
29989
|
key: string;
|
|
@@ -29997,7 +30016,7 @@ export interface I18NProperty85 {
|
|
|
29997
30016
|
/**
|
|
29998
30017
|
*
|
|
29999
30018
|
*
|
|
30000
|
-
* Defines a
|
|
30019
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30001
30020
|
*
|
|
30002
30021
|
* <p><b>Example</b></p>
|
|
30003
30022
|
*
|
|
@@ -30005,44 +30024,27 @@ export interface I18NProperty85 {
|
|
|
30005
30024
|
*
|
|
30006
30025
|
*
|
|
30007
30026
|
*
|
|
30008
|
-
*
|
|
30009
|
-
*
|
|
30010
|
-
*
|
|
30011
|
-
* "
|
|
30012
|
-
*
|
|
30013
|
-
*
|
|
30014
|
-
*
|
|
30015
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30016
|
-
* "label": {
|
|
30017
|
-
* "value": "My Custom Control 0"
|
|
30018
|
-
* },
|
|
30019
|
-
* "key": "my-custom-toggle-button-0"
|
|
30020
|
-
* },
|
|
30021
|
-
* {
|
|
30022
|
-
* "type": "togglebutton",
|
|
30023
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30024
|
-
* "label": {
|
|
30025
|
-
* "value": "My Custom Control 1"
|
|
30026
|
-
* },
|
|
30027
|
-
* "key": "my-custom-toggle-button-1"
|
|
30028
|
-
* }
|
|
30029
|
-
* ]
|
|
30030
|
-
* }
|
|
30031
|
-
* ]
|
|
30027
|
+
* {
|
|
30028
|
+
* "type": "button",
|
|
30029
|
+
* "label": {
|
|
30030
|
+
* "value": "My Custom Control 0"
|
|
30031
|
+
* },
|
|
30032
|
+
* "key": "my-custom-control-0"
|
|
30033
|
+
* }
|
|
30032
30034
|
*
|
|
30033
30035
|
*
|
|
30034
30036
|
*
|
|
30035
30037
|
*/
|
|
30036
|
-
export interface
|
|
30037
|
-
controls: ToggleButtonControl1[];
|
|
30038
|
+
export interface TextControl1 {
|
|
30038
30039
|
macroParameter: string;
|
|
30039
|
-
type: '
|
|
30040
|
+
type: 'text' | 'TEXT';
|
|
30041
|
+
key: string;
|
|
30040
30042
|
[k: string]: unknown;
|
|
30041
30043
|
}
|
|
30042
30044
|
/**
|
|
30043
30045
|
*
|
|
30044
30046
|
*
|
|
30045
|
-
* Defines a
|
|
30047
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30046
30048
|
*
|
|
30047
30049
|
* <p><b>Example</b></p>
|
|
30048
30050
|
*
|
|
@@ -30051,21 +30053,19 @@ export interface ToggleGroup1 {
|
|
|
30051
30053
|
*
|
|
30052
30054
|
*
|
|
30053
30055
|
* {
|
|
30054
|
-
* "type": "
|
|
30055
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30056
|
+
* "type": "button",
|
|
30056
30057
|
* "label": {
|
|
30057
30058
|
* "value": "My Custom Control 0"
|
|
30058
30059
|
* },
|
|
30059
|
-
* "key": "my-custom-
|
|
30060
|
+
* "key": "my-custom-control-0"
|
|
30060
30061
|
* }
|
|
30061
30062
|
*
|
|
30062
30063
|
*
|
|
30063
30064
|
*
|
|
30064
30065
|
*/
|
|
30065
|
-
export interface
|
|
30066
|
-
macroParameterValue: string;
|
|
30066
|
+
export interface ButtonControl3 {
|
|
30067
30067
|
label: I18NProperty86;
|
|
30068
|
-
type: '
|
|
30068
|
+
type: 'button' | 'BUTTON';
|
|
30069
30069
|
key: string;
|
|
30070
30070
|
[k: string]: unknown;
|
|
30071
30071
|
}
|
|
@@ -50942,10 +50942,37 @@ export interface I18NProperty91 {
|
|
|
50942
50942
|
*
|
|
50943
50943
|
*/
|
|
50944
50944
|
export interface WebItemTarget2 {
|
|
50945
|
-
options?:
|
|
50945
|
+
options?: DialogModuleOptions2 | DialogOptions4 | 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 a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50953
|
+
*
|
|
50954
|
+
* <h3>Example</h3>
|
|
50955
|
+
*
|
|
50956
|
+
*
|
|
50957
|
+
*
|
|
50958
|
+
*
|
|
50959
|
+
*
|
|
50960
|
+
* {
|
|
50961
|
+
* "target": {
|
|
50962
|
+
* "type": "dialogmodule",
|
|
50963
|
+
* "options": {
|
|
50964
|
+
* "key": "dialog-module-key"
|
|
50965
|
+
* }
|
|
50966
|
+
* }
|
|
50967
|
+
* }
|
|
50968
|
+
*
|
|
50969
|
+
*
|
|
50970
|
+
*
|
|
50971
|
+
*/
|
|
50972
|
+
export interface DialogModuleOptions2 {
|
|
50973
|
+
key: string;
|
|
50974
|
+
[k: string]: unknown;
|
|
50975
|
+
}
|
|
50949
50976
|
/**
|
|
50950
50977
|
*
|
|
50951
50978
|
*
|
|
@@ -51044,33 +51071,6 @@ export interface I18NProperty92 {
|
|
|
51044
51071
|
i18n?: string;
|
|
51045
51072
|
[k: string]: unknown;
|
|
51046
51073
|
}
|
|
51047
|
-
/**
|
|
51048
|
-
*
|
|
51049
|
-
*
|
|
51050
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51051
|
-
*
|
|
51052
|
-
* <h3>Example</h3>
|
|
51053
|
-
*
|
|
51054
|
-
*
|
|
51055
|
-
*
|
|
51056
|
-
*
|
|
51057
|
-
*
|
|
51058
|
-
* {
|
|
51059
|
-
* "target": {
|
|
51060
|
-
* "type": "dialogmodule",
|
|
51061
|
-
* "options": {
|
|
51062
|
-
* "key": "dialog-module-key"
|
|
51063
|
-
* }
|
|
51064
|
-
* }
|
|
51065
|
-
* }
|
|
51066
|
-
*
|
|
51067
|
-
*
|
|
51068
|
-
*
|
|
51069
|
-
*/
|
|
51070
|
-
export interface DialogModuleOptions2 {
|
|
51071
|
-
key: string;
|
|
51072
|
-
[k: string]: unknown;
|
|
51073
|
-
}
|
|
51074
51074
|
/**
|
|
51075
51075
|
*
|
|
51076
51076
|
*
|