@forge/manifest 2.5.1-next.0 → 2.5.1-next.4
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 +24 -0
- package/out/schema/manifest-schema.json +330 -265
- package/out/schema/manifest.d.ts +260 -220
- package/out/scopes/shipyard-scopes.json +2 -0
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -652,6 +652,10 @@ export interface Modules {
|
|
|
652
652
|
resource: string;
|
|
653
653
|
[k: string]: unknown;
|
|
654
654
|
};
|
|
655
|
+
value?: {
|
|
656
|
+
function: string;
|
|
657
|
+
[k: string]: unknown;
|
|
658
|
+
};
|
|
655
659
|
key: ModuleKeySchema;
|
|
656
660
|
[k: string]: unknown;
|
|
657
661
|
}
|
|
@@ -685,6 +689,10 @@ export interface Modules {
|
|
|
685
689
|
resource: string;
|
|
686
690
|
[k: string]: unknown;
|
|
687
691
|
};
|
|
692
|
+
value?: {
|
|
693
|
+
function: string;
|
|
694
|
+
[k: string]: unknown;
|
|
695
|
+
};
|
|
688
696
|
key: ModuleKeySchema;
|
|
689
697
|
[k: string]: unknown;
|
|
690
698
|
}
|
|
@@ -717,6 +725,10 @@ export interface Modules {
|
|
|
717
725
|
resource: string;
|
|
718
726
|
[k: string]: unknown;
|
|
719
727
|
};
|
|
728
|
+
value?: {
|
|
729
|
+
function: string;
|
|
730
|
+
[k: string]: unknown;
|
|
731
|
+
};
|
|
720
732
|
key: ModuleKeySchema;
|
|
721
733
|
[k: string]: unknown;
|
|
722
734
|
}
|
|
@@ -750,6 +762,10 @@ export interface Modules {
|
|
|
750
762
|
resource: string;
|
|
751
763
|
[k: string]: unknown;
|
|
752
764
|
};
|
|
765
|
+
value?: {
|
|
766
|
+
function: string;
|
|
767
|
+
[k: string]: unknown;
|
|
768
|
+
};
|
|
753
769
|
key: ModuleKeySchema;
|
|
754
770
|
[k: string]: unknown;
|
|
755
771
|
}
|
|
@@ -781,6 +797,10 @@ export interface Modules {
|
|
|
781
797
|
resource: string;
|
|
782
798
|
[k: string]: unknown;
|
|
783
799
|
};
|
|
800
|
+
value?: {
|
|
801
|
+
function: string;
|
|
802
|
+
[k: string]: unknown;
|
|
803
|
+
};
|
|
784
804
|
icon?: string;
|
|
785
805
|
resolver?: {
|
|
786
806
|
function: string;
|
|
@@ -826,6 +846,10 @@ export interface Modules {
|
|
|
826
846
|
resource: string;
|
|
827
847
|
[k: string]: unknown;
|
|
828
848
|
};
|
|
849
|
+
value?: {
|
|
850
|
+
function: string;
|
|
851
|
+
[k: string]: unknown;
|
|
852
|
+
};
|
|
829
853
|
icon?: string;
|
|
830
854
|
resolver?: {
|
|
831
855
|
function: string;
|
|
@@ -870,6 +894,10 @@ export interface Modules {
|
|
|
870
894
|
resource: string;
|
|
871
895
|
[k: string]: unknown;
|
|
872
896
|
};
|
|
897
|
+
value?: {
|
|
898
|
+
function: string;
|
|
899
|
+
[k: string]: unknown;
|
|
900
|
+
};
|
|
873
901
|
icon?: string;
|
|
874
902
|
resolver?: {
|
|
875
903
|
function: string;
|
|
@@ -915,6 +943,10 @@ export interface Modules {
|
|
|
915
943
|
resource: string;
|
|
916
944
|
[k: string]: unknown;
|
|
917
945
|
};
|
|
946
|
+
value?: {
|
|
947
|
+
function: string;
|
|
948
|
+
[k: string]: unknown;
|
|
949
|
+
};
|
|
918
950
|
icon?: string;
|
|
919
951
|
resolver?: {
|
|
920
952
|
function: string;
|
|
@@ -978,76 +1010,82 @@ export interface Modules {
|
|
|
978
1010
|
'jira:issueGlance'?: [
|
|
979
1011
|
(
|
|
980
1012
|
| {
|
|
1013
|
+
function: string;
|
|
981
1014
|
title: string;
|
|
982
1015
|
label: string;
|
|
983
1016
|
status?: {
|
|
1017
|
+
type: 'badge' | 'icon' | 'lozenge';
|
|
984
1018
|
value: {
|
|
985
1019
|
label: string;
|
|
1020
|
+
url?: string;
|
|
986
1021
|
type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
|
|
987
1022
|
[k: string]: unknown;
|
|
988
1023
|
};
|
|
989
|
-
type: 'badge' | 'lozenge';
|
|
990
1024
|
[k: string]: unknown;
|
|
991
1025
|
};
|
|
992
|
-
|
|
1026
|
+
icon?: string;
|
|
993
1027
|
key: ModuleKeySchema;
|
|
994
1028
|
[k: string]: unknown;
|
|
995
1029
|
}
|
|
996
1030
|
| {
|
|
1031
|
+
resource: string;
|
|
1032
|
+
resolver?: {
|
|
1033
|
+
function: string;
|
|
1034
|
+
};
|
|
997
1035
|
title: string;
|
|
998
1036
|
label: string;
|
|
999
1037
|
status?: {
|
|
1038
|
+
type: 'badge' | 'icon' | 'lozenge';
|
|
1000
1039
|
value: {
|
|
1001
1040
|
label: string;
|
|
1041
|
+
url?: string;
|
|
1002
1042
|
type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
|
|
1003
1043
|
[k: string]: unknown;
|
|
1004
1044
|
};
|
|
1005
|
-
type: 'badge' | 'lozenge';
|
|
1006
1045
|
[k: string]: unknown;
|
|
1007
1046
|
};
|
|
1008
|
-
|
|
1009
|
-
function: string;
|
|
1010
|
-
};
|
|
1011
|
-
resource: string;
|
|
1012
|
-
resourceUploadId?: string;
|
|
1047
|
+
icon?: string;
|
|
1013
1048
|
key: ModuleKeySchema;
|
|
1014
1049
|
[k: string]: unknown;
|
|
1015
1050
|
}
|
|
1016
1051
|
),
|
|
1017
1052
|
...(
|
|
1018
1053
|
| {
|
|
1054
|
+
function: string;
|
|
1019
1055
|
title: string;
|
|
1020
1056
|
label: string;
|
|
1021
1057
|
status?: {
|
|
1058
|
+
type: 'badge' | 'icon' | 'lozenge';
|
|
1022
1059
|
value: {
|
|
1023
1060
|
label: string;
|
|
1061
|
+
url?: string;
|
|
1024
1062
|
type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
|
|
1025
1063
|
[k: string]: unknown;
|
|
1026
1064
|
};
|
|
1027
|
-
type: 'badge' | 'lozenge';
|
|
1028
1065
|
[k: string]: unknown;
|
|
1029
1066
|
};
|
|
1030
|
-
|
|
1067
|
+
icon?: string;
|
|
1031
1068
|
key: ModuleKeySchema;
|
|
1032
1069
|
[k: string]: unknown;
|
|
1033
1070
|
}
|
|
1034
1071
|
| {
|
|
1072
|
+
resource: string;
|
|
1073
|
+
resolver?: {
|
|
1074
|
+
function: string;
|
|
1075
|
+
};
|
|
1035
1076
|
title: string;
|
|
1036
1077
|
label: string;
|
|
1037
1078
|
status?: {
|
|
1079
|
+
type: 'badge' | 'icon' | 'lozenge';
|
|
1038
1080
|
value: {
|
|
1039
1081
|
label: string;
|
|
1082
|
+
url?: string;
|
|
1040
1083
|
type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
|
|
1041
1084
|
[k: string]: unknown;
|
|
1042
1085
|
};
|
|
1043
|
-
type: 'badge' | 'lozenge';
|
|
1044
1086
|
[k: string]: unknown;
|
|
1045
1087
|
};
|
|
1046
|
-
|
|
1047
|
-
function: string;
|
|
1048
|
-
};
|
|
1049
|
-
resource: string;
|
|
1050
|
-
resourceUploadId?: string;
|
|
1088
|
+
icon?: string;
|
|
1051
1089
|
key: ModuleKeySchema;
|
|
1052
1090
|
[k: string]: unknown;
|
|
1053
1091
|
}
|
|
@@ -2506,7 +2544,7 @@ export interface Modules {
|
|
|
2506
2544
|
location?: string;
|
|
2507
2545
|
cacheable?: boolean;
|
|
2508
2546
|
supportsNative?: boolean;
|
|
2509
|
-
conditions?: (
|
|
2547
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2510
2548
|
params?: {
|
|
2511
2549
|
[k: string]: unknown;
|
|
2512
2550
|
};
|
|
@@ -2522,7 +2560,7 @@ export interface Modules {
|
|
|
2522
2560
|
location?: string;
|
|
2523
2561
|
cacheable?: boolean;
|
|
2524
2562
|
supportsNative?: boolean;
|
|
2525
|
-
conditions?: (
|
|
2563
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2526
2564
|
params?: {
|
|
2527
2565
|
[k: string]: unknown;
|
|
2528
2566
|
};
|
|
@@ -2536,7 +2574,7 @@ export interface Modules {
|
|
|
2536
2574
|
filter?: string;
|
|
2537
2575
|
excludeBody?: boolean;
|
|
2538
2576
|
event?: string;
|
|
2539
|
-
conditions?: (
|
|
2577
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2540
2578
|
propertyKeys?: string[];
|
|
2541
2579
|
url?: string;
|
|
2542
2580
|
key: ModuleKeySchema;
|
|
@@ -2546,7 +2584,7 @@ export interface Modules {
|
|
|
2546
2584
|
filter?: string;
|
|
2547
2585
|
excludeBody?: boolean;
|
|
2548
2586
|
event?: string;
|
|
2549
|
-
conditions?: (
|
|
2587
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2550
2588
|
propertyKeys?: string[];
|
|
2551
2589
|
url?: string;
|
|
2552
2590
|
key: ModuleKeySchema;
|
|
@@ -2589,7 +2627,7 @@ export interface Modules {
|
|
|
2589
2627
|
name?: I18NProperty55;
|
|
2590
2628
|
weight?: number;
|
|
2591
2629
|
location?: string;
|
|
2592
|
-
conditions?: (
|
|
2630
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2593
2631
|
params?: {
|
|
2594
2632
|
[k: string]: unknown;
|
|
2595
2633
|
};
|
|
@@ -2601,7 +2639,7 @@ export interface Modules {
|
|
|
2601
2639
|
name?: I18NProperty55;
|
|
2602
2640
|
weight?: number;
|
|
2603
2641
|
location?: string;
|
|
2604
|
-
conditions?: (
|
|
2642
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2605
2643
|
params?: {
|
|
2606
2644
|
[k: string]: unknown;
|
|
2607
2645
|
};
|
|
@@ -2958,7 +2996,7 @@ export interface Modules {
|
|
|
2958
2996
|
icon?: Icon18;
|
|
2959
2997
|
name?: I18NProperty91;
|
|
2960
2998
|
cacheable?: boolean;
|
|
2961
|
-
conditions?: (
|
|
2999
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2962
3000
|
params?: {
|
|
2963
3001
|
[k: string]: unknown;
|
|
2964
3002
|
};
|
|
@@ -2974,7 +3012,7 @@ export interface Modules {
|
|
|
2974
3012
|
icon?: Icon18;
|
|
2975
3013
|
name?: I18NProperty91;
|
|
2976
3014
|
cacheable?: boolean;
|
|
2977
|
-
conditions?: (
|
|
3015
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2978
3016
|
params?: {
|
|
2979
3017
|
[k: string]: unknown;
|
|
2980
3018
|
};
|
|
@@ -3013,6 +3051,7 @@ export interface Modules {
|
|
|
3013
3051
|
{
|
|
3014
3052
|
installed?: string;
|
|
3015
3053
|
disabled?: string;
|
|
3054
|
+
'dare-migration'?: string;
|
|
3016
3055
|
uninstalled?: string;
|
|
3017
3056
|
enabled?: string;
|
|
3018
3057
|
key: ModuleKeySchema;
|
|
@@ -3021,6 +3060,7 @@ export interface Modules {
|
|
|
3021
3060
|
...{
|
|
3022
3061
|
installed?: string;
|
|
3023
3062
|
disabled?: string;
|
|
3063
|
+
'dare-migration'?: string;
|
|
3024
3064
|
uninstalled?: string;
|
|
3025
3065
|
enabled?: string;
|
|
3026
3066
|
key: ModuleKeySchema;
|
|
@@ -3222,7 +3262,7 @@ export interface SingleCondition {
|
|
|
3222
3262
|
*
|
|
3223
3263
|
*/
|
|
3224
3264
|
export interface CompositeCondition {
|
|
3225
|
-
conditions?: (
|
|
3265
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
3226
3266
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3227
3267
|
[k: string]: unknown;
|
|
3228
3268
|
}
|
|
@@ -5899,10 +5939,37 @@ export interface Icon10 {
|
|
|
5899
5939
|
*
|
|
5900
5940
|
*/
|
|
5901
5941
|
export interface WebItemTarget1 {
|
|
5902
|
-
options?:
|
|
5942
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
5903
5943
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5904
5944
|
[k: string]: unknown;
|
|
5905
5945
|
}
|
|
5946
|
+
/**
|
|
5947
|
+
*
|
|
5948
|
+
*
|
|
5949
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5950
|
+
*
|
|
5951
|
+
* <h3>Example</h3>
|
|
5952
|
+
*
|
|
5953
|
+
*
|
|
5954
|
+
*
|
|
5955
|
+
*
|
|
5956
|
+
*
|
|
5957
|
+
* {
|
|
5958
|
+
* "target": {
|
|
5959
|
+
* "type": "dialogmodule",
|
|
5960
|
+
* "options": {
|
|
5961
|
+
* "key": "dialog-module-key"
|
|
5962
|
+
* }
|
|
5963
|
+
* }
|
|
5964
|
+
* }
|
|
5965
|
+
*
|
|
5966
|
+
*
|
|
5967
|
+
*
|
|
5968
|
+
*/
|
|
5969
|
+
export interface DialogModuleOptions1 {
|
|
5970
|
+
key: string;
|
|
5971
|
+
[k: string]: unknown;
|
|
5972
|
+
}
|
|
5906
5973
|
/**
|
|
5907
5974
|
*
|
|
5908
5975
|
*
|
|
@@ -6001,33 +6068,6 @@ export interface I18NProperty58 {
|
|
|
6001
6068
|
i18n?: string;
|
|
6002
6069
|
[k: string]: unknown;
|
|
6003
6070
|
}
|
|
6004
|
-
/**
|
|
6005
|
-
*
|
|
6006
|
-
*
|
|
6007
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6008
|
-
*
|
|
6009
|
-
* <h3>Example</h3>
|
|
6010
|
-
*
|
|
6011
|
-
*
|
|
6012
|
-
*
|
|
6013
|
-
*
|
|
6014
|
-
*
|
|
6015
|
-
* {
|
|
6016
|
-
* "target": {
|
|
6017
|
-
* "type": "dialogmodule",
|
|
6018
|
-
* "options": {
|
|
6019
|
-
* "key": "dialog-module-key"
|
|
6020
|
-
* }
|
|
6021
|
-
* }
|
|
6022
|
-
* }
|
|
6023
|
-
*
|
|
6024
|
-
*
|
|
6025
|
-
*
|
|
6026
|
-
*/
|
|
6027
|
-
export interface DialogModuleOptions1 {
|
|
6028
|
-
key: string;
|
|
6029
|
-
[k: string]: unknown;
|
|
6030
|
-
}
|
|
6031
6071
|
/**
|
|
6032
6072
|
*
|
|
6033
6073
|
*
|
|
@@ -6583,7 +6623,7 @@ export interface SingleCondition5 {
|
|
|
6583
6623
|
*
|
|
6584
6624
|
*/
|
|
6585
6625
|
export interface CompositeCondition7 {
|
|
6586
|
-
conditions?: (
|
|
6626
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6587
6627
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6588
6628
|
[k: string]: unknown;
|
|
6589
6629
|
}
|
|
@@ -8006,39 +8046,11 @@ export interface I18NProperty74 {
|
|
|
8006
8046
|
*
|
|
8007
8047
|
*/
|
|
8008
8048
|
export interface MacroPropertyPanel {
|
|
8009
|
-
controls?: (
|
|
8049
|
+
controls?: (ControlGroup | ToggleGroup | TextControl | ButtonControl1)[];
|
|
8010
8050
|
cacheable?: boolean;
|
|
8011
8051
|
url: string;
|
|
8012
8052
|
[k: string]: unknown;
|
|
8013
8053
|
}
|
|
8014
|
-
/**
|
|
8015
|
-
*
|
|
8016
|
-
*
|
|
8017
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
8018
|
-
*
|
|
8019
|
-
* <p><b>Example</b></p>
|
|
8020
|
-
*
|
|
8021
|
-
*
|
|
8022
|
-
*
|
|
8023
|
-
*
|
|
8024
|
-
*
|
|
8025
|
-
* {
|
|
8026
|
-
* "type": "button",
|
|
8027
|
-
* "label": {
|
|
8028
|
-
* "value": "My Custom Control 0"
|
|
8029
|
-
* },
|
|
8030
|
-
* "key": "my-custom-control-0"
|
|
8031
|
-
* }
|
|
8032
|
-
*
|
|
8033
|
-
*
|
|
8034
|
-
*
|
|
8035
|
-
*/
|
|
8036
|
-
export interface TextControl {
|
|
8037
|
-
macroParameter: string;
|
|
8038
|
-
type: 'text' | 'TEXT';
|
|
8039
|
-
key: string;
|
|
8040
|
-
[k: string]: unknown;
|
|
8041
|
-
}
|
|
8042
8054
|
/**
|
|
8043
8055
|
*
|
|
8044
8056
|
*
|
|
@@ -8135,7 +8147,52 @@ export interface I18NProperty75 {
|
|
|
8135
8147
|
/**
|
|
8136
8148
|
*
|
|
8137
8149
|
*
|
|
8138
|
-
* Defines a
|
|
8150
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8151
|
+
*
|
|
8152
|
+
* <p><b>Example</b></p>
|
|
8153
|
+
*
|
|
8154
|
+
*
|
|
8155
|
+
*
|
|
8156
|
+
*
|
|
8157
|
+
*
|
|
8158
|
+
* [
|
|
8159
|
+
* {
|
|
8160
|
+
* "type": "togglegroup",
|
|
8161
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8162
|
+
* "controls": [
|
|
8163
|
+
* {
|
|
8164
|
+
* "type": "togglebutton",
|
|
8165
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8166
|
+
* "label": {
|
|
8167
|
+
* "value": "My Custom Control 0"
|
|
8168
|
+
* },
|
|
8169
|
+
* "key": "my-custom-toggle-button-0"
|
|
8170
|
+
* },
|
|
8171
|
+
* {
|
|
8172
|
+
* "type": "togglebutton",
|
|
8173
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8174
|
+
* "label": {
|
|
8175
|
+
* "value": "My Custom Control 1"
|
|
8176
|
+
* },
|
|
8177
|
+
* "key": "my-custom-toggle-button-1"
|
|
8178
|
+
* }
|
|
8179
|
+
* ]
|
|
8180
|
+
* }
|
|
8181
|
+
* ]
|
|
8182
|
+
*
|
|
8183
|
+
*
|
|
8184
|
+
*
|
|
8185
|
+
*/
|
|
8186
|
+
export interface ToggleGroup {
|
|
8187
|
+
controls: ToggleButtonControl[];
|
|
8188
|
+
macroParameter: string;
|
|
8189
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8190
|
+
[k: string]: unknown;
|
|
8191
|
+
}
|
|
8192
|
+
/**
|
|
8193
|
+
*
|
|
8194
|
+
*
|
|
8195
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8139
8196
|
*
|
|
8140
8197
|
* <p><b>Example</b></p>
|
|
8141
8198
|
*
|
|
@@ -8144,19 +8201,21 @@ export interface I18NProperty75 {
|
|
|
8144
8201
|
*
|
|
8145
8202
|
*
|
|
8146
8203
|
* {
|
|
8147
|
-
* "type": "
|
|
8204
|
+
* "type": "togglebutton",
|
|
8205
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8148
8206
|
* "label": {
|
|
8149
8207
|
* "value": "My Custom Control 0"
|
|
8150
8208
|
* },
|
|
8151
|
-
* "key": "my-custom-
|
|
8209
|
+
* "key": "my-custom-toggle-button-0"
|
|
8152
8210
|
* }
|
|
8153
8211
|
*
|
|
8154
8212
|
*
|
|
8155
8213
|
*
|
|
8156
8214
|
*/
|
|
8157
|
-
export interface
|
|
8215
|
+
export interface ToggleButtonControl {
|
|
8216
|
+
macroParameterValue: string;
|
|
8158
8217
|
label: I18NProperty76;
|
|
8159
|
-
type: '
|
|
8218
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8160
8219
|
key: string;
|
|
8161
8220
|
[k: string]: unknown;
|
|
8162
8221
|
}
|
|
@@ -8187,7 +8246,7 @@ export interface I18NProperty76 {
|
|
|
8187
8246
|
/**
|
|
8188
8247
|
*
|
|
8189
8248
|
*
|
|
8190
|
-
* Defines a
|
|
8249
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8191
8250
|
*
|
|
8192
8251
|
* <p><b>Example</b></p>
|
|
8193
8252
|
*
|
|
@@ -8195,44 +8254,27 @@ export interface I18NProperty76 {
|
|
|
8195
8254
|
*
|
|
8196
8255
|
*
|
|
8197
8256
|
*
|
|
8198
|
-
*
|
|
8199
|
-
*
|
|
8200
|
-
*
|
|
8201
|
-
* "
|
|
8202
|
-
*
|
|
8203
|
-
*
|
|
8204
|
-
*
|
|
8205
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8206
|
-
* "label": {
|
|
8207
|
-
* "value": "My Custom Control 0"
|
|
8208
|
-
* },
|
|
8209
|
-
* "key": "my-custom-toggle-button-0"
|
|
8210
|
-
* },
|
|
8211
|
-
* {
|
|
8212
|
-
* "type": "togglebutton",
|
|
8213
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8214
|
-
* "label": {
|
|
8215
|
-
* "value": "My Custom Control 1"
|
|
8216
|
-
* },
|
|
8217
|
-
* "key": "my-custom-toggle-button-1"
|
|
8218
|
-
* }
|
|
8219
|
-
* ]
|
|
8220
|
-
* }
|
|
8221
|
-
* ]
|
|
8257
|
+
* {
|
|
8258
|
+
* "type": "button",
|
|
8259
|
+
* "label": {
|
|
8260
|
+
* "value": "My Custom Control 0"
|
|
8261
|
+
* },
|
|
8262
|
+
* "key": "my-custom-control-0"
|
|
8263
|
+
* }
|
|
8222
8264
|
*
|
|
8223
8265
|
*
|
|
8224
8266
|
*
|
|
8225
8267
|
*/
|
|
8226
|
-
export interface
|
|
8227
|
-
controls: ToggleButtonControl[];
|
|
8268
|
+
export interface TextControl {
|
|
8228
8269
|
macroParameter: string;
|
|
8229
|
-
type: '
|
|
8270
|
+
type: 'text' | 'TEXT';
|
|
8271
|
+
key: string;
|
|
8230
8272
|
[k: string]: unknown;
|
|
8231
8273
|
}
|
|
8232
8274
|
/**
|
|
8233
8275
|
*
|
|
8234
8276
|
*
|
|
8235
|
-
* Defines a
|
|
8277
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8236
8278
|
*
|
|
8237
8279
|
* <p><b>Example</b></p>
|
|
8238
8280
|
*
|
|
@@ -8241,21 +8283,19 @@ export interface ToggleGroup {
|
|
|
8241
8283
|
*
|
|
8242
8284
|
*
|
|
8243
8285
|
* {
|
|
8244
|
-
* "type": "
|
|
8245
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8286
|
+
* "type": "button",
|
|
8246
8287
|
* "label": {
|
|
8247
8288
|
* "value": "My Custom Control 0"
|
|
8248
8289
|
* },
|
|
8249
|
-
* "key": "my-custom-
|
|
8290
|
+
* "key": "my-custom-control-0"
|
|
8250
8291
|
* }
|
|
8251
8292
|
*
|
|
8252
8293
|
*
|
|
8253
8294
|
*
|
|
8254
8295
|
*/
|
|
8255
|
-
export interface
|
|
8256
|
-
macroParameterValue: string;
|
|
8296
|
+
export interface ButtonControl1 {
|
|
8257
8297
|
label: I18NProperty77;
|
|
8258
|
-
type: '
|
|
8298
|
+
type: 'button' | 'BUTTON';
|
|
8259
8299
|
key: string;
|
|
8260
8300
|
[k: string]: unknown;
|
|
8261
8301
|
}
|
|
@@ -29251,11 +29291,52 @@ export interface I18NProperty83 {
|
|
|
29251
29291
|
*
|
|
29252
29292
|
*/
|
|
29253
29293
|
export interface MacroPropertyPanel1 {
|
|
29254
|
-
controls?: (
|
|
29294
|
+
controls?: (ControlGroup1 | ButtonControl3 | TextControl1 | ToggleGroup1)[];
|
|
29255
29295
|
cacheable?: boolean;
|
|
29256
29296
|
url: string;
|
|
29257
29297
|
[k: string]: unknown;
|
|
29258
29298
|
}
|
|
29299
|
+
/**
|
|
29300
|
+
*
|
|
29301
|
+
*
|
|
29302
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29303
|
+
*
|
|
29304
|
+
* <p><b>Example</b></p>
|
|
29305
|
+
*
|
|
29306
|
+
*
|
|
29307
|
+
*
|
|
29308
|
+
*
|
|
29309
|
+
*
|
|
29310
|
+
* [
|
|
29311
|
+
* {
|
|
29312
|
+
* "type": "group",
|
|
29313
|
+
* "controls": [
|
|
29314
|
+
* {
|
|
29315
|
+
* "type": "button",
|
|
29316
|
+
* "label": {
|
|
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
|
+
* ]
|
|
29331
|
+
*
|
|
29332
|
+
*
|
|
29333
|
+
*
|
|
29334
|
+
*/
|
|
29335
|
+
export interface ControlGroup1 {
|
|
29336
|
+
controls: ButtonControl2[];
|
|
29337
|
+
type: 'group' | 'GROUP';
|
|
29338
|
+
[k: string]: unknown;
|
|
29339
|
+
}
|
|
29259
29340
|
/**
|
|
29260
29341
|
*
|
|
29261
29342
|
*
|
|
@@ -29311,7 +29392,7 @@ export interface I18NProperty84 {
|
|
|
29311
29392
|
/**
|
|
29312
29393
|
*
|
|
29313
29394
|
*
|
|
29314
|
-
* Defines a
|
|
29395
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29315
29396
|
*
|
|
29316
29397
|
* <p><b>Example</b></p>
|
|
29317
29398
|
*
|
|
@@ -29330,57 +29411,40 @@ export interface I18NProperty84 {
|
|
|
29330
29411
|
*
|
|
29331
29412
|
*
|
|
29332
29413
|
*/
|
|
29333
|
-
export interface
|
|
29334
|
-
|
|
29335
|
-
type: '
|
|
29414
|
+
export interface ButtonControl3 {
|
|
29415
|
+
label: I18NProperty85;
|
|
29416
|
+
type: 'button' | 'BUTTON';
|
|
29336
29417
|
key: string;
|
|
29337
29418
|
[k: string]: unknown;
|
|
29338
29419
|
}
|
|
29339
29420
|
/**
|
|
29340
29421
|
*
|
|
29341
29422
|
*
|
|
29342
|
-
*
|
|
29423
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29424
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29343
29425
|
*
|
|
29344
|
-
* <
|
|
29426
|
+
* <h3>Example</h3>
|
|
29345
29427
|
*
|
|
29346
29428
|
*
|
|
29347
29429
|
*
|
|
29348
29430
|
*
|
|
29349
29431
|
*
|
|
29350
|
-
*
|
|
29351
|
-
*
|
|
29352
|
-
*
|
|
29353
|
-
* "controls": [
|
|
29354
|
-
* {
|
|
29355
|
-
* "type": "button",
|
|
29356
|
-
* "label": {
|
|
29357
|
-
* "value": "My Custom Control 0"
|
|
29358
|
-
* },
|
|
29359
|
-
* "key": "my-custom-control-0"
|
|
29360
|
-
* },
|
|
29361
|
-
* {
|
|
29362
|
-
* "type": "button",
|
|
29363
|
-
* "label": {
|
|
29364
|
-
* "value": "My Custom Control 1"
|
|
29365
|
-
* },
|
|
29366
|
-
* "key": "my-custom-control-1"
|
|
29367
|
-
* }
|
|
29368
|
-
* ]
|
|
29369
|
-
* }
|
|
29370
|
-
* ]
|
|
29432
|
+
* {
|
|
29433
|
+
* "value": "My text"
|
|
29434
|
+
* }
|
|
29371
29435
|
*
|
|
29372
29436
|
*
|
|
29373
29437
|
*
|
|
29374
29438
|
*/
|
|
29375
|
-
export interface
|
|
29376
|
-
|
|
29377
|
-
|
|
29439
|
+
export interface I18NProperty85 {
|
|
29440
|
+
value: string;
|
|
29441
|
+
i18n?: string;
|
|
29378
29442
|
[k: string]: unknown;
|
|
29379
29443
|
}
|
|
29380
29444
|
/**
|
|
29381
29445
|
*
|
|
29382
29446
|
*
|
|
29383
|
-
* Defines a
|
|
29447
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29384
29448
|
*
|
|
29385
29449
|
* <p><b>Example</b></p>
|
|
29386
29450
|
*
|
|
@@ -29399,36 +29463,12 @@ export interface ControlGroup1 {
|
|
|
29399
29463
|
*
|
|
29400
29464
|
*
|
|
29401
29465
|
*/
|
|
29402
|
-
export interface
|
|
29403
|
-
|
|
29404
|
-
type: '
|
|
29466
|
+
export interface TextControl1 {
|
|
29467
|
+
macroParameter: string;
|
|
29468
|
+
type: 'text' | 'TEXT';
|
|
29405
29469
|
key: string;
|
|
29406
29470
|
[k: string]: unknown;
|
|
29407
29471
|
}
|
|
29408
|
-
/**
|
|
29409
|
-
*
|
|
29410
|
-
*
|
|
29411
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29412
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29413
|
-
*
|
|
29414
|
-
* <h3>Example</h3>
|
|
29415
|
-
*
|
|
29416
|
-
*
|
|
29417
|
-
*
|
|
29418
|
-
*
|
|
29419
|
-
*
|
|
29420
|
-
* {
|
|
29421
|
-
* "value": "My text"
|
|
29422
|
-
* }
|
|
29423
|
-
*
|
|
29424
|
-
*
|
|
29425
|
-
*
|
|
29426
|
-
*/
|
|
29427
|
-
export interface I18NProperty85 {
|
|
29428
|
-
value: string;
|
|
29429
|
-
i18n?: string;
|
|
29430
|
-
[k: string]: unknown;
|
|
29431
|
-
}
|
|
29432
29472
|
/**
|
|
29433
29473
|
*
|
|
29434
29474
|
*
|
|
@@ -50377,10 +50417,47 @@ export interface I18NProperty91 {
|
|
|
50377
50417
|
*
|
|
50378
50418
|
*/
|
|
50379
50419
|
export interface WebItemTarget2 {
|
|
50380
|
-
options?:
|
|
50420
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
50381
50421
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50382
50422
|
[k: string]: unknown;
|
|
50383
50423
|
}
|
|
50424
|
+
/**
|
|
50425
|
+
*
|
|
50426
|
+
*
|
|
50427
|
+
* Options for an inline dialog target
|
|
50428
|
+
*
|
|
50429
|
+
* <h3>Example</h3>
|
|
50430
|
+
*
|
|
50431
|
+
*
|
|
50432
|
+
*
|
|
50433
|
+
*
|
|
50434
|
+
*
|
|
50435
|
+
* {
|
|
50436
|
+
* "target": {
|
|
50437
|
+
* "type": "inlinedialog",
|
|
50438
|
+
* "options": {
|
|
50439
|
+
* "onHover": true,
|
|
50440
|
+
* "offsetX": "30px",
|
|
50441
|
+
* "offsetY": "20px"
|
|
50442
|
+
* }
|
|
50443
|
+
* }
|
|
50444
|
+
* }
|
|
50445
|
+
*
|
|
50446
|
+
*
|
|
50447
|
+
*
|
|
50448
|
+
*/
|
|
50449
|
+
export interface InlineDialogOptions2 {
|
|
50450
|
+
offsetX?: string;
|
|
50451
|
+
offsetY?: string;
|
|
50452
|
+
width?: string;
|
|
50453
|
+
onTop?: boolean;
|
|
50454
|
+
showDelay?: number;
|
|
50455
|
+
closeOthers?: boolean;
|
|
50456
|
+
persistent?: boolean;
|
|
50457
|
+
onHover?: boolean;
|
|
50458
|
+
isRelativeToMouse?: boolean;
|
|
50459
|
+
[k: string]: unknown;
|
|
50460
|
+
}
|
|
50384
50461
|
/**
|
|
50385
50462
|
*
|
|
50386
50463
|
*
|
|
@@ -50506,43 +50583,6 @@ export interface DialogModuleOptions2 {
|
|
|
50506
50583
|
key: string;
|
|
50507
50584
|
[k: string]: unknown;
|
|
50508
50585
|
}
|
|
50509
|
-
/**
|
|
50510
|
-
*
|
|
50511
|
-
*
|
|
50512
|
-
* Options for an inline dialog target
|
|
50513
|
-
*
|
|
50514
|
-
* <h3>Example</h3>
|
|
50515
|
-
*
|
|
50516
|
-
*
|
|
50517
|
-
*
|
|
50518
|
-
*
|
|
50519
|
-
*
|
|
50520
|
-
* {
|
|
50521
|
-
* "target": {
|
|
50522
|
-
* "type": "inlinedialog",
|
|
50523
|
-
* "options": {
|
|
50524
|
-
* "onHover": true,
|
|
50525
|
-
* "offsetX": "30px",
|
|
50526
|
-
* "offsetY": "20px"
|
|
50527
|
-
* }
|
|
50528
|
-
* }
|
|
50529
|
-
* }
|
|
50530
|
-
*
|
|
50531
|
-
*
|
|
50532
|
-
*
|
|
50533
|
-
*/
|
|
50534
|
-
export interface InlineDialogOptions2 {
|
|
50535
|
-
offsetX?: string;
|
|
50536
|
-
offsetY?: string;
|
|
50537
|
-
width?: string;
|
|
50538
|
-
onTop?: boolean;
|
|
50539
|
-
showDelay?: number;
|
|
50540
|
-
closeOthers?: boolean;
|
|
50541
|
-
persistent?: boolean;
|
|
50542
|
-
onHover?: boolean;
|
|
50543
|
-
isRelativeToMouse?: boolean;
|
|
50544
|
-
[k: string]: unknown;
|
|
50545
|
-
}
|
|
50546
50586
|
/**
|
|
50547
50587
|
*
|
|
50548
50588
|
*
|