@forge/manifest 2.5.0-next.8 → 2.5.1-next.1
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 +45 -0
- package/out/mapping/product-event-to-scope-mapping.json +36 -0
- package/out/schema/manifest-schema.json +202 -202
- package/out/schema/manifest.d.ts +187 -187
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 2.5.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- af1473c: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 2.5.1-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 06209fc: Update manifest definitions
|
|
14
|
+
|
|
15
|
+
## 2.5.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 70e9c8c: Add Jira global full page and Jira projects settings full page extensions
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 4de9850: Added new product events to scope mapping for custom field: deleted/updated/trashed/restored
|
|
24
|
+
- fde4ba7: Adds Compass component link product event -> OAuth scope mapping
|
|
25
|
+
- 601527b: Add scope mappings for Confluence space events
|
|
26
|
+
- 755e35e: Added new product events to scope mapping for custom field context: added/updated/deleted
|
|
27
|
+
- a5656f6: Update manifest definitions
|
|
28
|
+
- cc8799c: Update manifest definitions
|
|
29
|
+
- f5eb8e0: Update manifest definitions
|
|
30
|
+
- f013199: Update manifest definitions
|
|
31
|
+
- 78d682f: Update manifest definitions
|
|
32
|
+
- 70e9c8c: Update manifest definitions
|
|
33
|
+
- dec8066: Update manifest definitions
|
|
34
|
+
- 0e82242: Update manifest definitions
|
|
35
|
+
|
|
36
|
+
## 2.5.0-next.10
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- fde4ba7: Adds Compass component link product event -> OAuth scope mapping
|
|
41
|
+
|
|
42
|
+
## 2.5.0-next.9
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- 601527b: Add scope mappings for Confluence space events
|
|
47
|
+
|
|
3
48
|
## 2.5.0-next.8
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|
|
@@ -167,6 +167,42 @@
|
|
|
167
167
|
"oAuthScopes": [
|
|
168
168
|
"read:confluence-content.all"
|
|
169
169
|
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"productEvent": "avi:confluence:created:space:V2",
|
|
173
|
+
"oAuthScopes": [
|
|
174
|
+
"read:confluence-space.summary"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"productEvent": "avi:confluence:updated:space:V2",
|
|
179
|
+
"oAuthScopes": [
|
|
180
|
+
"read:confluence-space.summary"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"productEvent": "avi:confluence:deleted:space:V2",
|
|
185
|
+
"oAuthScopes": [
|
|
186
|
+
"read:confluence-space.summary"
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"productEvent": "avi:compass:created:component_link",
|
|
191
|
+
"oAuthScopes": [
|
|
192
|
+
"read:component:compass"
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"productEvent": "avi:compass:updated:component_link",
|
|
197
|
+
"oAuthScopes": [
|
|
198
|
+
"read:component:compass"
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"productEvent": "avi:compass:deleted:component_link",
|
|
203
|
+
"oAuthScopes": [
|
|
204
|
+
"read:component:compass"
|
|
205
|
+
]
|
|
170
206
|
}
|
|
171
207
|
]
|
|
172
208
|
}
|
|
@@ -5356,10 +5356,10 @@
|
|
|
5356
5356
|
"type": "object",
|
|
5357
5357
|
"anyOf": [
|
|
5358
5358
|
{
|
|
5359
|
-
"$ref": "#/definitions/
|
|
5359
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5360
5360
|
},
|
|
5361
5361
|
{
|
|
5362
|
-
"$ref": "#/definitions/
|
|
5362
|
+
"$ref": "#/definitions/singleCondition"
|
|
5363
5363
|
}
|
|
5364
5364
|
]
|
|
5365
5365
|
},
|
|
@@ -5427,10 +5427,10 @@
|
|
|
5427
5427
|
"type": "object",
|
|
5428
5428
|
"anyOf": [
|
|
5429
5429
|
{
|
|
5430
|
-
"$ref": "#/definitions/
|
|
5430
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5431
5431
|
},
|
|
5432
5432
|
{
|
|
5433
|
-
"$ref": "#/definitions/
|
|
5433
|
+
"$ref": "#/definitions/singleCondition"
|
|
5434
5434
|
}
|
|
5435
5435
|
]
|
|
5436
5436
|
},
|
|
@@ -5482,10 +5482,10 @@
|
|
|
5482
5482
|
"type": "object",
|
|
5483
5483
|
"anyOf": [
|
|
5484
5484
|
{
|
|
5485
|
-
"$ref": "#/definitions/
|
|
5485
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5486
5486
|
},
|
|
5487
5487
|
{
|
|
5488
|
-
"$ref": "#/definitions/
|
|
5488
|
+
"$ref": "#/definitions/singleCondition"
|
|
5489
5489
|
}
|
|
5490
5490
|
]
|
|
5491
5491
|
},
|
|
@@ -5735,53 +5735,6 @@
|
|
|
5735
5735
|
"type": "object",
|
|
5736
5736
|
"fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
|
|
5737
5737
|
"anyOf": [
|
|
5738
|
-
{
|
|
5739
|
-
"properties": {
|
|
5740
|
-
"offsetX": {
|
|
5741
|
-
"maxLength": 10,
|
|
5742
|
-
"type": "string",
|
|
5743
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
5744
|
-
},
|
|
5745
|
-
"offsetY": {
|
|
5746
|
-
"maxLength": 10,
|
|
5747
|
-
"type": "string",
|
|
5748
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
5749
|
-
},
|
|
5750
|
-
"width": {
|
|
5751
|
-
"maxLength": 10,
|
|
5752
|
-
"type": "string",
|
|
5753
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5754
|
-
},
|
|
5755
|
-
"onTop": {
|
|
5756
|
-
"type": "boolean",
|
|
5757
|
-
"fieldDescription": "\n\nDetermines if the dialog should be shown above the trigger or not. If this option is true but there is insufficient room above the trigger the inline-dialog will be flipped to display below it\n\n"
|
|
5758
|
-
},
|
|
5759
|
-
"showDelay": {
|
|
5760
|
-
"type": "integer",
|
|
5761
|
-
"fieldDescription": "\n\nDetermines how long in milliseconds after a show trigger is fired (such as a trigger click) until the dialog is shown\n\n"
|
|
5762
|
-
},
|
|
5763
|
-
"closeOthers": {
|
|
5764
|
-
"type": "boolean",
|
|
5765
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
5766
|
-
},
|
|
5767
|
-
"persistent": {
|
|
5768
|
-
"type": "boolean",
|
|
5769
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
5770
|
-
},
|
|
5771
|
-
"onHover": {
|
|
5772
|
-
"type": "boolean",
|
|
5773
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
5774
|
-
},
|
|
5775
|
-
"isRelativeToMouse": {
|
|
5776
|
-
"type": "boolean",
|
|
5777
|
-
"fieldDescription": "\n\nDetermines if the dialog should be shown relative to where the mouse is at the time of the event trigger (normally a click) if set to false the dialog will show aligned to the left of the trigger with the arrow showing at the center\n\n"
|
|
5778
|
-
}
|
|
5779
|
-
},
|
|
5780
|
-
"shortClassName": "inlineDialogOptions",
|
|
5781
|
-
"type": "object",
|
|
5782
|
-
"title": "Inline Dialog Options",
|
|
5783
|
-
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
5784
|
-
},
|
|
5785
5738
|
{
|
|
5786
5739
|
"properties": {
|
|
5787
5740
|
"size": {
|
|
@@ -5842,6 +5795,53 @@
|
|
|
5842
5795
|
"type": "object",
|
|
5843
5796
|
"title": "Dialog Module Options",
|
|
5844
5797
|
"description": "\n\nOptions for a web-item targeting a common <a href=\"../dialog/\">dialog module</a>.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialogmodule\",\n \"options\": {\n \"key\": \"dialog-module-key\"\n }\n }\n }\n\n\n"
|
|
5798
|
+
},
|
|
5799
|
+
{
|
|
5800
|
+
"properties": {
|
|
5801
|
+
"offsetX": {
|
|
5802
|
+
"maxLength": 10,
|
|
5803
|
+
"type": "string",
|
|
5804
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
5805
|
+
},
|
|
5806
|
+
"offsetY": {
|
|
5807
|
+
"maxLength": 10,
|
|
5808
|
+
"type": "string",
|
|
5809
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
5810
|
+
},
|
|
5811
|
+
"width": {
|
|
5812
|
+
"maxLength": 10,
|
|
5813
|
+
"type": "string",
|
|
5814
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5815
|
+
},
|
|
5816
|
+
"onTop": {
|
|
5817
|
+
"type": "boolean",
|
|
5818
|
+
"fieldDescription": "\n\nDetermines if the dialog should be shown above the trigger or not. If this option is true but there is insufficient room above the trigger the inline-dialog will be flipped to display below it\n\n"
|
|
5819
|
+
},
|
|
5820
|
+
"showDelay": {
|
|
5821
|
+
"type": "integer",
|
|
5822
|
+
"fieldDescription": "\n\nDetermines how long in milliseconds after a show trigger is fired (such as a trigger click) until the dialog is shown\n\n"
|
|
5823
|
+
},
|
|
5824
|
+
"closeOthers": {
|
|
5825
|
+
"type": "boolean",
|
|
5826
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
5827
|
+
},
|
|
5828
|
+
"persistent": {
|
|
5829
|
+
"type": "boolean",
|
|
5830
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
5831
|
+
},
|
|
5832
|
+
"onHover": {
|
|
5833
|
+
"type": "boolean",
|
|
5834
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
5835
|
+
},
|
|
5836
|
+
"isRelativeToMouse": {
|
|
5837
|
+
"type": "boolean",
|
|
5838
|
+
"fieldDescription": "\n\nDetermines if the dialog should be shown relative to where the mouse is at the time of the event trigger (normally a click) if set to false the dialog will show aligned to the left of the trigger with the arrow showing at the center\n\n"
|
|
5839
|
+
}
|
|
5840
|
+
},
|
|
5841
|
+
"shortClassName": "inlineDialogOptions",
|
|
5842
|
+
"type": "object",
|
|
5843
|
+
"title": "Inline Dialog Options",
|
|
5844
|
+
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
5845
5845
|
}
|
|
5846
5846
|
]
|
|
5847
5847
|
},
|
|
@@ -6010,10 +6010,10 @@
|
|
|
6010
6010
|
"type": "object",
|
|
6011
6011
|
"anyOf": [
|
|
6012
6012
|
{
|
|
6013
|
-
"$ref": "#/definitions/
|
|
6013
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6014
6014
|
},
|
|
6015
6015
|
{
|
|
6016
|
-
"$ref": "#/definitions/
|
|
6016
|
+
"$ref": "#/definitions/singleCondition"
|
|
6017
6017
|
}
|
|
6018
6018
|
]
|
|
6019
6019
|
},
|
|
@@ -6161,33 +6161,6 @@
|
|
|
6161
6161
|
"items": {
|
|
6162
6162
|
"type": "object",
|
|
6163
6163
|
"anyOf": [
|
|
6164
|
-
{
|
|
6165
|
-
"properties": {
|
|
6166
|
-
"condition": {
|
|
6167
|
-
"maxLength": 100,
|
|
6168
|
-
"type": "string",
|
|
6169
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
6170
|
-
},
|
|
6171
|
-
"invert": {
|
|
6172
|
-
"type": "boolean",
|
|
6173
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
6174
|
-
"defaultValue": "false"
|
|
6175
|
-
},
|
|
6176
|
-
"params": {
|
|
6177
|
-
"additionalProperties": true,
|
|
6178
|
-
"type": "object",
|
|
6179
|
-
"fieldTitle": "Object",
|
|
6180
|
-
"fieldDescription": "\n\nThis object represents a map of key/value pairs, where each property name and value corresponds to the parameter name and value respectively.\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"params\": {\n \"someOtherProperty\": \"someValue\",\n \"myCustomProperty\": \"myValue\"\n }\n }\n\n\n"
|
|
6181
|
-
}
|
|
6182
|
-
},
|
|
6183
|
-
"required": [
|
|
6184
|
-
"condition"
|
|
6185
|
-
],
|
|
6186
|
-
"shortClassName": "singleConditionBean",
|
|
6187
|
-
"type": "object",
|
|
6188
|
-
"title": "Single Condition",
|
|
6189
|
-
"description": "\n\nSingle Conditions are either provided by the host application. See the complete documentation of\n [Conditions](../../conditions/) for more information.\n\n To invert a condition, add the attribute ``invert=\"true\"`` to the condition element.\n This is useful where you want to show the section if a certain condition is not satisfied.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n\n\n"
|
|
6190
|
-
},
|
|
6191
6164
|
{
|
|
6192
6165
|
"properties": {
|
|
6193
6166
|
"conditions": {
|
|
@@ -6195,10 +6168,10 @@
|
|
|
6195
6168
|
"type": "object",
|
|
6196
6169
|
"anyOf": [
|
|
6197
6170
|
{
|
|
6198
|
-
"$ref": "
|
|
6171
|
+
"$ref": "#/definitions/singleCondition"
|
|
6199
6172
|
},
|
|
6200
6173
|
{
|
|
6201
|
-
"$ref": "
|
|
6174
|
+
"$ref": "#"
|
|
6202
6175
|
}
|
|
6203
6176
|
]
|
|
6204
6177
|
},
|
|
@@ -6220,6 +6193,33 @@
|
|
|
6220
6193
|
"type": "object",
|
|
6221
6194
|
"title": "Composite Condition",
|
|
6222
6195
|
"description": "\n\nComposite Conditions are composed of a collection of [Single Condition](../single-condition/) / Composite Conditions\n and a type attribute.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"conditions\": [\n {\n \"or\": [\n {\n \"condition\": \"can_attach_file_to_issue\",\n \"invert\": false\n },\n {\n \"condition\": \"is_issue_assigned_to_current_user\",\n \"invert\": false\n }\n ]\n },\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n ]\n }\n\n\n"
|
|
6196
|
+
},
|
|
6197
|
+
{
|
|
6198
|
+
"properties": {
|
|
6199
|
+
"condition": {
|
|
6200
|
+
"maxLength": 100,
|
|
6201
|
+
"type": "string",
|
|
6202
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
6203
|
+
},
|
|
6204
|
+
"invert": {
|
|
6205
|
+
"type": "boolean",
|
|
6206
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
6207
|
+
"defaultValue": "false"
|
|
6208
|
+
},
|
|
6209
|
+
"params": {
|
|
6210
|
+
"additionalProperties": true,
|
|
6211
|
+
"type": "object",
|
|
6212
|
+
"fieldTitle": "Object",
|
|
6213
|
+
"fieldDescription": "\n\nThis object represents a map of key/value pairs, where each property name and value corresponds to the parameter name and value respectively.\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"params\": {\n \"someOtherProperty\": \"someValue\",\n \"myCustomProperty\": \"myValue\"\n }\n }\n\n\n"
|
|
6214
|
+
}
|
|
6215
|
+
},
|
|
6216
|
+
"required": [
|
|
6217
|
+
"condition"
|
|
6218
|
+
],
|
|
6219
|
+
"shortClassName": "singleConditionBean",
|
|
6220
|
+
"type": "object",
|
|
6221
|
+
"title": "Single Condition",
|
|
6222
|
+
"description": "\n\nSingle Conditions are either provided by the host application. See the complete documentation of\n [Conditions](../../conditions/) for more information.\n\n To invert a condition, add the attribute ``invert=\"true\"`` to the condition element.\n This is useful where you want to show the section if a certain condition is not satisfied.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n\n\n"
|
|
6223
6223
|
}
|
|
6224
6224
|
]
|
|
6225
6225
|
},
|
|
@@ -6980,22 +6980,17 @@
|
|
|
6980
6980
|
"controls": {
|
|
6981
6981
|
"items": {
|
|
6982
6982
|
"properties": {
|
|
6983
|
-
"macroParameterValue": {
|
|
6984
|
-
"maxLength": 10000,
|
|
6985
|
-
"type": "string",
|
|
6986
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
6987
|
-
},
|
|
6988
6983
|
"label": {
|
|
6989
6984
|
"$ref": "#/definitions/i18nProperty",
|
|
6990
6985
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6991
6986
|
},
|
|
6992
6987
|
"type": {
|
|
6993
6988
|
"enum": [
|
|
6994
|
-
"
|
|
6995
|
-
"
|
|
6989
|
+
"button",
|
|
6990
|
+
"BUTTON"
|
|
6996
6991
|
],
|
|
6997
6992
|
"type": "string",
|
|
6998
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
6993
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6999
6994
|
},
|
|
7000
6995
|
"key": {
|
|
7001
6996
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7005,44 +7000,36 @@
|
|
|
7005
7000
|
}
|
|
7006
7001
|
},
|
|
7007
7002
|
"required": [
|
|
7008
|
-
"macroParameterValue",
|
|
7009
7003
|
"label",
|
|
7010
7004
|
"type",
|
|
7011
7005
|
"key"
|
|
7012
7006
|
],
|
|
7013
7007
|
"additionalProperties": true,
|
|
7014
|
-
"shortClassName": "
|
|
7008
|
+
"shortClassName": "buttonControlBean",
|
|
7015
7009
|
"type": "object",
|
|
7016
|
-
"title": "
|
|
7017
|
-
"description": "\n\nDefines a
|
|
7010
|
+
"title": "ButtonControl",
|
|
7011
|
+
"description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
7018
7012
|
},
|
|
7019
7013
|
"type": "array",
|
|
7020
|
-
"fieldDescription": "\n\
|
|
7021
|
-
},
|
|
7022
|
-
"macroParameter": {
|
|
7023
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
7024
|
-
"maxLength": 100,
|
|
7025
|
-
"type": "string",
|
|
7026
|
-
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7014
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7027
7015
|
},
|
|
7028
7016
|
"type": {
|
|
7029
7017
|
"enum": [
|
|
7030
|
-
"
|
|
7031
|
-
"
|
|
7018
|
+
"group",
|
|
7019
|
+
"GROUP"
|
|
7032
7020
|
],
|
|
7033
7021
|
"type": "string",
|
|
7034
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7022
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7035
7023
|
}
|
|
7036
7024
|
},
|
|
7037
7025
|
"required": [
|
|
7038
7026
|
"controls",
|
|
7039
|
-
"macroParameter",
|
|
7040
7027
|
"type"
|
|
7041
7028
|
],
|
|
7042
|
-
"shortClassName": "
|
|
7029
|
+
"shortClassName": "controlGroupBean",
|
|
7043
7030
|
"type": "object",
|
|
7044
|
-
"title": "
|
|
7045
|
-
"description": "\n\nDefines a
|
|
7031
|
+
"title": "ControlGroup",
|
|
7032
|
+
"description": "\n\nDefines a ControlGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"group\",\n \"controls\": [\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n },\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-control-1\"\n }\n ]\n }\n ]\n\n\n"
|
|
7046
7033
|
},
|
|
7047
7034
|
{
|
|
7048
7035
|
"properties": {
|
|
@@ -7076,22 +7063,59 @@
|
|
|
7076
7063
|
"title": "TextControl",
|
|
7077
7064
|
"description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
7078
7065
|
},
|
|
7066
|
+
{
|
|
7067
|
+
"properties": {
|
|
7068
|
+
"label": {
|
|
7069
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7070
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7071
|
+
},
|
|
7072
|
+
"type": {
|
|
7073
|
+
"enum": [
|
|
7074
|
+
"button",
|
|
7075
|
+
"BUTTON"
|
|
7076
|
+
],
|
|
7077
|
+
"type": "string",
|
|
7078
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7079
|
+
},
|
|
7080
|
+
"key": {
|
|
7081
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7082
|
+
"maxLength": 100,
|
|
7083
|
+
"type": "string",
|
|
7084
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7085
|
+
}
|
|
7086
|
+
},
|
|
7087
|
+
"required": [
|
|
7088
|
+
"label",
|
|
7089
|
+
"type",
|
|
7090
|
+
"key"
|
|
7091
|
+
],
|
|
7092
|
+
"additionalProperties": true,
|
|
7093
|
+
"shortClassName": "buttonControlBean",
|
|
7094
|
+
"type": "object",
|
|
7095
|
+
"title": "ButtonControl",
|
|
7096
|
+
"description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
7097
|
+
},
|
|
7079
7098
|
{
|
|
7080
7099
|
"properties": {
|
|
7081
7100
|
"controls": {
|
|
7082
7101
|
"items": {
|
|
7083
7102
|
"properties": {
|
|
7103
|
+
"macroParameterValue": {
|
|
7104
|
+
"maxLength": 10000,
|
|
7105
|
+
"type": "string",
|
|
7106
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7107
|
+
},
|
|
7084
7108
|
"label": {
|
|
7085
7109
|
"$ref": "#/definitions/i18nProperty",
|
|
7086
7110
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7087
7111
|
},
|
|
7088
7112
|
"type": {
|
|
7089
7113
|
"enum": [
|
|
7090
|
-
"
|
|
7091
|
-
"
|
|
7114
|
+
"togglebutton",
|
|
7115
|
+
"TOGGLEBUTTON"
|
|
7092
7116
|
],
|
|
7093
7117
|
"type": "string",
|
|
7094
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7118
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
7095
7119
|
},
|
|
7096
7120
|
"key": {
|
|
7097
7121
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7101,68 +7125,44 @@
|
|
|
7101
7125
|
}
|
|
7102
7126
|
},
|
|
7103
7127
|
"required": [
|
|
7128
|
+
"macroParameterValue",
|
|
7104
7129
|
"label",
|
|
7105
7130
|
"type",
|
|
7106
7131
|
"key"
|
|
7107
7132
|
],
|
|
7108
7133
|
"additionalProperties": true,
|
|
7109
|
-
"shortClassName": "
|
|
7134
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
7110
7135
|
"type": "object",
|
|
7111
|
-
"title": "
|
|
7112
|
-
"description": "\n\nDefines a button which
|
|
7136
|
+
"title": "ToggleButtonControl",
|
|
7137
|
+
"description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n }\n\n\n"
|
|
7113
7138
|
},
|
|
7114
7139
|
"type": "array",
|
|
7115
|
-
"fieldDescription": "\n\
|
|
7140
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
7116
7141
|
},
|
|
7117
|
-
"
|
|
7118
|
-
"
|
|
7119
|
-
|
|
7120
|
-
"GROUP"
|
|
7121
|
-
],
|
|
7142
|
+
"macroParameter": {
|
|
7143
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
7144
|
+
"maxLength": 100,
|
|
7122
7145
|
"type": "string",
|
|
7123
|
-
"fieldDescription": "\n\nThe
|
|
7124
|
-
}
|
|
7125
|
-
},
|
|
7126
|
-
"required": [
|
|
7127
|
-
"controls",
|
|
7128
|
-
"type"
|
|
7129
|
-
],
|
|
7130
|
-
"shortClassName": "controlGroupBean",
|
|
7131
|
-
"type": "object",
|
|
7132
|
-
"title": "ControlGroup",
|
|
7133
|
-
"description": "\n\nDefines a ControlGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"group\",\n \"controls\": [\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n },\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-control-1\"\n }\n ]\n }\n ]\n\n\n"
|
|
7134
|
-
},
|
|
7135
|
-
{
|
|
7136
|
-
"properties": {
|
|
7137
|
-
"label": {
|
|
7138
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7139
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7146
|
+
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7140
7147
|
},
|
|
7141
7148
|
"type": {
|
|
7142
7149
|
"enum": [
|
|
7143
|
-
"
|
|
7144
|
-
"
|
|
7150
|
+
"togglegroup",
|
|
7151
|
+
"TOGGLEGROUP"
|
|
7145
7152
|
],
|
|
7146
7153
|
"type": "string",
|
|
7147
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7148
|
-
},
|
|
7149
|
-
"key": {
|
|
7150
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7151
|
-
"maxLength": 100,
|
|
7152
|
-
"type": "string",
|
|
7153
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7154
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
7154
7155
|
}
|
|
7155
7156
|
},
|
|
7156
7157
|
"required": [
|
|
7157
|
-
"
|
|
7158
|
-
"
|
|
7159
|
-
"
|
|
7158
|
+
"controls",
|
|
7159
|
+
"macroParameter",
|
|
7160
|
+
"type"
|
|
7160
7161
|
],
|
|
7161
|
-
"
|
|
7162
|
-
"shortClassName": "buttonControlBean",
|
|
7162
|
+
"shortClassName": "macroToggleGroupBean",
|
|
7163
7163
|
"type": "object",
|
|
7164
|
-
"title": "
|
|
7165
|
-
"description": "\n\nDefines a
|
|
7164
|
+
"title": "ToggleGroup",
|
|
7165
|
+
"description": "\n\nDefines a ToggleGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"togglegroup\",\n \"macroParameter\": \"toggleGroupMacroParameter\",\n \"controls\": [\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n },\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 1\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-toggle-button-1\"\n }\n ]\n }\n ]\n\n\n"
|
|
7166
7166
|
}
|
|
7167
7167
|
]
|
|
7168
7168
|
},
|
|
@@ -7414,6 +7414,51 @@
|
|
|
7414
7414
|
"title": "Dialog Module Options",
|
|
7415
7415
|
"description": "\n\nOptions for a web-item targeting a common <a href=\"../dialog/\">dialog module</a>.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialogmodule\",\n \"options\": {\n \"key\": \"dialog-module-key\"\n }\n }\n }\n\n\n"
|
|
7416
7416
|
},
|
|
7417
|
+
{
|
|
7418
|
+
"properties": {
|
|
7419
|
+
"size": {
|
|
7420
|
+
"enum": [
|
|
7421
|
+
"small",
|
|
7422
|
+
"SMALL",
|
|
7423
|
+
"medium",
|
|
7424
|
+
"MEDIUM",
|
|
7425
|
+
"large",
|
|
7426
|
+
"LARGE",
|
|
7427
|
+
"x-large",
|
|
7428
|
+
"X-LARGE",
|
|
7429
|
+
"fullscreen",
|
|
7430
|
+
"FULLSCREEN",
|
|
7431
|
+
"maximum",
|
|
7432
|
+
"MAXIMUM"
|
|
7433
|
+
],
|
|
7434
|
+
"type": "string",
|
|
7435
|
+
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
7436
|
+
},
|
|
7437
|
+
"chrome": {
|
|
7438
|
+
"type": "boolean",
|
|
7439
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7440
|
+
"defaultValue": "true"
|
|
7441
|
+
},
|
|
7442
|
+
"width": {
|
|
7443
|
+
"maxLength": 10,
|
|
7444
|
+
"type": "string",
|
|
7445
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7446
|
+
},
|
|
7447
|
+
"header": {
|
|
7448
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7449
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7450
|
+
},
|
|
7451
|
+
"height": {
|
|
7452
|
+
"maxLength": 10,
|
|
7453
|
+
"type": "string",
|
|
7454
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7455
|
+
}
|
|
7456
|
+
},
|
|
7457
|
+
"shortClassName": "dialogOptions",
|
|
7458
|
+
"type": "object",
|
|
7459
|
+
"title": "Dialog Options",
|
|
7460
|
+
"description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
|
|
7461
|
+
},
|
|
7417
7462
|
{
|
|
7418
7463
|
"properties": {
|
|
7419
7464
|
"offsetX": {
|
|
@@ -7460,51 +7505,6 @@
|
|
|
7460
7505
|
"type": "object",
|
|
7461
7506
|
"title": "Inline Dialog Options",
|
|
7462
7507
|
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
7463
|
-
},
|
|
7464
|
-
{
|
|
7465
|
-
"properties": {
|
|
7466
|
-
"size": {
|
|
7467
|
-
"enum": [
|
|
7468
|
-
"small",
|
|
7469
|
-
"SMALL",
|
|
7470
|
-
"medium",
|
|
7471
|
-
"MEDIUM",
|
|
7472
|
-
"large",
|
|
7473
|
-
"LARGE",
|
|
7474
|
-
"x-large",
|
|
7475
|
-
"X-LARGE",
|
|
7476
|
-
"fullscreen",
|
|
7477
|
-
"FULLSCREEN",
|
|
7478
|
-
"maximum",
|
|
7479
|
-
"MAXIMUM"
|
|
7480
|
-
],
|
|
7481
|
-
"type": "string",
|
|
7482
|
-
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
7483
|
-
},
|
|
7484
|
-
"chrome": {
|
|
7485
|
-
"type": "boolean",
|
|
7486
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7487
|
-
"defaultValue": "true"
|
|
7488
|
-
},
|
|
7489
|
-
"width": {
|
|
7490
|
-
"maxLength": 10,
|
|
7491
|
-
"type": "string",
|
|
7492
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7493
|
-
},
|
|
7494
|
-
"header": {
|
|
7495
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7496
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7497
|
-
},
|
|
7498
|
-
"height": {
|
|
7499
|
-
"maxLength": 10,
|
|
7500
|
-
"type": "string",
|
|
7501
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7502
|
-
}
|
|
7503
|
-
},
|
|
7504
|
-
"shortClassName": "dialogOptions",
|
|
7505
|
-
"type": "object",
|
|
7506
|
-
"title": "Dialog Options",
|
|
7507
|
-
"description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
|
|
7508
7508
|
}
|
|
7509
7509
|
]
|
|
7510
7510
|
},
|
|
@@ -8790,10 +8790,10 @@
|
|
|
8790
8790
|
"type": "object",
|
|
8791
8791
|
"anyOf": [
|
|
8792
8792
|
{
|
|
8793
|
-
"$ref": "
|
|
8793
|
+
"$ref": "#/definitions/singleCondition"
|
|
8794
8794
|
},
|
|
8795
8795
|
{
|
|
8796
|
-
"$ref": "
|
|
8796
|
+
"$ref": "#"
|
|
8797
8797
|
}
|
|
8798
8798
|
]
|
|
8799
8799
|
},
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
2550
2550
|
propertyKeys?: string[];
|
|
2551
2551
|
url?: string;
|
|
2552
2552
|
key: ModuleKeySchema;
|
|
@@ -2685,7 +2685,7 @@ export interface Modules {
|
|
|
2685
2685
|
fullPage?: boolean;
|
|
2686
2686
|
cacheable?: boolean;
|
|
2687
2687
|
location?: string;
|
|
2688
|
-
conditions?: (
|
|
2688
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition7 | SingleCondition5)[];
|
|
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?: (CompositeCondition7 | SingleCondition5)[];
|
|
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?: (SingleCondition | ManifestSchema)[];
|
|
3226
3226
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3227
3227
|
[k: string]: unknown;
|
|
3228
3228
|
}
|
|
@@ -5899,47 +5899,10 @@ export interface Icon10 {
|
|
|
5899
5899
|
*
|
|
5900
5900
|
*/
|
|
5901
5901
|
export interface WebItemTarget1 {
|
|
5902
|
-
options?:
|
|
5902
|
+
options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
|
|
5903
5903
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5904
5904
|
[k: string]: unknown;
|
|
5905
5905
|
}
|
|
5906
|
-
/**
|
|
5907
|
-
*
|
|
5908
|
-
*
|
|
5909
|
-
* Options for an inline dialog target
|
|
5910
|
-
*
|
|
5911
|
-
* <h3>Example</h3>
|
|
5912
|
-
*
|
|
5913
|
-
*
|
|
5914
|
-
*
|
|
5915
|
-
*
|
|
5916
|
-
*
|
|
5917
|
-
* {
|
|
5918
|
-
* "target": {
|
|
5919
|
-
* "type": "inlinedialog",
|
|
5920
|
-
* "options": {
|
|
5921
|
-
* "onHover": true,
|
|
5922
|
-
* "offsetX": "30px",
|
|
5923
|
-
* "offsetY": "20px"
|
|
5924
|
-
* }
|
|
5925
|
-
* }
|
|
5926
|
-
* }
|
|
5927
|
-
*
|
|
5928
|
-
*
|
|
5929
|
-
*
|
|
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;
|
|
5941
|
-
[k: string]: unknown;
|
|
5942
|
-
}
|
|
5943
5906
|
/**
|
|
5944
5907
|
*
|
|
5945
5908
|
*
|
|
@@ -6065,6 +6028,43 @@ export interface DialogModuleOptions1 {
|
|
|
6065
6028
|
key: string;
|
|
6066
6029
|
[k: string]: unknown;
|
|
6067
6030
|
}
|
|
6031
|
+
/**
|
|
6032
|
+
*
|
|
6033
|
+
*
|
|
6034
|
+
* Options for an inline dialog target
|
|
6035
|
+
*
|
|
6036
|
+
* <h3>Example</h3>
|
|
6037
|
+
*
|
|
6038
|
+
*
|
|
6039
|
+
*
|
|
6040
|
+
*
|
|
6041
|
+
*
|
|
6042
|
+
* {
|
|
6043
|
+
* "target": {
|
|
6044
|
+
* "type": "inlinedialog",
|
|
6045
|
+
* "options": {
|
|
6046
|
+
* "onHover": true,
|
|
6047
|
+
* "offsetX": "30px",
|
|
6048
|
+
* "offsetY": "20px"
|
|
6049
|
+
* }
|
|
6050
|
+
* }
|
|
6051
|
+
* }
|
|
6052
|
+
*
|
|
6053
|
+
*
|
|
6054
|
+
*
|
|
6055
|
+
*/
|
|
6056
|
+
export interface InlineDialogOptions1 {
|
|
6057
|
+
offsetX?: string;
|
|
6058
|
+
offsetY?: string;
|
|
6059
|
+
width?: string;
|
|
6060
|
+
onTop?: boolean;
|
|
6061
|
+
showDelay?: number;
|
|
6062
|
+
closeOthers?: boolean;
|
|
6063
|
+
persistent?: boolean;
|
|
6064
|
+
onHover?: boolean;
|
|
6065
|
+
isRelativeToMouse?: boolean;
|
|
6066
|
+
[k: string]: unknown;
|
|
6067
|
+
}
|
|
6068
6068
|
/**
|
|
6069
6069
|
*
|
|
6070
6070
|
*
|
|
@@ -6515,37 +6515,6 @@ 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
|
-
}
|
|
6549
6518
|
/**
|
|
6550
6519
|
*
|
|
6551
6520
|
*
|
|
@@ -6583,10 +6552,41 @@ export interface SingleCondition5 {
|
|
|
6583
6552
|
*
|
|
6584
6553
|
*/
|
|
6585
6554
|
export interface CompositeCondition7 {
|
|
6586
|
-
conditions?: (
|
|
6555
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6587
6556
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6588
6557
|
[k: string]: unknown;
|
|
6589
6558
|
}
|
|
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
|
*
|
|
@@ -29251,7 +29251,7 @@ export interface I18NProperty83 {
|
|
|
29251
29251
|
*
|
|
29252
29252
|
*/
|
|
29253
29253
|
export interface MacroPropertyPanel1 {
|
|
29254
|
-
controls?: (
|
|
29254
|
+
controls?: (ControlGroup1 | TextControl1 | ButtonControl3 | ToggleGroup1)[];
|
|
29255
29255
|
cacheable?: boolean;
|
|
29256
29256
|
url: string;
|
|
29257
29257
|
[k: string]: unknown;
|
|
@@ -29259,7 +29259,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29259
29259
|
/**
|
|
29260
29260
|
*
|
|
29261
29261
|
*
|
|
29262
|
-
* Defines a
|
|
29262
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29263
29263
|
*
|
|
29264
29264
|
* <p><b>Example</b></p>
|
|
29265
29265
|
*
|
|
@@ -29269,24 +29269,21 @@ export interface MacroPropertyPanel1 {
|
|
|
29269
29269
|
*
|
|
29270
29270
|
* [
|
|
29271
29271
|
* {
|
|
29272
|
-
* "type": "
|
|
29273
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29272
|
+
* "type": "group",
|
|
29274
29273
|
* "controls": [
|
|
29275
29274
|
* {
|
|
29276
|
-
* "type": "
|
|
29277
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29275
|
+
* "type": "button",
|
|
29278
29276
|
* "label": {
|
|
29279
29277
|
* "value": "My Custom Control 0"
|
|
29280
29278
|
* },
|
|
29281
|
-
* "key": "my-custom-
|
|
29279
|
+
* "key": "my-custom-control-0"
|
|
29282
29280
|
* },
|
|
29283
29281
|
* {
|
|
29284
|
-
* "type": "
|
|
29285
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29282
|
+
* "type": "button",
|
|
29286
29283
|
* "label": {
|
|
29287
29284
|
* "value": "My Custom Control 1"
|
|
29288
29285
|
* },
|
|
29289
|
-
* "key": "my-custom-
|
|
29286
|
+
* "key": "my-custom-control-1"
|
|
29290
29287
|
* }
|
|
29291
29288
|
* ]
|
|
29292
29289
|
* }
|
|
@@ -29295,16 +29292,15 @@ export interface MacroPropertyPanel1 {
|
|
|
29295
29292
|
*
|
|
29296
29293
|
*
|
|
29297
29294
|
*/
|
|
29298
|
-
export interface
|
|
29299
|
-
controls:
|
|
29300
|
-
|
|
29301
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29295
|
+
export interface ControlGroup1 {
|
|
29296
|
+
controls: ButtonControl2[];
|
|
29297
|
+
type: 'group' | 'GROUP';
|
|
29302
29298
|
[k: string]: unknown;
|
|
29303
29299
|
}
|
|
29304
29300
|
/**
|
|
29305
29301
|
*
|
|
29306
29302
|
*
|
|
29307
|
-
* Defines a
|
|
29303
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29308
29304
|
*
|
|
29309
29305
|
* <p><b>Example</b></p>
|
|
29310
29306
|
*
|
|
@@ -29313,21 +29309,19 @@ export interface ToggleGroup1 {
|
|
|
29313
29309
|
*
|
|
29314
29310
|
*
|
|
29315
29311
|
* {
|
|
29316
|
-
* "type": "
|
|
29317
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29312
|
+
* "type": "button",
|
|
29318
29313
|
* "label": {
|
|
29319
29314
|
* "value": "My Custom Control 0"
|
|
29320
29315
|
* },
|
|
29321
|
-
* "key": "my-custom-
|
|
29316
|
+
* "key": "my-custom-control-0"
|
|
29322
29317
|
* }
|
|
29323
29318
|
*
|
|
29324
29319
|
*
|
|
29325
29320
|
*
|
|
29326
29321
|
*/
|
|
29327
|
-
export interface
|
|
29328
|
-
macroParameterValue: string;
|
|
29322
|
+
export interface ButtonControl2 {
|
|
29329
29323
|
label: I18NProperty84;
|
|
29330
|
-
type: '
|
|
29324
|
+
type: 'button' | 'BUTTON';
|
|
29331
29325
|
key: string;
|
|
29332
29326
|
[k: string]: unknown;
|
|
29333
29327
|
}
|
|
@@ -29383,47 +29377,6 @@ export interface TextControl1 {
|
|
|
29383
29377
|
key: string;
|
|
29384
29378
|
[k: string]: unknown;
|
|
29385
29379
|
}
|
|
29386
|
-
/**
|
|
29387
|
-
*
|
|
29388
|
-
*
|
|
29389
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29390
|
-
*
|
|
29391
|
-
* <p><b>Example</b></p>
|
|
29392
|
-
*
|
|
29393
|
-
*
|
|
29394
|
-
*
|
|
29395
|
-
*
|
|
29396
|
-
*
|
|
29397
|
-
* [
|
|
29398
|
-
* {
|
|
29399
|
-
* "type": "group",
|
|
29400
|
-
* "controls": [
|
|
29401
|
-
* {
|
|
29402
|
-
* "type": "button",
|
|
29403
|
-
* "label": {
|
|
29404
|
-
* "value": "My Custom Control 0"
|
|
29405
|
-
* },
|
|
29406
|
-
* "key": "my-custom-control-0"
|
|
29407
|
-
* },
|
|
29408
|
-
* {
|
|
29409
|
-
* "type": "button",
|
|
29410
|
-
* "label": {
|
|
29411
|
-
* "value": "My Custom Control 1"
|
|
29412
|
-
* },
|
|
29413
|
-
* "key": "my-custom-control-1"
|
|
29414
|
-
* }
|
|
29415
|
-
* ]
|
|
29416
|
-
* }
|
|
29417
|
-
* ]
|
|
29418
|
-
*
|
|
29419
|
-
*
|
|
29420
|
-
*
|
|
29421
|
-
*/
|
|
29422
|
-
export interface ControlGroup1 {
|
|
29423
|
-
controls: ButtonControl2[];
|
|
29424
|
-
type: 'group' | 'GROUP';
|
|
29425
|
-
[k: string]: unknown;
|
|
29426
|
-
}
|
|
29427
29380
|
/**
|
|
29428
29381
|
*
|
|
29429
29382
|
*
|
|
@@ -29446,7 +29399,7 @@ export interface ControlGroup1 {
|
|
|
29446
29399
|
*
|
|
29447
29400
|
*
|
|
29448
29401
|
*/
|
|
29449
|
-
export interface
|
|
29402
|
+
export interface ButtonControl3 {
|
|
29450
29403
|
label: I18NProperty85;
|
|
29451
29404
|
type: 'button' | 'BUTTON';
|
|
29452
29405
|
key: string;
|
|
@@ -29479,7 +29432,52 @@ export interface I18NProperty85 {
|
|
|
29479
29432
|
/**
|
|
29480
29433
|
*
|
|
29481
29434
|
*
|
|
29482
|
-
* Defines a
|
|
29435
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29436
|
+
*
|
|
29437
|
+
* <p><b>Example</b></p>
|
|
29438
|
+
*
|
|
29439
|
+
*
|
|
29440
|
+
*
|
|
29441
|
+
*
|
|
29442
|
+
*
|
|
29443
|
+
* [
|
|
29444
|
+
* {
|
|
29445
|
+
* "type": "togglegroup",
|
|
29446
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29447
|
+
* "controls": [
|
|
29448
|
+
* {
|
|
29449
|
+
* "type": "togglebutton",
|
|
29450
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29451
|
+
* "label": {
|
|
29452
|
+
* "value": "My Custom Control 0"
|
|
29453
|
+
* },
|
|
29454
|
+
* "key": "my-custom-toggle-button-0"
|
|
29455
|
+
* },
|
|
29456
|
+
* {
|
|
29457
|
+
* "type": "togglebutton",
|
|
29458
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29459
|
+
* "label": {
|
|
29460
|
+
* "value": "My Custom Control 1"
|
|
29461
|
+
* },
|
|
29462
|
+
* "key": "my-custom-toggle-button-1"
|
|
29463
|
+
* }
|
|
29464
|
+
* ]
|
|
29465
|
+
* }
|
|
29466
|
+
* ]
|
|
29467
|
+
*
|
|
29468
|
+
*
|
|
29469
|
+
*
|
|
29470
|
+
*/
|
|
29471
|
+
export interface ToggleGroup1 {
|
|
29472
|
+
controls: ToggleButtonControl1[];
|
|
29473
|
+
macroParameter: string;
|
|
29474
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29475
|
+
[k: string]: unknown;
|
|
29476
|
+
}
|
|
29477
|
+
/**
|
|
29478
|
+
*
|
|
29479
|
+
*
|
|
29480
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29483
29481
|
*
|
|
29484
29482
|
* <p><b>Example</b></p>
|
|
29485
29483
|
*
|
|
@@ -29488,19 +29486,21 @@ export interface I18NProperty85 {
|
|
|
29488
29486
|
*
|
|
29489
29487
|
*
|
|
29490
29488
|
* {
|
|
29491
|
-
* "type": "
|
|
29489
|
+
* "type": "togglebutton",
|
|
29490
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29492
29491
|
* "label": {
|
|
29493
29492
|
* "value": "My Custom Control 0"
|
|
29494
29493
|
* },
|
|
29495
|
-
* "key": "my-custom-
|
|
29494
|
+
* "key": "my-custom-toggle-button-0"
|
|
29496
29495
|
* }
|
|
29497
29496
|
*
|
|
29498
29497
|
*
|
|
29499
29498
|
*
|
|
29500
29499
|
*/
|
|
29501
|
-
export interface
|
|
29500
|
+
export interface ToggleButtonControl1 {
|
|
29501
|
+
macroParameterValue: string;
|
|
29502
29502
|
label: I18NProperty86;
|
|
29503
|
-
type: '
|
|
29503
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29504
29504
|
key: string;
|
|
29505
29505
|
[k: string]: unknown;
|
|
29506
29506
|
}
|
|
@@ -50377,7 +50377,7 @@ export interface I18NProperty91 {
|
|
|
50377
50377
|
*
|
|
50378
50378
|
*/
|
|
50379
50379
|
export interface WebItemTarget2 {
|
|
50380
|
-
options?: DialogModuleOptions2 |
|
|
50380
|
+
options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
|
|
50381
50381
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50382
50382
|
[k: string]: unknown;
|
|
50383
50383
|
}
|
|
@@ -50408,43 +50408,6 @@ export interface DialogModuleOptions2 {
|
|
|
50408
50408
|
key: string;
|
|
50409
50409
|
[k: string]: unknown;
|
|
50410
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
|
-
}
|
|
50448
50411
|
/**
|
|
50449
50412
|
*
|
|
50450
50413
|
*
|
|
@@ -50543,6 +50506,43 @@ export interface I18NProperty92 {
|
|
|
50543
50506
|
i18n?: string;
|
|
50544
50507
|
[k: string]: unknown;
|
|
50545
50508
|
}
|
|
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
50546
|
/**
|
|
50547
50547
|
*
|
|
50548
50548
|
*
|