@forge/manifest 2.5.1-next.3 → 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 +6 -0
- package/out/schema/manifest-schema.json +270 -209
- package/out/schema/manifest.d.ts +225 -187
- 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
|
}
|
|
@@ -2473,7 +2511,7 @@ export interface Modules {
|
|
|
2473
2511
|
fullPage?: boolean;
|
|
2474
2512
|
cacheable?: boolean;
|
|
2475
2513
|
location?: string;
|
|
2476
|
-
conditions?: (
|
|
2514
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2477
2515
|
params?: {
|
|
2478
2516
|
[k: string]: unknown;
|
|
2479
2517
|
};
|
|
@@ -2488,7 +2526,7 @@ export interface Modules {
|
|
|
2488
2526
|
fullPage?: boolean;
|
|
2489
2527
|
cacheable?: boolean;
|
|
2490
2528
|
location?: string;
|
|
2491
|
-
conditions?: (
|
|
2529
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2492
2530
|
params?: {
|
|
2493
2531
|
[k: string]: unknown;
|
|
2494
2532
|
};
|
|
@@ -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
|
};
|
|
@@ -2685,7 +2723,7 @@ export interface Modules {
|
|
|
2685
2723
|
fullPage?: boolean;
|
|
2686
2724
|
cacheable?: boolean;
|
|
2687
2725
|
location?: string;
|
|
2688
|
-
conditions?: (
|
|
2726
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2689
2727
|
params?: {
|
|
2690
2728
|
[k: string]: unknown;
|
|
2691
2729
|
};
|
|
@@ -2700,7 +2738,7 @@ export interface Modules {
|
|
|
2700
2738
|
fullPage?: boolean;
|
|
2701
2739
|
cacheable?: boolean;
|
|
2702
2740
|
location?: string;
|
|
2703
|
-
conditions?: (
|
|
2741
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2704
2742
|
params?: {
|
|
2705
2743
|
[k: string]: unknown;
|
|
2706
2744
|
};
|
|
@@ -5901,14 +5939,14 @@ export interface Icon10 {
|
|
|
5901
5939
|
*
|
|
5902
5940
|
*/
|
|
5903
5941
|
export interface WebItemTarget1 {
|
|
5904
|
-
options?:
|
|
5942
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
5905
5943
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5906
5944
|
[k: string]: unknown;
|
|
5907
5945
|
}
|
|
5908
5946
|
/**
|
|
5909
5947
|
*
|
|
5910
5948
|
*
|
|
5911
|
-
* Options for
|
|
5949
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
5912
5950
|
*
|
|
5913
5951
|
* <h3>Example</h3>
|
|
5914
5952
|
*
|
|
@@ -5918,11 +5956,9 @@ export interface WebItemTarget1 {
|
|
|
5918
5956
|
*
|
|
5919
5957
|
* {
|
|
5920
5958
|
* "target": {
|
|
5921
|
-
* "type": "
|
|
5959
|
+
* "type": "dialogmodule",
|
|
5922
5960
|
* "options": {
|
|
5923
|
-
* "
|
|
5924
|
-
* "offsetX": "30px",
|
|
5925
|
-
* "offsetY": "20px"
|
|
5961
|
+
* "key": "dialog-module-key"
|
|
5926
5962
|
* }
|
|
5927
5963
|
* }
|
|
5928
5964
|
* }
|
|
@@ -5930,16 +5966,8 @@ export interface WebItemTarget1 {
|
|
|
5930
5966
|
*
|
|
5931
5967
|
*
|
|
5932
5968
|
*/
|
|
5933
|
-
export interface
|
|
5934
|
-
|
|
5935
|
-
offsetY?: string;
|
|
5936
|
-
width?: string;
|
|
5937
|
-
onTop?: boolean;
|
|
5938
|
-
showDelay?: number;
|
|
5939
|
-
closeOthers?: boolean;
|
|
5940
|
-
persistent?: boolean;
|
|
5941
|
-
onHover?: boolean;
|
|
5942
|
-
isRelativeToMouse?: boolean;
|
|
5969
|
+
export interface DialogModuleOptions1 {
|
|
5970
|
+
key: string;
|
|
5943
5971
|
[k: string]: unknown;
|
|
5944
5972
|
}
|
|
5945
5973
|
/**
|
|
@@ -6043,7 +6071,7 @@ export interface I18NProperty58 {
|
|
|
6043
6071
|
/**
|
|
6044
6072
|
*
|
|
6045
6073
|
*
|
|
6046
|
-
* Options for
|
|
6074
|
+
* Options for an inline dialog target
|
|
6047
6075
|
*
|
|
6048
6076
|
* <h3>Example</h3>
|
|
6049
6077
|
*
|
|
@@ -6053,9 +6081,11 @@ export interface I18NProperty58 {
|
|
|
6053
6081
|
*
|
|
6054
6082
|
* {
|
|
6055
6083
|
* "target": {
|
|
6056
|
-
* "type": "
|
|
6084
|
+
* "type": "inlinedialog",
|
|
6057
6085
|
* "options": {
|
|
6058
|
-
* "
|
|
6086
|
+
* "onHover": true,
|
|
6087
|
+
* "offsetX": "30px",
|
|
6088
|
+
* "offsetY": "20px"
|
|
6059
6089
|
* }
|
|
6060
6090
|
* }
|
|
6061
6091
|
* }
|
|
@@ -6063,8 +6093,16 @@ export interface I18NProperty58 {
|
|
|
6063
6093
|
*
|
|
6064
6094
|
*
|
|
6065
6095
|
*/
|
|
6066
|
-
export interface
|
|
6067
|
-
|
|
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;
|
|
6068
6106
|
[k: string]: unknown;
|
|
6069
6107
|
}
|
|
6070
6108
|
/**
|
|
@@ -6159,7 +6197,7 @@ export interface SingleCondition4 {
|
|
|
6159
6197
|
*
|
|
6160
6198
|
*/
|
|
6161
6199
|
export interface CompositeCondition6 {
|
|
6162
|
-
conditions?: (
|
|
6200
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6163
6201
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6164
6202
|
[k: string]: unknown;
|
|
6165
6203
|
}
|
|
@@ -8008,63 +8046,11 @@ export interface I18NProperty74 {
|
|
|
8008
8046
|
*
|
|
8009
8047
|
*/
|
|
8010
8048
|
export interface MacroPropertyPanel {
|
|
8011
|
-
controls?: (
|
|
8049
|
+
controls?: (ControlGroup | ToggleGroup | TextControl | ButtonControl1)[];
|
|
8012
8050
|
cacheable?: boolean;
|
|
8013
8051
|
url: string;
|
|
8014
8052
|
[k: string]: unknown;
|
|
8015
8053
|
}
|
|
8016
|
-
/**
|
|
8017
|
-
*
|
|
8018
|
-
*
|
|
8019
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
8020
|
-
*
|
|
8021
|
-
* <p><b>Example</b></p>
|
|
8022
|
-
*
|
|
8023
|
-
*
|
|
8024
|
-
*
|
|
8025
|
-
*
|
|
8026
|
-
*
|
|
8027
|
-
* {
|
|
8028
|
-
* "type": "button",
|
|
8029
|
-
* "label": {
|
|
8030
|
-
* "value": "My Custom Control 0"
|
|
8031
|
-
* },
|
|
8032
|
-
* "key": "my-custom-control-0"
|
|
8033
|
-
* }
|
|
8034
|
-
*
|
|
8035
|
-
*
|
|
8036
|
-
*
|
|
8037
|
-
*/
|
|
8038
|
-
export interface ButtonControl {
|
|
8039
|
-
label: I18NProperty75;
|
|
8040
|
-
type: 'button' | 'BUTTON';
|
|
8041
|
-
key: string;
|
|
8042
|
-
[k: string]: unknown;
|
|
8043
|
-
}
|
|
8044
|
-
/**
|
|
8045
|
-
*
|
|
8046
|
-
*
|
|
8047
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8048
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8049
|
-
*
|
|
8050
|
-
* <h3>Example</h3>
|
|
8051
|
-
*
|
|
8052
|
-
*
|
|
8053
|
-
*
|
|
8054
|
-
*
|
|
8055
|
-
*
|
|
8056
|
-
* {
|
|
8057
|
-
* "value": "My text"
|
|
8058
|
-
* }
|
|
8059
|
-
*
|
|
8060
|
-
*
|
|
8061
|
-
*
|
|
8062
|
-
*/
|
|
8063
|
-
export interface I18NProperty75 {
|
|
8064
|
-
value: string;
|
|
8065
|
-
i18n?: string;
|
|
8066
|
-
[k: string]: unknown;
|
|
8067
|
-
}
|
|
8068
8054
|
/**
|
|
8069
8055
|
*
|
|
8070
8056
|
*
|
|
@@ -8102,7 +8088,7 @@ export interface I18NProperty75 {
|
|
|
8102
8088
|
*
|
|
8103
8089
|
*/
|
|
8104
8090
|
export interface ControlGroup {
|
|
8105
|
-
controls:
|
|
8091
|
+
controls: ButtonControl[];
|
|
8106
8092
|
type: 'group' | 'GROUP';
|
|
8107
8093
|
[k: string]: unknown;
|
|
8108
8094
|
}
|
|
@@ -8128,8 +8114,8 @@ export interface ControlGroup {
|
|
|
8128
8114
|
*
|
|
8129
8115
|
*
|
|
8130
8116
|
*/
|
|
8131
|
-
export interface
|
|
8132
|
-
label:
|
|
8117
|
+
export interface ButtonControl {
|
|
8118
|
+
label: I18NProperty75;
|
|
8133
8119
|
type: 'button' | 'BUTTON';
|
|
8134
8120
|
key: string;
|
|
8135
8121
|
[k: string]: unknown;
|
|
@@ -8153,7 +8139,7 @@ export interface ButtonControl1 {
|
|
|
8153
8139
|
*
|
|
8154
8140
|
*
|
|
8155
8141
|
*/
|
|
8156
|
-
export interface
|
|
8142
|
+
export interface I18NProperty75 {
|
|
8157
8143
|
value: string;
|
|
8158
8144
|
i18n?: string;
|
|
8159
8145
|
[k: string]: unknown;
|
|
@@ -8228,7 +8214,7 @@ export interface ToggleGroup {
|
|
|
8228
8214
|
*/
|
|
8229
8215
|
export interface ToggleButtonControl {
|
|
8230
8216
|
macroParameterValue: string;
|
|
8231
|
-
label:
|
|
8217
|
+
label: I18NProperty76;
|
|
8232
8218
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8233
8219
|
key: string;
|
|
8234
8220
|
[k: string]: unknown;
|
|
@@ -8252,7 +8238,7 @@ export interface ToggleButtonControl {
|
|
|
8252
8238
|
*
|
|
8253
8239
|
*
|
|
8254
8240
|
*/
|
|
8255
|
-
export interface
|
|
8241
|
+
export interface I18NProperty76 {
|
|
8256
8242
|
value: string;
|
|
8257
8243
|
i18n?: string;
|
|
8258
8244
|
[k: string]: unknown;
|
|
@@ -8285,6 +8271,58 @@ export interface TextControl {
|
|
|
8285
8271
|
key: string;
|
|
8286
8272
|
[k: string]: unknown;
|
|
8287
8273
|
}
|
|
8274
|
+
/**
|
|
8275
|
+
*
|
|
8276
|
+
*
|
|
8277
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8278
|
+
*
|
|
8279
|
+
* <p><b>Example</b></p>
|
|
8280
|
+
*
|
|
8281
|
+
*
|
|
8282
|
+
*
|
|
8283
|
+
*
|
|
8284
|
+
*
|
|
8285
|
+
* {
|
|
8286
|
+
* "type": "button",
|
|
8287
|
+
* "label": {
|
|
8288
|
+
* "value": "My Custom Control 0"
|
|
8289
|
+
* },
|
|
8290
|
+
* "key": "my-custom-control-0"
|
|
8291
|
+
* }
|
|
8292
|
+
*
|
|
8293
|
+
*
|
|
8294
|
+
*
|
|
8295
|
+
*/
|
|
8296
|
+
export interface ButtonControl1 {
|
|
8297
|
+
label: I18NProperty77;
|
|
8298
|
+
type: 'button' | 'BUTTON';
|
|
8299
|
+
key: string;
|
|
8300
|
+
[k: string]: unknown;
|
|
8301
|
+
}
|
|
8302
|
+
/**
|
|
8303
|
+
*
|
|
8304
|
+
*
|
|
8305
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8306
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8307
|
+
*
|
|
8308
|
+
* <h3>Example</h3>
|
|
8309
|
+
*
|
|
8310
|
+
*
|
|
8311
|
+
*
|
|
8312
|
+
*
|
|
8313
|
+
*
|
|
8314
|
+
* {
|
|
8315
|
+
* "value": "My text"
|
|
8316
|
+
* }
|
|
8317
|
+
*
|
|
8318
|
+
*
|
|
8319
|
+
*
|
|
8320
|
+
*/
|
|
8321
|
+
export interface I18NProperty77 {
|
|
8322
|
+
value: string;
|
|
8323
|
+
i18n?: string;
|
|
8324
|
+
[k: string]: unknown;
|
|
8325
|
+
}
|
|
8288
8326
|
/**
|
|
8289
8327
|
*
|
|
8290
8328
|
*
|
|
@@ -29253,7 +29291,7 @@ export interface I18NProperty83 {
|
|
|
29253
29291
|
*
|
|
29254
29292
|
*/
|
|
29255
29293
|
export interface MacroPropertyPanel1 {
|
|
29256
|
-
controls?: (ControlGroup1 |
|
|
29294
|
+
controls?: (ControlGroup1 | ButtonControl3 | TextControl1 | ToggleGroup1)[];
|
|
29257
29295
|
cacheable?: boolean;
|
|
29258
29296
|
url: string;
|
|
29259
29297
|
[k: string]: unknown;
|
|
@@ -29351,6 +29389,58 @@ export interface I18NProperty84 {
|
|
|
29351
29389
|
i18n?: string;
|
|
29352
29390
|
[k: string]: unknown;
|
|
29353
29391
|
}
|
|
29392
|
+
/**
|
|
29393
|
+
*
|
|
29394
|
+
*
|
|
29395
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29396
|
+
*
|
|
29397
|
+
* <p><b>Example</b></p>
|
|
29398
|
+
*
|
|
29399
|
+
*
|
|
29400
|
+
*
|
|
29401
|
+
*
|
|
29402
|
+
*
|
|
29403
|
+
* {
|
|
29404
|
+
* "type": "button",
|
|
29405
|
+
* "label": {
|
|
29406
|
+
* "value": "My Custom Control 0"
|
|
29407
|
+
* },
|
|
29408
|
+
* "key": "my-custom-control-0"
|
|
29409
|
+
* }
|
|
29410
|
+
*
|
|
29411
|
+
*
|
|
29412
|
+
*
|
|
29413
|
+
*/
|
|
29414
|
+
export interface ButtonControl3 {
|
|
29415
|
+
label: I18NProperty85;
|
|
29416
|
+
type: 'button' | 'BUTTON';
|
|
29417
|
+
key: string;
|
|
29418
|
+
[k: string]: unknown;
|
|
29419
|
+
}
|
|
29420
|
+
/**
|
|
29421
|
+
*
|
|
29422
|
+
*
|
|
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.
|
|
29425
|
+
*
|
|
29426
|
+
* <h3>Example</h3>
|
|
29427
|
+
*
|
|
29428
|
+
*
|
|
29429
|
+
*
|
|
29430
|
+
*
|
|
29431
|
+
*
|
|
29432
|
+
* {
|
|
29433
|
+
* "value": "My text"
|
|
29434
|
+
* }
|
|
29435
|
+
*
|
|
29436
|
+
*
|
|
29437
|
+
*
|
|
29438
|
+
*/
|
|
29439
|
+
export interface I18NProperty85 {
|
|
29440
|
+
value: string;
|
|
29441
|
+
i18n?: string;
|
|
29442
|
+
[k: string]: unknown;
|
|
29443
|
+
}
|
|
29354
29444
|
/**
|
|
29355
29445
|
*
|
|
29356
29446
|
*
|
|
@@ -29449,60 +29539,8 @@ export interface ToggleGroup1 {
|
|
|
29449
29539
|
*/
|
|
29450
29540
|
export interface ToggleButtonControl1 {
|
|
29451
29541
|
macroParameterValue: string;
|
|
29452
|
-
label: I18NProperty85;
|
|
29453
|
-
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29454
|
-
key: string;
|
|
29455
|
-
[k: string]: unknown;
|
|
29456
|
-
}
|
|
29457
|
-
/**
|
|
29458
|
-
*
|
|
29459
|
-
*
|
|
29460
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29461
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29462
|
-
*
|
|
29463
|
-
* <h3>Example</h3>
|
|
29464
|
-
*
|
|
29465
|
-
*
|
|
29466
|
-
*
|
|
29467
|
-
*
|
|
29468
|
-
*
|
|
29469
|
-
* {
|
|
29470
|
-
* "value": "My text"
|
|
29471
|
-
* }
|
|
29472
|
-
*
|
|
29473
|
-
*
|
|
29474
|
-
*
|
|
29475
|
-
*/
|
|
29476
|
-
export interface I18NProperty85 {
|
|
29477
|
-
value: string;
|
|
29478
|
-
i18n?: string;
|
|
29479
|
-
[k: string]: unknown;
|
|
29480
|
-
}
|
|
29481
|
-
/**
|
|
29482
|
-
*
|
|
29483
|
-
*
|
|
29484
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
29485
|
-
*
|
|
29486
|
-
* <p><b>Example</b></p>
|
|
29487
|
-
*
|
|
29488
|
-
*
|
|
29489
|
-
*
|
|
29490
|
-
*
|
|
29491
|
-
*
|
|
29492
|
-
* {
|
|
29493
|
-
* "type": "button",
|
|
29494
|
-
* "label": {
|
|
29495
|
-
* "value": "My Custom Control 0"
|
|
29496
|
-
* },
|
|
29497
|
-
* "key": "my-custom-control-0"
|
|
29498
|
-
* }
|
|
29499
|
-
*
|
|
29500
|
-
*
|
|
29501
|
-
*
|
|
29502
|
-
*/
|
|
29503
|
-
export interface ButtonControl3 {
|
|
29504
29542
|
label: I18NProperty86;
|
|
29505
|
-
type: '
|
|
29543
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29506
29544
|
key: string;
|
|
29507
29545
|
[k: string]: unknown;
|
|
29508
29546
|
}
|
|
@@ -50379,37 +50417,10 @@ export interface I18NProperty91 {
|
|
|
50379
50417
|
*
|
|
50380
50418
|
*/
|
|
50381
50419
|
export interface WebItemTarget2 {
|
|
50382
|
-
options?:
|
|
50420
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
50383
50421
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50384
50422
|
[k: string]: unknown;
|
|
50385
50423
|
}
|
|
50386
|
-
/**
|
|
50387
|
-
*
|
|
50388
|
-
*
|
|
50389
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50390
|
-
*
|
|
50391
|
-
* <h3>Example</h3>
|
|
50392
|
-
*
|
|
50393
|
-
*
|
|
50394
|
-
*
|
|
50395
|
-
*
|
|
50396
|
-
*
|
|
50397
|
-
* {
|
|
50398
|
-
* "target": {
|
|
50399
|
-
* "type": "dialogmodule",
|
|
50400
|
-
* "options": {
|
|
50401
|
-
* "key": "dialog-module-key"
|
|
50402
|
-
* }
|
|
50403
|
-
* }
|
|
50404
|
-
* }
|
|
50405
|
-
*
|
|
50406
|
-
*
|
|
50407
|
-
*
|
|
50408
|
-
*/
|
|
50409
|
-
export interface DialogModuleOptions2 {
|
|
50410
|
-
key: string;
|
|
50411
|
-
[k: string]: unknown;
|
|
50412
|
-
}
|
|
50413
50424
|
/**
|
|
50414
50425
|
*
|
|
50415
50426
|
*
|
|
@@ -50545,6 +50556,33 @@ export interface I18NProperty92 {
|
|
|
50545
50556
|
i18n?: string;
|
|
50546
50557
|
[k: string]: unknown;
|
|
50547
50558
|
}
|
|
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
|
+
}
|
|
50548
50586
|
/**
|
|
50549
50587
|
*
|
|
50550
50588
|
*
|