@forge/manifest 2.5.1-next.0 → 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 +6 -0
- package/out/schema/manifest-schema.json +143 -143
- package/out/schema/manifest.d.ts +149 -149
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
|
},
|
|
@@ -6525,6 +6525,38 @@
|
|
|
6525
6525
|
"title": "TextControl",
|
|
6526
6526
|
"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"
|
|
6527
6527
|
},
|
|
6528
|
+
{
|
|
6529
|
+
"properties": {
|
|
6530
|
+
"label": {
|
|
6531
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6532
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6533
|
+
},
|
|
6534
|
+
"type": {
|
|
6535
|
+
"enum": [
|
|
6536
|
+
"button",
|
|
6537
|
+
"BUTTON"
|
|
6538
|
+
],
|
|
6539
|
+
"type": "string",
|
|
6540
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6541
|
+
},
|
|
6542
|
+
"key": {
|
|
6543
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6544
|
+
"maxLength": 100,
|
|
6545
|
+
"type": "string",
|
|
6546
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6547
|
+
}
|
|
6548
|
+
},
|
|
6549
|
+
"required": [
|
|
6550
|
+
"label",
|
|
6551
|
+
"type",
|
|
6552
|
+
"key"
|
|
6553
|
+
],
|
|
6554
|
+
"additionalProperties": true,
|
|
6555
|
+
"shortClassName": "buttonControlBean",
|
|
6556
|
+
"type": "object",
|
|
6557
|
+
"title": "ButtonControl",
|
|
6558
|
+
"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"
|
|
6559
|
+
},
|
|
6528
6560
|
{
|
|
6529
6561
|
"properties": {
|
|
6530
6562
|
"controls": {
|
|
@@ -6581,38 +6613,6 @@
|
|
|
6581
6613
|
"title": "ControlGroup",
|
|
6582
6614
|
"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"
|
|
6583
6615
|
},
|
|
6584
|
-
{
|
|
6585
|
-
"properties": {
|
|
6586
|
-
"label": {
|
|
6587
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6588
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6589
|
-
},
|
|
6590
|
-
"type": {
|
|
6591
|
-
"enum": [
|
|
6592
|
-
"button",
|
|
6593
|
-
"BUTTON"
|
|
6594
|
-
],
|
|
6595
|
-
"type": "string",
|
|
6596
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6597
|
-
},
|
|
6598
|
-
"key": {
|
|
6599
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6600
|
-
"maxLength": 100,
|
|
6601
|
-
"type": "string",
|
|
6602
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6603
|
-
}
|
|
6604
|
-
},
|
|
6605
|
-
"required": [
|
|
6606
|
-
"label",
|
|
6607
|
-
"type",
|
|
6608
|
-
"key"
|
|
6609
|
-
],
|
|
6610
|
-
"additionalProperties": true,
|
|
6611
|
-
"shortClassName": "buttonControlBean",
|
|
6612
|
-
"type": "object",
|
|
6613
|
-
"title": "ButtonControl",
|
|
6614
|
-
"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"
|
|
6615
|
-
},
|
|
6616
6616
|
{
|
|
6617
6617
|
"properties": {
|
|
6618
6618
|
"controls": {
|
|
@@ -6977,35 +6977,59 @@
|
|
|
6977
6977
|
"anyOf": [
|
|
6978
6978
|
{
|
|
6979
6979
|
"properties": {
|
|
6980
|
-
"
|
|
6981
|
-
"
|
|
6982
|
-
|
|
6980
|
+
"controls": {
|
|
6981
|
+
"items": {
|
|
6982
|
+
"properties": {
|
|
6983
|
+
"label": {
|
|
6984
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6985
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6986
|
+
},
|
|
6987
|
+
"type": {
|
|
6988
|
+
"enum": [
|
|
6989
|
+
"button",
|
|
6990
|
+
"BUTTON"
|
|
6991
|
+
],
|
|
6992
|
+
"type": "string",
|
|
6993
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6994
|
+
},
|
|
6995
|
+
"key": {
|
|
6996
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6997
|
+
"maxLength": 100,
|
|
6998
|
+
"type": "string",
|
|
6999
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7000
|
+
}
|
|
7001
|
+
},
|
|
7002
|
+
"required": [
|
|
7003
|
+
"label",
|
|
7004
|
+
"type",
|
|
7005
|
+
"key"
|
|
7006
|
+
],
|
|
7007
|
+
"additionalProperties": true,
|
|
7008
|
+
"shortClassName": "buttonControlBean",
|
|
7009
|
+
"type": "object",
|
|
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"
|
|
7012
|
+
},
|
|
7013
|
+
"type": "array",
|
|
7014
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
6983
7015
|
},
|
|
6984
7016
|
"type": {
|
|
6985
7017
|
"enum": [
|
|
6986
|
-
"
|
|
6987
|
-
"
|
|
7018
|
+
"group",
|
|
7019
|
+
"GROUP"
|
|
6988
7020
|
],
|
|
6989
7021
|
"type": "string",
|
|
6990
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
6991
|
-
},
|
|
6992
|
-
"key": {
|
|
6993
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6994
|
-
"maxLength": 100,
|
|
6995
|
-
"type": "string",
|
|
6996
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7022
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
6997
7023
|
}
|
|
6998
7024
|
},
|
|
6999
7025
|
"required": [
|
|
7000
|
-
"
|
|
7001
|
-
"type"
|
|
7002
|
-
"key"
|
|
7026
|
+
"controls",
|
|
7027
|
+
"type"
|
|
7003
7028
|
],
|
|
7004
|
-
"
|
|
7005
|
-
"shortClassName": "buttonControlBean",
|
|
7029
|
+
"shortClassName": "controlGroupBean",
|
|
7006
7030
|
"type": "object",
|
|
7007
|
-
"title": "
|
|
7008
|
-
"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"
|
|
7009
7033
|
},
|
|
7010
7034
|
{
|
|
7011
7035
|
"properties": {
|
|
@@ -7041,59 +7065,35 @@
|
|
|
7041
7065
|
},
|
|
7042
7066
|
{
|
|
7043
7067
|
"properties": {
|
|
7044
|
-
"
|
|
7045
|
-
"
|
|
7046
|
-
|
|
7047
|
-
"label": {
|
|
7048
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7049
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7050
|
-
},
|
|
7051
|
-
"type": {
|
|
7052
|
-
"enum": [
|
|
7053
|
-
"button",
|
|
7054
|
-
"BUTTON"
|
|
7055
|
-
],
|
|
7056
|
-
"type": "string",
|
|
7057
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7058
|
-
},
|
|
7059
|
-
"key": {
|
|
7060
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7061
|
-
"maxLength": 100,
|
|
7062
|
-
"type": "string",
|
|
7063
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7064
|
-
}
|
|
7065
|
-
},
|
|
7066
|
-
"required": [
|
|
7067
|
-
"label",
|
|
7068
|
-
"type",
|
|
7069
|
-
"key"
|
|
7070
|
-
],
|
|
7071
|
-
"additionalProperties": true,
|
|
7072
|
-
"shortClassName": "buttonControlBean",
|
|
7073
|
-
"type": "object",
|
|
7074
|
-
"title": "ButtonControl",
|
|
7075
|
-
"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"
|
|
7076
|
-
},
|
|
7077
|
-
"type": "array",
|
|
7078
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7068
|
+
"label": {
|
|
7069
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7070
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7079
7071
|
},
|
|
7080
7072
|
"type": {
|
|
7081
7073
|
"enum": [
|
|
7082
|
-
"
|
|
7083
|
-
"
|
|
7074
|
+
"button",
|
|
7075
|
+
"BUTTON"
|
|
7084
7076
|
],
|
|
7085
7077
|
"type": "string",
|
|
7086
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
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"
|
|
7087
7085
|
}
|
|
7088
7086
|
},
|
|
7089
7087
|
"required": [
|
|
7090
|
-
"
|
|
7091
|
-
"type"
|
|
7088
|
+
"label",
|
|
7089
|
+
"type",
|
|
7090
|
+
"key"
|
|
7092
7091
|
],
|
|
7093
|
-
"
|
|
7092
|
+
"additionalProperties": true,
|
|
7093
|
+
"shortClassName": "buttonControlBean",
|
|
7094
7094
|
"type": "object",
|
|
7095
|
-
"title": "
|
|
7096
|
-
"description": "\n\nDefines a
|
|
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
7097
|
},
|
|
7098
7098
|
{
|
|
7099
7099
|
"properties": {
|
|
@@ -7365,10 +7365,10 @@
|
|
|
7365
7365
|
"type": "object",
|
|
7366
7366
|
"anyOf": [
|
|
7367
7367
|
{
|
|
7368
|
-
"$ref": "#/definitions/
|
|
7368
|
+
"$ref": "#/definitions/singleCondition"
|
|
7369
7369
|
},
|
|
7370
7370
|
{
|
|
7371
|
-
"$ref": "#/definitions/
|
|
7371
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7372
7372
|
}
|
|
7373
7373
|
]
|
|
7374
7374
|
},
|
|
@@ -7398,6 +7398,22 @@
|
|
|
7398
7398
|
"type": "object",
|
|
7399
7399
|
"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",
|
|
7400
7400
|
"anyOf": [
|
|
7401
|
+
{
|
|
7402
|
+
"properties": {
|
|
7403
|
+
"key": {
|
|
7404
|
+
"maxLength": 100,
|
|
7405
|
+
"type": "string",
|
|
7406
|
+
"fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
|
|
7407
|
+
}
|
|
7408
|
+
},
|
|
7409
|
+
"required": [
|
|
7410
|
+
"key"
|
|
7411
|
+
],
|
|
7412
|
+
"shortClassName": "dialogModuleOptions",
|
|
7413
|
+
"type": "object",
|
|
7414
|
+
"title": "Dialog Module Options",
|
|
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
|
+
},
|
|
7401
7417
|
{
|
|
7402
7418
|
"properties": {
|
|
7403
7419
|
"size": {
|
|
@@ -7443,22 +7459,6 @@
|
|
|
7443
7459
|
"title": "Dialog Options",
|
|
7444
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"
|
|
7445
7461
|
},
|
|
7446
|
-
{
|
|
7447
|
-
"properties": {
|
|
7448
|
-
"key": {
|
|
7449
|
-
"maxLength": 100,
|
|
7450
|
-
"type": "string",
|
|
7451
|
-
"fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
|
|
7452
|
-
}
|
|
7453
|
-
},
|
|
7454
|
-
"required": [
|
|
7455
|
-
"key"
|
|
7456
|
-
],
|
|
7457
|
-
"shortClassName": "dialogModuleOptions",
|
|
7458
|
-
"type": "object",
|
|
7459
|
-
"title": "Dialog Module Options",
|
|
7460
|
-
"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"
|
|
7461
|
-
},
|
|
7462
7462
|
{
|
|
7463
7463
|
"properties": {
|
|
7464
7464
|
"offsetX": {
|
|
@@ -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
|
@@ -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
|
};
|
|
@@ -2958,7 +2958,7 @@ export interface Modules {
|
|
|
2958
2958
|
icon?: Icon18;
|
|
2959
2959
|
name?: I18NProperty91;
|
|
2960
2960
|
cacheable?: boolean;
|
|
2961
|
-
conditions?: (
|
|
2961
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2962
2962
|
params?: {
|
|
2963
2963
|
[k: string]: unknown;
|
|
2964
2964
|
};
|
|
@@ -2974,7 +2974,7 @@ export interface Modules {
|
|
|
2974
2974
|
icon?: Icon18;
|
|
2975
2975
|
name?: I18NProperty91;
|
|
2976
2976
|
cacheable?: boolean;
|
|
2977
|
-
conditions?: (
|
|
2977
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2978
2978
|
params?: {
|
|
2979
2979
|
[k: string]: unknown;
|
|
2980
2980
|
};
|
|
@@ -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
|
}
|
|
@@ -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
|
*
|
|
@@ -8006,7 +8006,7 @@ export interface I18NProperty74 {
|
|
|
8006
8006
|
*
|
|
8007
8007
|
*/
|
|
8008
8008
|
export interface MacroPropertyPanel {
|
|
8009
|
-
controls?: (TextControl |
|
|
8009
|
+
controls?: (TextControl | ButtonControl | ControlGroup | ToggleGroup)[];
|
|
8010
8010
|
cacheable?: boolean;
|
|
8011
8011
|
url: string;
|
|
8012
8012
|
[k: string]: unknown;
|
|
@@ -8039,47 +8039,6 @@ export interface TextControl {
|
|
|
8039
8039
|
key: string;
|
|
8040
8040
|
[k: string]: unknown;
|
|
8041
8041
|
}
|
|
8042
|
-
/**
|
|
8043
|
-
*
|
|
8044
|
-
*
|
|
8045
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8046
|
-
*
|
|
8047
|
-
* <p><b>Example</b></p>
|
|
8048
|
-
*
|
|
8049
|
-
*
|
|
8050
|
-
*
|
|
8051
|
-
*
|
|
8052
|
-
*
|
|
8053
|
-
* [
|
|
8054
|
-
* {
|
|
8055
|
-
* "type": "group",
|
|
8056
|
-
* "controls": [
|
|
8057
|
-
* {
|
|
8058
|
-
* "type": "button",
|
|
8059
|
-
* "label": {
|
|
8060
|
-
* "value": "My Custom Control 0"
|
|
8061
|
-
* },
|
|
8062
|
-
* "key": "my-custom-control-0"
|
|
8063
|
-
* },
|
|
8064
|
-
* {
|
|
8065
|
-
* "type": "button",
|
|
8066
|
-
* "label": {
|
|
8067
|
-
* "value": "My Custom Control 1"
|
|
8068
|
-
* },
|
|
8069
|
-
* "key": "my-custom-control-1"
|
|
8070
|
-
* }
|
|
8071
|
-
* ]
|
|
8072
|
-
* }
|
|
8073
|
-
* ]
|
|
8074
|
-
*
|
|
8075
|
-
*
|
|
8076
|
-
*
|
|
8077
|
-
*/
|
|
8078
|
-
export interface ControlGroup {
|
|
8079
|
-
controls: ButtonControl[];
|
|
8080
|
-
type: 'group' | 'GROUP';
|
|
8081
|
-
[k: string]: unknown;
|
|
8082
|
-
}
|
|
8083
8042
|
/**
|
|
8084
8043
|
*
|
|
8085
8044
|
*
|
|
@@ -8132,6 +8091,47 @@ export interface I18NProperty75 {
|
|
|
8132
8091
|
i18n?: string;
|
|
8133
8092
|
[k: string]: unknown;
|
|
8134
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
|
+
}
|
|
8135
8135
|
/**
|
|
8136
8136
|
*
|
|
8137
8137
|
*
|
|
@@ -29251,11 +29251,52 @@ 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;
|
|
29258
29258
|
}
|
|
29259
|
+
/**
|
|
29260
|
+
*
|
|
29261
|
+
*
|
|
29262
|
+
* Defines a ControlGroup 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
|
+
* {
|
|
29272
|
+
* "type": "group",
|
|
29273
|
+
* "controls": [
|
|
29274
|
+
* {
|
|
29275
|
+
* "type": "button",
|
|
29276
|
+
* "label": {
|
|
29277
|
+
* "value": "My Custom Control 0"
|
|
29278
|
+
* },
|
|
29279
|
+
* "key": "my-custom-control-0"
|
|
29280
|
+
* },
|
|
29281
|
+
* {
|
|
29282
|
+
* "type": "button",
|
|
29283
|
+
* "label": {
|
|
29284
|
+
* "value": "My Custom Control 1"
|
|
29285
|
+
* },
|
|
29286
|
+
* "key": "my-custom-control-1"
|
|
29287
|
+
* }
|
|
29288
|
+
* ]
|
|
29289
|
+
* }
|
|
29290
|
+
* ]
|
|
29291
|
+
*
|
|
29292
|
+
*
|
|
29293
|
+
*
|
|
29294
|
+
*/
|
|
29295
|
+
export interface ControlGroup1 {
|
|
29296
|
+
controls: ButtonControl2[];
|
|
29297
|
+
type: 'group' | 'GROUP';
|
|
29298
|
+
[k: string]: unknown;
|
|
29299
|
+
}
|
|
29259
29300
|
/**
|
|
29260
29301
|
*
|
|
29261
29302
|
*
|
|
@@ -29336,47 +29377,6 @@ export interface TextControl1 {
|
|
|
29336
29377
|
key: string;
|
|
29337
29378
|
[k: string]: unknown;
|
|
29338
29379
|
}
|
|
29339
|
-
/**
|
|
29340
|
-
*
|
|
29341
|
-
*
|
|
29342
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29343
|
-
*
|
|
29344
|
-
* <p><b>Example</b></p>
|
|
29345
|
-
*
|
|
29346
|
-
*
|
|
29347
|
-
*
|
|
29348
|
-
*
|
|
29349
|
-
*
|
|
29350
|
-
* [
|
|
29351
|
-
* {
|
|
29352
|
-
* "type": "group",
|
|
29353
|
-
* "controls": [
|
|
29354
|
-
* {
|
|
29355
|
-
* "type": "button",
|
|
29356
|
-
* "label": {
|
|
29357
|
-
* "value": "My Custom Control 0"
|
|
29358
|
-
* },
|
|
29359
|
-
* "key": "my-custom-control-0"
|
|
29360
|
-
* },
|
|
29361
|
-
* {
|
|
29362
|
-
* "type": "button",
|
|
29363
|
-
* "label": {
|
|
29364
|
-
* "value": "My Custom Control 1"
|
|
29365
|
-
* },
|
|
29366
|
-
* "key": "my-custom-control-1"
|
|
29367
|
-
* }
|
|
29368
|
-
* ]
|
|
29369
|
-
* }
|
|
29370
|
-
* ]
|
|
29371
|
-
*
|
|
29372
|
-
*
|
|
29373
|
-
*
|
|
29374
|
-
*/
|
|
29375
|
-
export interface ControlGroup1 {
|
|
29376
|
-
controls: ButtonControl3[];
|
|
29377
|
-
type: 'group' | 'GROUP';
|
|
29378
|
-
[k: string]: unknown;
|
|
29379
|
-
}
|
|
29380
29380
|
/**
|
|
29381
29381
|
*
|
|
29382
29382
|
*
|
|
@@ -50377,10 +50377,37 @@ export interface I18NProperty91 {
|
|
|
50377
50377
|
*
|
|
50378
50378
|
*/
|
|
50379
50379
|
export interface WebItemTarget2 {
|
|
50380
|
-
options?:
|
|
50380
|
+
options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
|
|
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
|
+
}
|
|
50384
50411
|
/**
|
|
50385
50412
|
*
|
|
50386
50413
|
*
|
|
@@ -50479,33 +50506,6 @@ export interface I18NProperty92 {
|
|
|
50479
50506
|
i18n?: string;
|
|
50480
50507
|
[k: string]: unknown;
|
|
50481
50508
|
}
|
|
50482
|
-
/**
|
|
50483
|
-
*
|
|
50484
|
-
*
|
|
50485
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50486
|
-
*
|
|
50487
|
-
* <h3>Example</h3>
|
|
50488
|
-
*
|
|
50489
|
-
*
|
|
50490
|
-
*
|
|
50491
|
-
*
|
|
50492
|
-
*
|
|
50493
|
-
* {
|
|
50494
|
-
* "target": {
|
|
50495
|
-
* "type": "dialogmodule",
|
|
50496
|
-
* "options": {
|
|
50497
|
-
* "key": "dialog-module-key"
|
|
50498
|
-
* }
|
|
50499
|
-
* }
|
|
50500
|
-
* }
|
|
50501
|
-
*
|
|
50502
|
-
*
|
|
50503
|
-
*
|
|
50504
|
-
*/
|
|
50505
|
-
export interface DialogModuleOptions2 {
|
|
50506
|
-
key: string;
|
|
50507
|
-
[k: string]: unknown;
|
|
50508
|
-
}
|
|
50509
50509
|
/**
|
|
50510
50510
|
*
|
|
50511
50511
|
*
|