@forge/manifest 2.6.0-next.5 → 2.6.0-next.9
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 +29 -0
- package/out/mapping/product-event-to-scope-mapping.json +14 -8
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +2 -0
- package/out/schema/manifest-schema.json +237 -237
- package/out/schema/manifest.d.ts +251 -251
- package/out/scopes/deprecated-shipyard-scopes.json +24 -0
- package/out/scopes/shipyard-scopes.json +47 -71
- package/out/text/errors.d.ts +1 -0
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +2 -1
- package/out/validators/deprecated-permissions-validator.d.ts +7 -0
- package/out/validators/deprecated-permissions-validator.d.ts.map +1 -0
- package/out/validators/deprecated-permissions-validator.js +31 -0
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +3 -1
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2511,7 +2511,7 @@ export interface Modules {
|
|
|
2511
2511
|
fullPage?: boolean;
|
|
2512
2512
|
cacheable?: boolean;
|
|
2513
2513
|
location?: string;
|
|
2514
|
-
conditions?: (
|
|
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?: (
|
|
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?: (
|
|
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?: (
|
|
2587
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2588
2588
|
propertyKeys?: string[];
|
|
2589
2589
|
url?: string;
|
|
2590
2590
|
key: ModuleKeySchema;
|
|
@@ -2598,7 +2598,7 @@ export interface Modules {
|
|
|
2598
2598
|
weight?: number;
|
|
2599
2599
|
cacheable?: boolean;
|
|
2600
2600
|
location?: string;
|
|
2601
|
-
conditions?: (
|
|
2601
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2602
2602
|
params?: {
|
|
2603
2603
|
[k: string]: unknown;
|
|
2604
2604
|
};
|
|
@@ -2612,7 +2612,7 @@ export interface Modules {
|
|
|
2612
2612
|
weight?: number;
|
|
2613
2613
|
cacheable?: boolean;
|
|
2614
2614
|
location?: string;
|
|
2615
|
-
conditions?: (
|
|
2615
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2616
2616
|
params?: {
|
|
2617
2617
|
[k: string]: unknown;
|
|
2618
2618
|
};
|
|
@@ -2654,7 +2654,7 @@ export interface Modules {
|
|
|
2654
2654
|
weight?: number;
|
|
2655
2655
|
cacheable?: boolean;
|
|
2656
2656
|
location?: string;
|
|
2657
|
-
conditions?: (
|
|
2657
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2658
2658
|
params?: {
|
|
2659
2659
|
[k: string]: unknown;
|
|
2660
2660
|
};
|
|
@@ -2668,7 +2668,7 @@ export interface Modules {
|
|
|
2668
2668
|
weight?: number;
|
|
2669
2669
|
cacheable?: boolean;
|
|
2670
2670
|
location?: string;
|
|
2671
|
-
conditions?: (
|
|
2671
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2672
2672
|
params?: {
|
|
2673
2673
|
[k: string]: unknown;
|
|
2674
2674
|
};
|
|
@@ -2723,7 +2723,7 @@ export interface Modules {
|
|
|
2723
2723
|
fullPage?: boolean;
|
|
2724
2724
|
cacheable?: boolean;
|
|
2725
2725
|
location?: string;
|
|
2726
|
-
conditions?: (
|
|
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?: (
|
|
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?: (
|
|
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?: (
|
|
2803
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
2804
2804
|
params?: {
|
|
2805
2805
|
[k: string]: unknown;
|
|
2806
2806
|
};
|
|
@@ -2996,7 +2996,7 @@ export interface Modules {
|
|
|
2996
2996
|
icon?: Icon18;
|
|
2997
2997
|
name?: I18NProperty91;
|
|
2998
2998
|
cacheable?: boolean;
|
|
2999
|
-
conditions?: (
|
|
2999
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3000
3000
|
params?: {
|
|
3001
3001
|
[k: string]: unknown;
|
|
3002
3002
|
};
|
|
@@ -3012,7 +3012,7 @@ export interface Modules {
|
|
|
3012
3012
|
icon?: Icon18;
|
|
3013
3013
|
name?: I18NProperty91;
|
|
3014
3014
|
cacheable?: boolean;
|
|
3015
|
-
conditions?: (
|
|
3015
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3016
3016
|
params?: {
|
|
3017
3017
|
[k: string]: unknown;
|
|
3018
3018
|
};
|
|
@@ -3262,7 +3262,7 @@ export interface SingleCondition {
|
|
|
3262
3262
|
*
|
|
3263
3263
|
*/
|
|
3264
3264
|
export interface CompositeCondition {
|
|
3265
|
-
conditions?: (
|
|
3265
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3266
3266
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3267
3267
|
[k: string]: unknown;
|
|
3268
3268
|
}
|
|
@@ -5939,10 +5939,47 @@ export interface Icon10 {
|
|
|
5939
5939
|
*
|
|
5940
5940
|
*/
|
|
5941
5941
|
export interface WebItemTarget1 {
|
|
5942
|
-
options?:
|
|
5942
|
+
options?: InlineDialogOptions1 | DialogModuleOptions1 | DialogOptions2;
|
|
5943
5943
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5944
5944
|
[k: string]: unknown;
|
|
5945
5945
|
}
|
|
5946
|
+
/**
|
|
5947
|
+
*
|
|
5948
|
+
*
|
|
5949
|
+
* Options for an inline dialog target
|
|
5950
|
+
*
|
|
5951
|
+
* <h3>Example</h3>
|
|
5952
|
+
*
|
|
5953
|
+
*
|
|
5954
|
+
*
|
|
5955
|
+
*
|
|
5956
|
+
*
|
|
5957
|
+
* {
|
|
5958
|
+
* "target": {
|
|
5959
|
+
* "type": "inlinedialog",
|
|
5960
|
+
* "options": {
|
|
5961
|
+
* "onHover": true,
|
|
5962
|
+
* "offsetX": "30px",
|
|
5963
|
+
* "offsetY": "20px"
|
|
5964
|
+
* }
|
|
5965
|
+
* }
|
|
5966
|
+
* }
|
|
5967
|
+
*
|
|
5968
|
+
*
|
|
5969
|
+
*
|
|
5970
|
+
*/
|
|
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;
|
|
5981
|
+
[k: string]: unknown;
|
|
5982
|
+
}
|
|
5946
5983
|
/**
|
|
5947
5984
|
*
|
|
5948
5985
|
*
|
|
@@ -6068,43 +6105,6 @@ export interface I18NProperty58 {
|
|
|
6068
6105
|
i18n?: string;
|
|
6069
6106
|
[k: string]: unknown;
|
|
6070
6107
|
}
|
|
6071
|
-
/**
|
|
6072
|
-
*
|
|
6073
|
-
*
|
|
6074
|
-
* Options for an inline dialog target
|
|
6075
|
-
*
|
|
6076
|
-
* <h3>Example</h3>
|
|
6077
|
-
*
|
|
6078
|
-
*
|
|
6079
|
-
*
|
|
6080
|
-
*
|
|
6081
|
-
*
|
|
6082
|
-
* {
|
|
6083
|
-
* "target": {
|
|
6084
|
-
* "type": "inlinedialog",
|
|
6085
|
-
* "options": {
|
|
6086
|
-
* "onHover": true,
|
|
6087
|
-
* "offsetX": "30px",
|
|
6088
|
-
* "offsetY": "20px"
|
|
6089
|
-
* }
|
|
6090
|
-
* }
|
|
6091
|
-
* }
|
|
6092
|
-
*
|
|
6093
|
-
*
|
|
6094
|
-
*
|
|
6095
|
-
*/
|
|
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;
|
|
6106
|
-
[k: string]: unknown;
|
|
6107
|
-
}
|
|
6108
6108
|
/**
|
|
6109
6109
|
*
|
|
6110
6110
|
*
|
|
@@ -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?: (
|
|
6595
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6627
6596
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6628
6597
|
[k: string]: unknown;
|
|
6629
6598
|
}
|
|
6599
|
+
/**
|
|
6600
|
+
*
|
|
6601
|
+
*
|
|
6602
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6603
|
+
* [Conditions](../../conditions/) for more information.
|
|
6604
|
+
*
|
|
6605
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6606
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6607
|
+
*
|
|
6608
|
+
* <h3>Example</h3>
|
|
6609
|
+
*
|
|
6610
|
+
*
|
|
6611
|
+
*
|
|
6612
|
+
*
|
|
6613
|
+
*
|
|
6614
|
+
* {
|
|
6615
|
+
* "condition": "user_is_logged_in",
|
|
6616
|
+
* "invert": false
|
|
6617
|
+
* }
|
|
6618
|
+
*
|
|
6619
|
+
*
|
|
6620
|
+
*
|
|
6621
|
+
*/
|
|
6622
|
+
export interface SingleCondition5 {
|
|
6623
|
+
condition: string;
|
|
6624
|
+
invert?: boolean;
|
|
6625
|
+
params?: {
|
|
6626
|
+
[k: string]: unknown;
|
|
6627
|
+
};
|
|
6628
|
+
[k: string]: unknown;
|
|
6629
|
+
}
|
|
6630
6630
|
/**
|
|
6631
6631
|
*
|
|
6632
6632
|
*
|
|
@@ -8046,7 +8046,7 @@ export interface I18NProperty74 {
|
|
|
8046
8046
|
*
|
|
8047
8047
|
*/
|
|
8048
8048
|
export interface MacroPropertyPanel {
|
|
8049
|
-
controls?: (
|
|
8049
|
+
controls?: (ToggleGroup | TextControl | ButtonControl | ControlGroup)[];
|
|
8050
8050
|
cacheable?: boolean;
|
|
8051
8051
|
url: string;
|
|
8052
8052
|
[k: string]: unknown;
|
|
@@ -8054,7 +8054,7 @@ export interface MacroPropertyPanel {
|
|
|
8054
8054
|
/**
|
|
8055
8055
|
*
|
|
8056
8056
|
*
|
|
8057
|
-
* Defines a
|
|
8057
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8058
8058
|
*
|
|
8059
8059
|
* <p><b>Example</b></p>
|
|
8060
8060
|
*
|
|
@@ -8064,21 +8064,24 @@ export interface MacroPropertyPanel {
|
|
|
8064
8064
|
*
|
|
8065
8065
|
* [
|
|
8066
8066
|
* {
|
|
8067
|
-
* "type": "
|
|
8067
|
+
* "type": "togglegroup",
|
|
8068
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8068
8069
|
* "controls": [
|
|
8069
8070
|
* {
|
|
8070
|
-
* "type": "
|
|
8071
|
+
* "type": "togglebutton",
|
|
8072
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8071
8073
|
* "label": {
|
|
8072
8074
|
* "value": "My Custom Control 0"
|
|
8073
8075
|
* },
|
|
8074
|
-
* "key": "my-custom-
|
|
8076
|
+
* "key": "my-custom-toggle-button-0"
|
|
8075
8077
|
* },
|
|
8076
8078
|
* {
|
|
8077
|
-
* "type": "
|
|
8079
|
+
* "type": "togglebutton",
|
|
8080
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8078
8081
|
* "label": {
|
|
8079
8082
|
* "value": "My Custom Control 1"
|
|
8080
8083
|
* },
|
|
8081
|
-
* "key": "my-custom-
|
|
8084
|
+
* "key": "my-custom-toggle-button-1"
|
|
8082
8085
|
* }
|
|
8083
8086
|
* ]
|
|
8084
8087
|
* }
|
|
@@ -8087,15 +8090,16 @@ export interface MacroPropertyPanel {
|
|
|
8087
8090
|
*
|
|
8088
8091
|
*
|
|
8089
8092
|
*/
|
|
8090
|
-
export interface
|
|
8091
|
-
controls:
|
|
8092
|
-
|
|
8093
|
+
export interface ToggleGroup {
|
|
8094
|
+
controls: ToggleButtonControl[];
|
|
8095
|
+
macroParameter: string;
|
|
8096
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8093
8097
|
[k: string]: unknown;
|
|
8094
8098
|
}
|
|
8095
8099
|
/**
|
|
8096
8100
|
*
|
|
8097
8101
|
*
|
|
8098
|
-
* Defines a button which
|
|
8102
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8099
8103
|
*
|
|
8100
8104
|
* <p><b>Example</b></p>
|
|
8101
8105
|
*
|
|
@@ -8104,19 +8108,21 @@ export interface ControlGroup {
|
|
|
8104
8108
|
*
|
|
8105
8109
|
*
|
|
8106
8110
|
* {
|
|
8107
|
-
* "type": "
|
|
8111
|
+
* "type": "togglebutton",
|
|
8112
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8108
8113
|
* "label": {
|
|
8109
8114
|
* "value": "My Custom Control 0"
|
|
8110
8115
|
* },
|
|
8111
|
-
* "key": "my-custom-
|
|
8116
|
+
* "key": "my-custom-toggle-button-0"
|
|
8112
8117
|
* }
|
|
8113
8118
|
*
|
|
8114
8119
|
*
|
|
8115
8120
|
*
|
|
8116
8121
|
*/
|
|
8117
|
-
export interface
|
|
8122
|
+
export interface ToggleButtonControl {
|
|
8123
|
+
macroParameterValue: string;
|
|
8118
8124
|
label: I18NProperty75;
|
|
8119
|
-
type: '
|
|
8125
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8120
8126
|
key: string;
|
|
8121
8127
|
[k: string]: unknown;
|
|
8122
8128
|
}
|
|
@@ -8147,7 +8153,7 @@ export interface I18NProperty75 {
|
|
|
8147
8153
|
/**
|
|
8148
8154
|
*
|
|
8149
8155
|
*
|
|
8150
|
-
* Defines a
|
|
8156
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8151
8157
|
*
|
|
8152
8158
|
* <p><b>Example</b></p>
|
|
8153
8159
|
*
|
|
@@ -8155,44 +8161,27 @@ export interface I18NProperty75 {
|
|
|
8155
8161
|
*
|
|
8156
8162
|
*
|
|
8157
8163
|
*
|
|
8158
|
-
*
|
|
8159
|
-
*
|
|
8160
|
-
*
|
|
8161
|
-
* "
|
|
8162
|
-
*
|
|
8163
|
-
*
|
|
8164
|
-
*
|
|
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
|
-
* ]
|
|
8164
|
+
* {
|
|
8165
|
+
* "type": "button",
|
|
8166
|
+
* "label": {
|
|
8167
|
+
* "value": "My Custom Control 0"
|
|
8168
|
+
* },
|
|
8169
|
+
* "key": "my-custom-control-0"
|
|
8170
|
+
* }
|
|
8182
8171
|
*
|
|
8183
8172
|
*
|
|
8184
8173
|
*
|
|
8185
8174
|
*/
|
|
8186
|
-
export interface
|
|
8187
|
-
controls: ToggleButtonControl[];
|
|
8175
|
+
export interface TextControl {
|
|
8188
8176
|
macroParameter: string;
|
|
8189
|
-
type: '
|
|
8177
|
+
type: 'text' | 'TEXT';
|
|
8178
|
+
key: string;
|
|
8190
8179
|
[k: string]: unknown;
|
|
8191
8180
|
}
|
|
8192
8181
|
/**
|
|
8193
8182
|
*
|
|
8194
8183
|
*
|
|
8195
|
-
* Defines a
|
|
8184
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8196
8185
|
*
|
|
8197
8186
|
* <p><b>Example</b></p>
|
|
8198
8187
|
*
|
|
@@ -8201,21 +8190,19 @@ export interface ToggleGroup {
|
|
|
8201
8190
|
*
|
|
8202
8191
|
*
|
|
8203
8192
|
* {
|
|
8204
|
-
* "type": "
|
|
8205
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8193
|
+
* "type": "button",
|
|
8206
8194
|
* "label": {
|
|
8207
8195
|
* "value": "My Custom Control 0"
|
|
8208
8196
|
* },
|
|
8209
|
-
* "key": "my-custom-
|
|
8197
|
+
* "key": "my-custom-control-0"
|
|
8210
8198
|
* }
|
|
8211
8199
|
*
|
|
8212
8200
|
*
|
|
8213
8201
|
*
|
|
8214
8202
|
*/
|
|
8215
|
-
export interface
|
|
8216
|
-
macroParameterValue: string;
|
|
8203
|
+
export interface ButtonControl {
|
|
8217
8204
|
label: I18NProperty76;
|
|
8218
|
-
type: '
|
|
8205
|
+
type: 'button' | 'BUTTON';
|
|
8219
8206
|
key: string;
|
|
8220
8207
|
[k: string]: unknown;
|
|
8221
8208
|
}
|
|
@@ -8246,7 +8233,7 @@ export interface I18NProperty76 {
|
|
|
8246
8233
|
/**
|
|
8247
8234
|
*
|
|
8248
8235
|
*
|
|
8249
|
-
* Defines a
|
|
8236
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8250
8237
|
*
|
|
8251
8238
|
* <p><b>Example</b></p>
|
|
8252
8239
|
*
|
|
@@ -8254,21 +8241,34 @@ export interface I18NProperty76 {
|
|
|
8254
8241
|
*
|
|
8255
8242
|
*
|
|
8256
8243
|
*
|
|
8257
|
-
*
|
|
8258
|
-
*
|
|
8259
|
-
*
|
|
8260
|
-
* "
|
|
8261
|
-
*
|
|
8262
|
-
*
|
|
8263
|
-
*
|
|
8244
|
+
* [
|
|
8245
|
+
* {
|
|
8246
|
+
* "type": "group",
|
|
8247
|
+
* "controls": [
|
|
8248
|
+
* {
|
|
8249
|
+
* "type": "button",
|
|
8250
|
+
* "label": {
|
|
8251
|
+
* "value": "My Custom Control 0"
|
|
8252
|
+
* },
|
|
8253
|
+
* "key": "my-custom-control-0"
|
|
8254
|
+
* },
|
|
8255
|
+
* {
|
|
8256
|
+
* "type": "button",
|
|
8257
|
+
* "label": {
|
|
8258
|
+
* "value": "My Custom Control 1"
|
|
8259
|
+
* },
|
|
8260
|
+
* "key": "my-custom-control-1"
|
|
8261
|
+
* }
|
|
8262
|
+
* ]
|
|
8263
|
+
* }
|
|
8264
|
+
* ]
|
|
8264
8265
|
*
|
|
8265
8266
|
*
|
|
8266
8267
|
*
|
|
8267
8268
|
*/
|
|
8268
|
-
export interface
|
|
8269
|
-
|
|
8270
|
-
type: '
|
|
8271
|
-
key: string;
|
|
8269
|
+
export interface ControlGroup {
|
|
8270
|
+
controls: ButtonControl1[];
|
|
8271
|
+
type: 'group' | 'GROUP';
|
|
8272
8272
|
[k: string]: unknown;
|
|
8273
8273
|
}
|
|
8274
8274
|
/**
|
|
@@ -29291,7 +29291,7 @@ export interface I18NProperty83 {
|
|
|
29291
29291
|
*
|
|
29292
29292
|
*/
|
|
29293
29293
|
export interface MacroPropertyPanel1 {
|
|
29294
|
-
controls?: (
|
|
29294
|
+
controls?: (TextControl1 | ButtonControl2 | ToggleGroup1 | ControlGroup1)[];
|
|
29295
29295
|
cacheable?: boolean;
|
|
29296
29296
|
url: string;
|
|
29297
29297
|
[k: string]: unknown;
|
|
@@ -29299,7 +29299,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29299
29299
|
/**
|
|
29300
29300
|
*
|
|
29301
29301
|
*
|
|
29302
|
-
* Defines a
|
|
29302
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29303
29303
|
*
|
|
29304
29304
|
* <p><b>Example</b></p>
|
|
29305
29305
|
*
|
|
@@ -29307,34 +29307,21 @@ export interface MacroPropertyPanel1 {
|
|
|
29307
29307
|
*
|
|
29308
29308
|
*
|
|
29309
29309
|
*
|
|
29310
|
-
*
|
|
29311
|
-
*
|
|
29312
|
-
*
|
|
29313
|
-
* "
|
|
29314
|
-
*
|
|
29315
|
-
*
|
|
29316
|
-
*
|
|
29317
|
-
* "value": "My Custom Control 0"
|
|
29318
|
-
* },
|
|
29319
|
-
* "key": "my-custom-control-0"
|
|
29320
|
-
* },
|
|
29321
|
-
* {
|
|
29322
|
-
* "type": "button",
|
|
29323
|
-
* "label": {
|
|
29324
|
-
* "value": "My Custom Control 1"
|
|
29325
|
-
* },
|
|
29326
|
-
* "key": "my-custom-control-1"
|
|
29327
|
-
* }
|
|
29328
|
-
* ]
|
|
29329
|
-
* }
|
|
29330
|
-
* ]
|
|
29310
|
+
* {
|
|
29311
|
+
* "type": "button",
|
|
29312
|
+
* "label": {
|
|
29313
|
+
* "value": "My Custom Control 0"
|
|
29314
|
+
* },
|
|
29315
|
+
* "key": "my-custom-control-0"
|
|
29316
|
+
* }
|
|
29331
29317
|
*
|
|
29332
29318
|
*
|
|
29333
29319
|
*
|
|
29334
29320
|
*/
|
|
29335
|
-
export interface
|
|
29336
|
-
|
|
29337
|
-
type: '
|
|
29321
|
+
export interface TextControl1 {
|
|
29322
|
+
macroParameter: string;
|
|
29323
|
+
type: 'text' | 'TEXT';
|
|
29324
|
+
key: string;
|
|
29338
29325
|
[k: string]: unknown;
|
|
29339
29326
|
}
|
|
29340
29327
|
/**
|
|
@@ -29392,7 +29379,7 @@ export interface I18NProperty84 {
|
|
|
29392
29379
|
/**
|
|
29393
29380
|
*
|
|
29394
29381
|
*
|
|
29395
|
-
* Defines a
|
|
29382
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29396
29383
|
*
|
|
29397
29384
|
* <p><b>Example</b></p>
|
|
29398
29385
|
*
|
|
@@ -29400,79 +29387,98 @@ export interface I18NProperty84 {
|
|
|
29400
29387
|
*
|
|
29401
29388
|
*
|
|
29402
29389
|
*
|
|
29403
|
-
*
|
|
29404
|
-
*
|
|
29405
|
-
*
|
|
29406
|
-
* "
|
|
29407
|
-
*
|
|
29408
|
-
*
|
|
29409
|
-
*
|
|
29390
|
+
* [
|
|
29391
|
+
* {
|
|
29392
|
+
* "type": "togglegroup",
|
|
29393
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29394
|
+
* "controls": [
|
|
29395
|
+
* {
|
|
29396
|
+
* "type": "togglebutton",
|
|
29397
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29398
|
+
* "label": {
|
|
29399
|
+
* "value": "My Custom Control 0"
|
|
29400
|
+
* },
|
|
29401
|
+
* "key": "my-custom-toggle-button-0"
|
|
29402
|
+
* },
|
|
29403
|
+
* {
|
|
29404
|
+
* "type": "togglebutton",
|
|
29405
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29406
|
+
* "label": {
|
|
29407
|
+
* "value": "My Custom Control 1"
|
|
29408
|
+
* },
|
|
29409
|
+
* "key": "my-custom-toggle-button-1"
|
|
29410
|
+
* }
|
|
29411
|
+
* ]
|
|
29412
|
+
* }
|
|
29413
|
+
* ]
|
|
29410
29414
|
*
|
|
29411
29415
|
*
|
|
29412
29416
|
*
|
|
29413
29417
|
*/
|
|
29414
|
-
export interface
|
|
29415
|
-
|
|
29416
|
-
|
|
29417
|
-
|
|
29418
|
+
export interface ToggleGroup1 {
|
|
29419
|
+
controls: ToggleButtonControl1[];
|
|
29420
|
+
macroParameter: string;
|
|
29421
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29418
29422
|
[k: string]: unknown;
|
|
29419
29423
|
}
|
|
29420
29424
|
/**
|
|
29421
29425
|
*
|
|
29422
29426
|
*
|
|
29423
|
-
*
|
|
29424
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29427
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29425
29428
|
*
|
|
29426
|
-
* <
|
|
29429
|
+
* <p><b>Example</b></p>
|
|
29427
29430
|
*
|
|
29428
29431
|
*
|
|
29429
29432
|
*
|
|
29430
29433
|
*
|
|
29431
29434
|
*
|
|
29432
29435
|
* {
|
|
29433
|
-
* "
|
|
29436
|
+
* "type": "togglebutton",
|
|
29437
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29438
|
+
* "label": {
|
|
29439
|
+
* "value": "My Custom Control 0"
|
|
29440
|
+
* },
|
|
29441
|
+
* "key": "my-custom-toggle-button-0"
|
|
29434
29442
|
* }
|
|
29435
29443
|
*
|
|
29436
29444
|
*
|
|
29437
29445
|
*
|
|
29438
29446
|
*/
|
|
29439
|
-
export interface
|
|
29440
|
-
|
|
29441
|
-
|
|
29447
|
+
export interface ToggleButtonControl1 {
|
|
29448
|
+
macroParameterValue: string;
|
|
29449
|
+
label: I18NProperty85;
|
|
29450
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29451
|
+
key: string;
|
|
29442
29452
|
[k: string]: unknown;
|
|
29443
29453
|
}
|
|
29444
29454
|
/**
|
|
29445
29455
|
*
|
|
29446
29456
|
*
|
|
29447
|
-
*
|
|
29457
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29458
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29448
29459
|
*
|
|
29449
|
-
* <
|
|
29460
|
+
* <h3>Example</h3>
|
|
29450
29461
|
*
|
|
29451
29462
|
*
|
|
29452
29463
|
*
|
|
29453
29464
|
*
|
|
29454
29465
|
*
|
|
29455
29466
|
* {
|
|
29456
|
-
* "
|
|
29457
|
-
* "label": {
|
|
29458
|
-
* "value": "My Custom Control 0"
|
|
29459
|
-
* },
|
|
29460
|
-
* "key": "my-custom-control-0"
|
|
29467
|
+
* "value": "My text"
|
|
29461
29468
|
* }
|
|
29462
29469
|
*
|
|
29463
29470
|
*
|
|
29464
29471
|
*
|
|
29465
29472
|
*/
|
|
29466
|
-
export interface
|
|
29467
|
-
|
|
29468
|
-
|
|
29469
|
-
key: string;
|
|
29473
|
+
export interface I18NProperty85 {
|
|
29474
|
+
value: string;
|
|
29475
|
+
i18n?: string;
|
|
29470
29476
|
[k: string]: unknown;
|
|
29471
29477
|
}
|
|
29472
29478
|
/**
|
|
29473
29479
|
*
|
|
29474
29480
|
*
|
|
29475
|
-
* Defines a
|
|
29481
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29476
29482
|
*
|
|
29477
29483
|
* <p><b>Example</b></p>
|
|
29478
29484
|
*
|
|
@@ -29482,24 +29488,21 @@ export interface TextControl1 {
|
|
|
29482
29488
|
*
|
|
29483
29489
|
* [
|
|
29484
29490
|
* {
|
|
29485
|
-
* "type": "
|
|
29486
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29491
|
+
* "type": "group",
|
|
29487
29492
|
* "controls": [
|
|
29488
29493
|
* {
|
|
29489
|
-
* "type": "
|
|
29490
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29494
|
+
* "type": "button",
|
|
29491
29495
|
* "label": {
|
|
29492
29496
|
* "value": "My Custom Control 0"
|
|
29493
29497
|
* },
|
|
29494
|
-
* "key": "my-custom-
|
|
29498
|
+
* "key": "my-custom-control-0"
|
|
29495
29499
|
* },
|
|
29496
29500
|
* {
|
|
29497
|
-
* "type": "
|
|
29498
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29501
|
+
* "type": "button",
|
|
29499
29502
|
* "label": {
|
|
29500
29503
|
* "value": "My Custom Control 1"
|
|
29501
29504
|
* },
|
|
29502
|
-
* "key": "my-custom-
|
|
29505
|
+
* "key": "my-custom-control-1"
|
|
29503
29506
|
* }
|
|
29504
29507
|
* ]
|
|
29505
29508
|
* }
|
|
@@ -29508,16 +29511,15 @@ export interface TextControl1 {
|
|
|
29508
29511
|
*
|
|
29509
29512
|
*
|
|
29510
29513
|
*/
|
|
29511
|
-
export interface
|
|
29512
|
-
controls:
|
|
29513
|
-
|
|
29514
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29514
|
+
export interface ControlGroup1 {
|
|
29515
|
+
controls: ButtonControl3[];
|
|
29516
|
+
type: 'group' | 'GROUP';
|
|
29515
29517
|
[k: string]: unknown;
|
|
29516
29518
|
}
|
|
29517
29519
|
/**
|
|
29518
29520
|
*
|
|
29519
29521
|
*
|
|
29520
|
-
* Defines a
|
|
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": "
|
|
29530
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29531
|
+
* "type": "button",
|
|
29531
29532
|
* "label": {
|
|
29532
29533
|
* "value": "My Custom Control 0"
|
|
29533
29534
|
* },
|
|
29534
|
-
* "key": "my-custom-
|
|
29535
|
+
* "key": "my-custom-control-0"
|
|
29535
29536
|
* }
|
|
29536
29537
|
*
|
|
29537
29538
|
*
|
|
29538
29539
|
*
|
|
29539
29540
|
*/
|
|
29540
|
-
export interface
|
|
29541
|
-
macroParameterValue: string;
|
|
29541
|
+
export interface ButtonControl3 {
|
|
29542
29542
|
label: I18NProperty86;
|
|
29543
|
-
type: '
|
|
29543
|
+
type: 'button' | 'BUTTON';
|
|
29544
29544
|
key: string;
|
|
29545
29545
|
[k: string]: unknown;
|
|
29546
29546
|
}
|
|
@@ -50417,7 +50417,7 @@ export interface I18NProperty91 {
|
|
|
50417
50417
|
*
|
|
50418
50418
|
*/
|
|
50419
50419
|
export interface WebItemTarget2 {
|
|
50420
|
-
options?: InlineDialogOptions2 |
|
|
50420
|
+
options?: InlineDialogOptions2 | DialogModuleOptions2 | DialogOptions4;
|
|
50421
50421
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50422
50422
|
[k: string]: unknown;
|
|
50423
50423
|
}
|
|
@@ -50458,6 +50458,33 @@ export interface InlineDialogOptions2 {
|
|
|
50458
50458
|
isRelativeToMouse?: boolean;
|
|
50459
50459
|
[k: string]: unknown;
|
|
50460
50460
|
}
|
|
50461
|
+
/**
|
|
50462
|
+
*
|
|
50463
|
+
*
|
|
50464
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50465
|
+
*
|
|
50466
|
+
* <h3>Example</h3>
|
|
50467
|
+
*
|
|
50468
|
+
*
|
|
50469
|
+
*
|
|
50470
|
+
*
|
|
50471
|
+
*
|
|
50472
|
+
* {
|
|
50473
|
+
* "target": {
|
|
50474
|
+
* "type": "dialogmodule",
|
|
50475
|
+
* "options": {
|
|
50476
|
+
* "key": "dialog-module-key"
|
|
50477
|
+
* }
|
|
50478
|
+
* }
|
|
50479
|
+
* }
|
|
50480
|
+
*
|
|
50481
|
+
*
|
|
50482
|
+
*
|
|
50483
|
+
*/
|
|
50484
|
+
export interface DialogModuleOptions2 {
|
|
50485
|
+
key: string;
|
|
50486
|
+
[k: string]: unknown;
|
|
50487
|
+
}
|
|
50461
50488
|
/**
|
|
50462
50489
|
*
|
|
50463
50490
|
*
|
|
@@ -50556,33 +50583,6 @@ export interface I18NProperty92 {
|
|
|
50556
50583
|
i18n?: string;
|
|
50557
50584
|
[k: string]: unknown;
|
|
50558
50585
|
}
|
|
50559
|
-
/**
|
|
50560
|
-
*
|
|
50561
|
-
*
|
|
50562
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50563
|
-
*
|
|
50564
|
-
* <h3>Example</h3>
|
|
50565
|
-
*
|
|
50566
|
-
*
|
|
50567
|
-
*
|
|
50568
|
-
*
|
|
50569
|
-
*
|
|
50570
|
-
* {
|
|
50571
|
-
* "target": {
|
|
50572
|
-
* "type": "dialogmodule",
|
|
50573
|
-
* "options": {
|
|
50574
|
-
* "key": "dialog-module-key"
|
|
50575
|
-
* }
|
|
50576
|
-
* }
|
|
50577
|
-
* }
|
|
50578
|
-
*
|
|
50579
|
-
*
|
|
50580
|
-
*
|
|
50581
|
-
*/
|
|
50582
|
-
export interface DialogModuleOptions2 {
|
|
50583
|
-
key: string;
|
|
50584
|
-
[k: string]: unknown;
|
|
50585
|
-
}
|
|
50586
50586
|
/**
|
|
50587
50587
|
*
|
|
50588
50588
|
*
|