@forge/manifest 2.5.0-next.4 → 2.5.0-next.8
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 +25 -0
- package/out/schema/manifest-schema.json +235 -235
- package/out/schema/manifest.d.ts +245 -245
- package/out/scopes/shipyard-scopes.json +160 -44
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2473,7 +2473,7 @@ export interface Modules {
|
|
|
2473
2473
|
fullPage?: boolean;
|
|
2474
2474
|
cacheable?: boolean;
|
|
2475
2475
|
location?: string;
|
|
2476
|
-
conditions?: (
|
|
2476
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2477
2477
|
params?: {
|
|
2478
2478
|
[k: string]: unknown;
|
|
2479
2479
|
};
|
|
@@ -2488,7 +2488,7 @@ export interface Modules {
|
|
|
2488
2488
|
fullPage?: boolean;
|
|
2489
2489
|
cacheable?: boolean;
|
|
2490
2490
|
location?: string;
|
|
2491
|
-
conditions?: (
|
|
2491
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2492
2492
|
params?: {
|
|
2493
2493
|
[k: string]: unknown;
|
|
2494
2494
|
};
|
|
@@ -2506,7 +2506,7 @@ export interface Modules {
|
|
|
2506
2506
|
location?: string;
|
|
2507
2507
|
cacheable?: boolean;
|
|
2508
2508
|
supportsNative?: boolean;
|
|
2509
|
-
conditions?: (
|
|
2509
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2510
2510
|
params?: {
|
|
2511
2511
|
[k: string]: unknown;
|
|
2512
2512
|
};
|
|
@@ -2522,7 +2522,7 @@ export interface Modules {
|
|
|
2522
2522
|
location?: string;
|
|
2523
2523
|
cacheable?: boolean;
|
|
2524
2524
|
supportsNative?: boolean;
|
|
2525
|
-
conditions?: (
|
|
2525
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2526
2526
|
params?: {
|
|
2527
2527
|
[k: string]: unknown;
|
|
2528
2528
|
};
|
|
@@ -2536,7 +2536,7 @@ export interface Modules {
|
|
|
2536
2536
|
filter?: string;
|
|
2537
2537
|
excludeBody?: boolean;
|
|
2538
2538
|
event?: string;
|
|
2539
|
-
conditions?: (
|
|
2539
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2540
2540
|
propertyKeys?: string[];
|
|
2541
2541
|
url?: string;
|
|
2542
2542
|
key: ModuleKeySchema;
|
|
@@ -2546,7 +2546,7 @@ export interface Modules {
|
|
|
2546
2546
|
filter?: string;
|
|
2547
2547
|
excludeBody?: boolean;
|
|
2548
2548
|
event?: string;
|
|
2549
|
-
conditions?: (
|
|
2549
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2550
2550
|
propertyKeys?: string[];
|
|
2551
2551
|
url?: string;
|
|
2552
2552
|
key: ModuleKeySchema;
|
|
@@ -2560,7 +2560,7 @@ export interface Modules {
|
|
|
2560
2560
|
weight?: number;
|
|
2561
2561
|
cacheable?: boolean;
|
|
2562
2562
|
location?: string;
|
|
2563
|
-
conditions?: (
|
|
2563
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2564
2564
|
params?: {
|
|
2565
2565
|
[k: string]: unknown;
|
|
2566
2566
|
};
|
|
@@ -2574,7 +2574,7 @@ export interface Modules {
|
|
|
2574
2574
|
weight?: number;
|
|
2575
2575
|
cacheable?: boolean;
|
|
2576
2576
|
location?: string;
|
|
2577
|
-
conditions?: (
|
|
2577
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2578
2578
|
params?: {
|
|
2579
2579
|
[k: string]: unknown;
|
|
2580
2580
|
};
|
|
@@ -2589,7 +2589,7 @@ export interface Modules {
|
|
|
2589
2589
|
name?: I18NProperty55;
|
|
2590
2590
|
weight?: number;
|
|
2591
2591
|
location?: string;
|
|
2592
|
-
conditions?: (
|
|
2592
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2593
2593
|
params?: {
|
|
2594
2594
|
[k: string]: unknown;
|
|
2595
2595
|
};
|
|
@@ -2601,7 +2601,7 @@ export interface Modules {
|
|
|
2601
2601
|
name?: I18NProperty55;
|
|
2602
2602
|
weight?: number;
|
|
2603
2603
|
location?: string;
|
|
2604
|
-
conditions?: (
|
|
2604
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2605
2605
|
params?: {
|
|
2606
2606
|
[k: string]: unknown;
|
|
2607
2607
|
};
|
|
@@ -2616,7 +2616,7 @@ export interface Modules {
|
|
|
2616
2616
|
weight?: number;
|
|
2617
2617
|
cacheable?: boolean;
|
|
2618
2618
|
location?: string;
|
|
2619
|
-
conditions?: (
|
|
2619
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2620
2620
|
params?: {
|
|
2621
2621
|
[k: string]: unknown;
|
|
2622
2622
|
};
|
|
@@ -2630,7 +2630,7 @@ export interface Modules {
|
|
|
2630
2630
|
weight?: number;
|
|
2631
2631
|
cacheable?: boolean;
|
|
2632
2632
|
location?: string;
|
|
2633
|
-
conditions?: (
|
|
2633
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2634
2634
|
params?: {
|
|
2635
2635
|
[k: string]: unknown;
|
|
2636
2636
|
};
|
|
@@ -2685,7 +2685,7 @@ export interface Modules {
|
|
|
2685
2685
|
fullPage?: boolean;
|
|
2686
2686
|
cacheable?: boolean;
|
|
2687
2687
|
location?: string;
|
|
2688
|
-
conditions?: (
|
|
2688
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2689
2689
|
params?: {
|
|
2690
2690
|
[k: string]: unknown;
|
|
2691
2691
|
};
|
|
@@ -2700,7 +2700,7 @@ export interface Modules {
|
|
|
2700
2700
|
fullPage?: boolean;
|
|
2701
2701
|
cacheable?: boolean;
|
|
2702
2702
|
location?: string;
|
|
2703
|
-
conditions?: (
|
|
2703
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2704
2704
|
params?: {
|
|
2705
2705
|
[k: string]: unknown;
|
|
2706
2706
|
};
|
|
@@ -2750,7 +2750,7 @@ export interface Modules {
|
|
|
2750
2750
|
name?: I18NProperty63;
|
|
2751
2751
|
weight?: number;
|
|
2752
2752
|
location?: string;
|
|
2753
|
-
conditions?: (
|
|
2753
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
2754
2754
|
params?: {
|
|
2755
2755
|
[k: string]: unknown;
|
|
2756
2756
|
};
|
|
@@ -2762,7 +2762,7 @@ export interface Modules {
|
|
|
2762
2762
|
name?: I18NProperty63;
|
|
2763
2763
|
weight?: number;
|
|
2764
2764
|
location?: string;
|
|
2765
|
-
conditions?: (
|
|
2765
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
2766
2766
|
params?: {
|
|
2767
2767
|
[k: string]: unknown;
|
|
2768
2768
|
};
|
|
@@ -3222,7 +3222,7 @@ export interface SingleCondition {
|
|
|
3222
3222
|
*
|
|
3223
3223
|
*/
|
|
3224
3224
|
export interface CompositeCondition {
|
|
3225
|
-
conditions?: (
|
|
3225
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3226
3226
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3227
3227
|
[k: string]: unknown;
|
|
3228
3228
|
}
|
|
@@ -5899,14 +5899,14 @@ export interface Icon10 {
|
|
|
5899
5899
|
*
|
|
5900
5900
|
*/
|
|
5901
5901
|
export interface WebItemTarget1 {
|
|
5902
|
-
options?:
|
|
5902
|
+
options?: InlineDialogOptions1 | DialogOptions2 | DialogModuleOptions1;
|
|
5903
5903
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5904
5904
|
[k: string]: unknown;
|
|
5905
5905
|
}
|
|
5906
5906
|
/**
|
|
5907
5907
|
*
|
|
5908
5908
|
*
|
|
5909
|
-
* Options for
|
|
5909
|
+
* Options for an inline dialog target
|
|
5910
5910
|
*
|
|
5911
5911
|
* <h3>Example</h3>
|
|
5912
5912
|
*
|
|
@@ -5916,9 +5916,11 @@ export interface WebItemTarget1 {
|
|
|
5916
5916
|
*
|
|
5917
5917
|
* {
|
|
5918
5918
|
* "target": {
|
|
5919
|
-
* "type": "
|
|
5919
|
+
* "type": "inlinedialog",
|
|
5920
5920
|
* "options": {
|
|
5921
|
-
* "
|
|
5921
|
+
* "onHover": true,
|
|
5922
|
+
* "offsetX": "30px",
|
|
5923
|
+
* "offsetY": "20px"
|
|
5922
5924
|
* }
|
|
5923
5925
|
* }
|
|
5924
5926
|
* }
|
|
@@ -5926,8 +5928,16 @@ export interface WebItemTarget1 {
|
|
|
5926
5928
|
*
|
|
5927
5929
|
*
|
|
5928
5930
|
*/
|
|
5929
|
-
export interface
|
|
5930
|
-
|
|
5931
|
+
export interface InlineDialogOptions1 {
|
|
5932
|
+
offsetX?: string;
|
|
5933
|
+
offsetY?: string;
|
|
5934
|
+
width?: string;
|
|
5935
|
+
onTop?: boolean;
|
|
5936
|
+
showDelay?: number;
|
|
5937
|
+
closeOthers?: boolean;
|
|
5938
|
+
persistent?: boolean;
|
|
5939
|
+
onHover?: boolean;
|
|
5940
|
+
isRelativeToMouse?: boolean;
|
|
5931
5941
|
[k: string]: unknown;
|
|
5932
5942
|
}
|
|
5933
5943
|
/**
|
|
@@ -6031,7 +6041,7 @@ export interface I18NProperty58 {
|
|
|
6031
6041
|
/**
|
|
6032
6042
|
*
|
|
6033
6043
|
*
|
|
6034
|
-
* Options for
|
|
6044
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6035
6045
|
*
|
|
6036
6046
|
* <h3>Example</h3>
|
|
6037
6047
|
*
|
|
@@ -6041,11 +6051,9 @@ export interface I18NProperty58 {
|
|
|
6041
6051
|
*
|
|
6042
6052
|
* {
|
|
6043
6053
|
* "target": {
|
|
6044
|
-
* "type": "
|
|
6054
|
+
* "type": "dialogmodule",
|
|
6045
6055
|
* "options": {
|
|
6046
|
-
* "
|
|
6047
|
-
* "offsetX": "30px",
|
|
6048
|
-
* "offsetY": "20px"
|
|
6056
|
+
* "key": "dialog-module-key"
|
|
6049
6057
|
* }
|
|
6050
6058
|
* }
|
|
6051
6059
|
* }
|
|
@@ -6053,16 +6061,8 @@ export interface I18NProperty58 {
|
|
|
6053
6061
|
*
|
|
6054
6062
|
*
|
|
6055
6063
|
*/
|
|
6056
|
-
export interface
|
|
6057
|
-
|
|
6058
|
-
offsetY?: string;
|
|
6059
|
-
width?: string;
|
|
6060
|
-
onTop?: boolean;
|
|
6061
|
-
showDelay?: number;
|
|
6062
|
-
closeOthers?: boolean;
|
|
6063
|
-
persistent?: boolean;
|
|
6064
|
-
onHover?: boolean;
|
|
6065
|
-
isRelativeToMouse?: boolean;
|
|
6064
|
+
export interface DialogModuleOptions1 {
|
|
6065
|
+
key: string;
|
|
6066
6066
|
[k: string]: unknown;
|
|
6067
6067
|
}
|
|
6068
6068
|
/**
|
|
@@ -6515,6 +6515,37 @@ export interface I18NProperty63 {
|
|
|
6515
6515
|
i18n?: string;
|
|
6516
6516
|
[k: string]: unknown;
|
|
6517
6517
|
}
|
|
6518
|
+
/**
|
|
6519
|
+
*
|
|
6520
|
+
*
|
|
6521
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6522
|
+
* [Conditions](../../conditions/) for more information.
|
|
6523
|
+
*
|
|
6524
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6525
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6526
|
+
*
|
|
6527
|
+
* <h3>Example</h3>
|
|
6528
|
+
*
|
|
6529
|
+
*
|
|
6530
|
+
*
|
|
6531
|
+
*
|
|
6532
|
+
*
|
|
6533
|
+
* {
|
|
6534
|
+
* "condition": "user_is_logged_in",
|
|
6535
|
+
* "invert": false
|
|
6536
|
+
* }
|
|
6537
|
+
*
|
|
6538
|
+
*
|
|
6539
|
+
*
|
|
6540
|
+
*/
|
|
6541
|
+
export interface SingleCondition5 {
|
|
6542
|
+
condition: string;
|
|
6543
|
+
invert?: boolean;
|
|
6544
|
+
params?: {
|
|
6545
|
+
[k: string]: unknown;
|
|
6546
|
+
};
|
|
6547
|
+
[k: string]: unknown;
|
|
6548
|
+
}
|
|
6518
6549
|
/**
|
|
6519
6550
|
*
|
|
6520
6551
|
*
|
|
@@ -6552,41 +6583,10 @@ export interface I18NProperty63 {
|
|
|
6552
6583
|
*
|
|
6553
6584
|
*/
|
|
6554
6585
|
export interface CompositeCondition7 {
|
|
6555
|
-
conditions?: (
|
|
6586
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6556
6587
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6557
6588
|
[k: string]: unknown;
|
|
6558
6589
|
}
|
|
6559
|
-
/**
|
|
6560
|
-
*
|
|
6561
|
-
*
|
|
6562
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
6563
|
-
* [Conditions](../../conditions/) for more information.
|
|
6564
|
-
*
|
|
6565
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
6566
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
6567
|
-
*
|
|
6568
|
-
* <h3>Example</h3>
|
|
6569
|
-
*
|
|
6570
|
-
*
|
|
6571
|
-
*
|
|
6572
|
-
*
|
|
6573
|
-
*
|
|
6574
|
-
* {
|
|
6575
|
-
* "condition": "user_is_logged_in",
|
|
6576
|
-
* "invert": false
|
|
6577
|
-
* }
|
|
6578
|
-
*
|
|
6579
|
-
*
|
|
6580
|
-
*
|
|
6581
|
-
*/
|
|
6582
|
-
export interface SingleCondition5 {
|
|
6583
|
-
condition: string;
|
|
6584
|
-
invert?: boolean;
|
|
6585
|
-
params?: {
|
|
6586
|
-
[k: string]: unknown;
|
|
6587
|
-
};
|
|
6588
|
-
[k: string]: unknown;
|
|
6589
|
-
}
|
|
6590
6590
|
/**
|
|
6591
6591
|
*
|
|
6592
6592
|
*
|
|
@@ -8006,7 +8006,7 @@ export interface I18NProperty74 {
|
|
|
8006
8006
|
*
|
|
8007
8007
|
*/
|
|
8008
8008
|
export interface MacroPropertyPanel {
|
|
8009
|
-
controls?: (
|
|
8009
|
+
controls?: (TextControl | ButtonControl | ControlGroup | ToggleGroup)[];
|
|
8010
8010
|
cacheable?: boolean;
|
|
8011
8011
|
url: string;
|
|
8012
8012
|
[k: string]: unknown;
|
|
@@ -8014,7 +8014,7 @@ export interface MacroPropertyPanel {
|
|
|
8014
8014
|
/**
|
|
8015
8015
|
*
|
|
8016
8016
|
*
|
|
8017
|
-
* Defines a
|
|
8017
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8018
8018
|
*
|
|
8019
8019
|
* <p><b>Example</b></p>
|
|
8020
8020
|
*
|
|
@@ -8022,34 +8022,21 @@ export interface MacroPropertyPanel {
|
|
|
8022
8022
|
*
|
|
8023
8023
|
*
|
|
8024
8024
|
*
|
|
8025
|
-
*
|
|
8026
|
-
*
|
|
8027
|
-
*
|
|
8028
|
-
* "
|
|
8029
|
-
*
|
|
8030
|
-
*
|
|
8031
|
-
*
|
|
8032
|
-
* "value": "My Custom Control 0"
|
|
8033
|
-
* },
|
|
8034
|
-
* "key": "my-custom-control-0"
|
|
8035
|
-
* },
|
|
8036
|
-
* {
|
|
8037
|
-
* "type": "button",
|
|
8038
|
-
* "label": {
|
|
8039
|
-
* "value": "My Custom Control 1"
|
|
8040
|
-
* },
|
|
8041
|
-
* "key": "my-custom-control-1"
|
|
8042
|
-
* }
|
|
8043
|
-
* ]
|
|
8044
|
-
* }
|
|
8045
|
-
* ]
|
|
8025
|
+
* {
|
|
8026
|
+
* "type": "button",
|
|
8027
|
+
* "label": {
|
|
8028
|
+
* "value": "My Custom Control 0"
|
|
8029
|
+
* },
|
|
8030
|
+
* "key": "my-custom-control-0"
|
|
8031
|
+
* }
|
|
8046
8032
|
*
|
|
8047
8033
|
*
|
|
8048
8034
|
*
|
|
8049
8035
|
*/
|
|
8050
|
-
export interface
|
|
8051
|
-
|
|
8052
|
-
type: '
|
|
8036
|
+
export interface TextControl {
|
|
8037
|
+
macroParameter: string;
|
|
8038
|
+
type: 'text' | 'TEXT';
|
|
8039
|
+
key: string;
|
|
8053
8040
|
[k: string]: unknown;
|
|
8054
8041
|
}
|
|
8055
8042
|
/**
|
|
@@ -8104,6 +8091,47 @@ export interface I18NProperty75 {
|
|
|
8104
8091
|
i18n?: string;
|
|
8105
8092
|
[k: string]: unknown;
|
|
8106
8093
|
}
|
|
8094
|
+
/**
|
|
8095
|
+
*
|
|
8096
|
+
*
|
|
8097
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8098
|
+
*
|
|
8099
|
+
* <p><b>Example</b></p>
|
|
8100
|
+
*
|
|
8101
|
+
*
|
|
8102
|
+
*
|
|
8103
|
+
*
|
|
8104
|
+
*
|
|
8105
|
+
* [
|
|
8106
|
+
* {
|
|
8107
|
+
* "type": "group",
|
|
8108
|
+
* "controls": [
|
|
8109
|
+
* {
|
|
8110
|
+
* "type": "button",
|
|
8111
|
+
* "label": {
|
|
8112
|
+
* "value": "My Custom Control 0"
|
|
8113
|
+
* },
|
|
8114
|
+
* "key": "my-custom-control-0"
|
|
8115
|
+
* },
|
|
8116
|
+
* {
|
|
8117
|
+
* "type": "button",
|
|
8118
|
+
* "label": {
|
|
8119
|
+
* "value": "My Custom Control 1"
|
|
8120
|
+
* },
|
|
8121
|
+
* "key": "my-custom-control-1"
|
|
8122
|
+
* }
|
|
8123
|
+
* ]
|
|
8124
|
+
* }
|
|
8125
|
+
* ]
|
|
8126
|
+
*
|
|
8127
|
+
*
|
|
8128
|
+
*
|
|
8129
|
+
*/
|
|
8130
|
+
export interface ControlGroup {
|
|
8131
|
+
controls: ButtonControl1[];
|
|
8132
|
+
type: 'group' | 'GROUP';
|
|
8133
|
+
[k: string]: unknown;
|
|
8134
|
+
}
|
|
8107
8135
|
/**
|
|
8108
8136
|
*
|
|
8109
8137
|
*
|
|
@@ -8156,34 +8184,6 @@ export interface I18NProperty76 {
|
|
|
8156
8184
|
i18n?: string;
|
|
8157
8185
|
[k: string]: unknown;
|
|
8158
8186
|
}
|
|
8159
|
-
/**
|
|
8160
|
-
*
|
|
8161
|
-
*
|
|
8162
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
8163
|
-
*
|
|
8164
|
-
* <p><b>Example</b></p>
|
|
8165
|
-
*
|
|
8166
|
-
*
|
|
8167
|
-
*
|
|
8168
|
-
*
|
|
8169
|
-
*
|
|
8170
|
-
* {
|
|
8171
|
-
* "type": "button",
|
|
8172
|
-
* "label": {
|
|
8173
|
-
* "value": "My Custom Control 0"
|
|
8174
|
-
* },
|
|
8175
|
-
* "key": "my-custom-control-0"
|
|
8176
|
-
* }
|
|
8177
|
-
*
|
|
8178
|
-
*
|
|
8179
|
-
*
|
|
8180
|
-
*/
|
|
8181
|
-
export interface TextControl {
|
|
8182
|
-
macroParameter: string;
|
|
8183
|
-
type: 'text' | 'TEXT';
|
|
8184
|
-
key: string;
|
|
8185
|
-
[k: string]: unknown;
|
|
8186
|
-
}
|
|
8187
8187
|
/**
|
|
8188
8188
|
*
|
|
8189
8189
|
*
|
|
@@ -29251,63 +29251,11 @@ export interface I18NProperty83 {
|
|
|
29251
29251
|
*
|
|
29252
29252
|
*/
|
|
29253
29253
|
export interface MacroPropertyPanel1 {
|
|
29254
|
-
controls?: (
|
|
29254
|
+
controls?: (ToggleGroup1 | TextControl1 | ControlGroup1 | ButtonControl3)[];
|
|
29255
29255
|
cacheable?: boolean;
|
|
29256
29256
|
url: string;
|
|
29257
29257
|
[k: string]: unknown;
|
|
29258
29258
|
}
|
|
29259
|
-
/**
|
|
29260
|
-
*
|
|
29261
|
-
*
|
|
29262
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
29263
|
-
*
|
|
29264
|
-
* <p><b>Example</b></p>
|
|
29265
|
-
*
|
|
29266
|
-
*
|
|
29267
|
-
*
|
|
29268
|
-
*
|
|
29269
|
-
*
|
|
29270
|
-
* {
|
|
29271
|
-
* "type": "button",
|
|
29272
|
-
* "label": {
|
|
29273
|
-
* "value": "My Custom Control 0"
|
|
29274
|
-
* },
|
|
29275
|
-
* "key": "my-custom-control-0"
|
|
29276
|
-
* }
|
|
29277
|
-
*
|
|
29278
|
-
*
|
|
29279
|
-
*
|
|
29280
|
-
*/
|
|
29281
|
-
export interface ButtonControl2 {
|
|
29282
|
-
label: I18NProperty84;
|
|
29283
|
-
type: 'button' | 'BUTTON';
|
|
29284
|
-
key: string;
|
|
29285
|
-
[k: string]: unknown;
|
|
29286
|
-
}
|
|
29287
|
-
/**
|
|
29288
|
-
*
|
|
29289
|
-
*
|
|
29290
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29291
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29292
|
-
*
|
|
29293
|
-
* <h3>Example</h3>
|
|
29294
|
-
*
|
|
29295
|
-
*
|
|
29296
|
-
*
|
|
29297
|
-
*
|
|
29298
|
-
*
|
|
29299
|
-
* {
|
|
29300
|
-
* "value": "My text"
|
|
29301
|
-
* }
|
|
29302
|
-
*
|
|
29303
|
-
*
|
|
29304
|
-
*
|
|
29305
|
-
*/
|
|
29306
|
-
export interface I18NProperty84 {
|
|
29307
|
-
value: string;
|
|
29308
|
-
i18n?: string;
|
|
29309
|
-
[k: string]: unknown;
|
|
29310
|
-
}
|
|
29311
29259
|
/**
|
|
29312
29260
|
*
|
|
29313
29261
|
*
|
|
@@ -29378,7 +29326,7 @@ export interface ToggleGroup1 {
|
|
|
29378
29326
|
*/
|
|
29379
29327
|
export interface ToggleButtonControl1 {
|
|
29380
29328
|
macroParameterValue: string;
|
|
29381
|
-
label:
|
|
29329
|
+
label: I18NProperty84;
|
|
29382
29330
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29383
29331
|
key: string;
|
|
29384
29332
|
[k: string]: unknown;
|
|
@@ -29402,7 +29350,7 @@ export interface ToggleButtonControl1 {
|
|
|
29402
29350
|
*
|
|
29403
29351
|
*
|
|
29404
29352
|
*/
|
|
29405
|
-
export interface
|
|
29353
|
+
export interface I18NProperty84 {
|
|
29406
29354
|
value: string;
|
|
29407
29355
|
i18n?: string;
|
|
29408
29356
|
[k: string]: unknown;
|
|
@@ -29472,10 +29420,62 @@ export interface TextControl1 {
|
|
|
29472
29420
|
*
|
|
29473
29421
|
*/
|
|
29474
29422
|
export interface ControlGroup1 {
|
|
29475
|
-
controls:
|
|
29423
|
+
controls: ButtonControl2[];
|
|
29476
29424
|
type: 'group' | 'GROUP';
|
|
29477
29425
|
[k: string]: unknown;
|
|
29478
29426
|
}
|
|
29427
|
+
/**
|
|
29428
|
+
*
|
|
29429
|
+
*
|
|
29430
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29431
|
+
*
|
|
29432
|
+
* <p><b>Example</b></p>
|
|
29433
|
+
*
|
|
29434
|
+
*
|
|
29435
|
+
*
|
|
29436
|
+
*
|
|
29437
|
+
*
|
|
29438
|
+
* {
|
|
29439
|
+
* "type": "button",
|
|
29440
|
+
* "label": {
|
|
29441
|
+
* "value": "My Custom Control 0"
|
|
29442
|
+
* },
|
|
29443
|
+
* "key": "my-custom-control-0"
|
|
29444
|
+
* }
|
|
29445
|
+
*
|
|
29446
|
+
*
|
|
29447
|
+
*
|
|
29448
|
+
*/
|
|
29449
|
+
export interface ButtonControl2 {
|
|
29450
|
+
label: I18NProperty85;
|
|
29451
|
+
type: 'button' | 'BUTTON';
|
|
29452
|
+
key: string;
|
|
29453
|
+
[k: string]: unknown;
|
|
29454
|
+
}
|
|
29455
|
+
/**
|
|
29456
|
+
*
|
|
29457
|
+
*
|
|
29458
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
29459
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
29460
|
+
*
|
|
29461
|
+
* <h3>Example</h3>
|
|
29462
|
+
*
|
|
29463
|
+
*
|
|
29464
|
+
*
|
|
29465
|
+
*
|
|
29466
|
+
*
|
|
29467
|
+
* {
|
|
29468
|
+
* "value": "My text"
|
|
29469
|
+
* }
|
|
29470
|
+
*
|
|
29471
|
+
*
|
|
29472
|
+
*
|
|
29473
|
+
*/
|
|
29474
|
+
export interface I18NProperty85 {
|
|
29475
|
+
value: string;
|
|
29476
|
+
i18n?: string;
|
|
29477
|
+
[k: string]: unknown;
|
|
29478
|
+
}
|
|
29479
29479
|
/**
|
|
29480
29480
|
*
|
|
29481
29481
|
*
|
|
@@ -50377,10 +50377,74 @@ export interface I18NProperty91 {
|
|
|
50377
50377
|
*
|
|
50378
50378
|
*/
|
|
50379
50379
|
export interface WebItemTarget2 {
|
|
50380
|
-
options?:
|
|
50380
|
+
options?: DialogModuleOptions2 | InlineDialogOptions2 | DialogOptions4;
|
|
50381
50381
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50382
50382
|
[k: string]: unknown;
|
|
50383
50383
|
}
|
|
50384
|
+
/**
|
|
50385
|
+
*
|
|
50386
|
+
*
|
|
50387
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50388
|
+
*
|
|
50389
|
+
* <h3>Example</h3>
|
|
50390
|
+
*
|
|
50391
|
+
*
|
|
50392
|
+
*
|
|
50393
|
+
*
|
|
50394
|
+
*
|
|
50395
|
+
* {
|
|
50396
|
+
* "target": {
|
|
50397
|
+
* "type": "dialogmodule",
|
|
50398
|
+
* "options": {
|
|
50399
|
+
* "key": "dialog-module-key"
|
|
50400
|
+
* }
|
|
50401
|
+
* }
|
|
50402
|
+
* }
|
|
50403
|
+
*
|
|
50404
|
+
*
|
|
50405
|
+
*
|
|
50406
|
+
*/
|
|
50407
|
+
export interface DialogModuleOptions2 {
|
|
50408
|
+
key: string;
|
|
50409
|
+
[k: string]: unknown;
|
|
50410
|
+
}
|
|
50411
|
+
/**
|
|
50412
|
+
*
|
|
50413
|
+
*
|
|
50414
|
+
* Options for an inline dialog target
|
|
50415
|
+
*
|
|
50416
|
+
* <h3>Example</h3>
|
|
50417
|
+
*
|
|
50418
|
+
*
|
|
50419
|
+
*
|
|
50420
|
+
*
|
|
50421
|
+
*
|
|
50422
|
+
* {
|
|
50423
|
+
* "target": {
|
|
50424
|
+
* "type": "inlinedialog",
|
|
50425
|
+
* "options": {
|
|
50426
|
+
* "onHover": true,
|
|
50427
|
+
* "offsetX": "30px",
|
|
50428
|
+
* "offsetY": "20px"
|
|
50429
|
+
* }
|
|
50430
|
+
* }
|
|
50431
|
+
* }
|
|
50432
|
+
*
|
|
50433
|
+
*
|
|
50434
|
+
*
|
|
50435
|
+
*/
|
|
50436
|
+
export interface InlineDialogOptions2 {
|
|
50437
|
+
offsetX?: string;
|
|
50438
|
+
offsetY?: string;
|
|
50439
|
+
width?: string;
|
|
50440
|
+
onTop?: boolean;
|
|
50441
|
+
showDelay?: number;
|
|
50442
|
+
closeOthers?: boolean;
|
|
50443
|
+
persistent?: boolean;
|
|
50444
|
+
onHover?: boolean;
|
|
50445
|
+
isRelativeToMouse?: boolean;
|
|
50446
|
+
[k: string]: unknown;
|
|
50447
|
+
}
|
|
50384
50448
|
/**
|
|
50385
50449
|
*
|
|
50386
50450
|
*
|
|
@@ -50479,70 +50543,6 @@ export interface I18NProperty92 {
|
|
|
50479
50543
|
i18n?: string;
|
|
50480
50544
|
[k: string]: unknown;
|
|
50481
50545
|
}
|
|
50482
|
-
/**
|
|
50483
|
-
*
|
|
50484
|
-
*
|
|
50485
|
-
* Options for an inline dialog target
|
|
50486
|
-
*
|
|
50487
|
-
* <h3>Example</h3>
|
|
50488
|
-
*
|
|
50489
|
-
*
|
|
50490
|
-
*
|
|
50491
|
-
*
|
|
50492
|
-
*
|
|
50493
|
-
* {
|
|
50494
|
-
* "target": {
|
|
50495
|
-
* "type": "inlinedialog",
|
|
50496
|
-
* "options": {
|
|
50497
|
-
* "onHover": true,
|
|
50498
|
-
* "offsetX": "30px",
|
|
50499
|
-
* "offsetY": "20px"
|
|
50500
|
-
* }
|
|
50501
|
-
* }
|
|
50502
|
-
* }
|
|
50503
|
-
*
|
|
50504
|
-
*
|
|
50505
|
-
*
|
|
50506
|
-
*/
|
|
50507
|
-
export interface InlineDialogOptions2 {
|
|
50508
|
-
offsetX?: string;
|
|
50509
|
-
offsetY?: string;
|
|
50510
|
-
width?: string;
|
|
50511
|
-
onTop?: boolean;
|
|
50512
|
-
showDelay?: number;
|
|
50513
|
-
closeOthers?: boolean;
|
|
50514
|
-
persistent?: boolean;
|
|
50515
|
-
onHover?: boolean;
|
|
50516
|
-
isRelativeToMouse?: boolean;
|
|
50517
|
-
[k: string]: unknown;
|
|
50518
|
-
}
|
|
50519
|
-
/**
|
|
50520
|
-
*
|
|
50521
|
-
*
|
|
50522
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50523
|
-
*
|
|
50524
|
-
* <h3>Example</h3>
|
|
50525
|
-
*
|
|
50526
|
-
*
|
|
50527
|
-
*
|
|
50528
|
-
*
|
|
50529
|
-
*
|
|
50530
|
-
* {
|
|
50531
|
-
* "target": {
|
|
50532
|
-
* "type": "dialogmodule",
|
|
50533
|
-
* "options": {
|
|
50534
|
-
* "key": "dialog-module-key"
|
|
50535
|
-
* }
|
|
50536
|
-
* }
|
|
50537
|
-
* }
|
|
50538
|
-
*
|
|
50539
|
-
*
|
|
50540
|
-
*
|
|
50541
|
-
*/
|
|
50542
|
-
export interface DialogModuleOptions2 {
|
|
50543
|
-
key: string;
|
|
50544
|
-
[k: string]: unknown;
|
|
50545
|
-
}
|
|
50546
50546
|
/**
|
|
50547
50547
|
*
|
|
50548
50548
|
*
|