@forge/manifest 3.2.0-next.5 → 3.3.0-next.0
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 +36 -0
- package/out/schema/manifest-schema.json +191 -191
- package/out/schema/manifest.d.ts +211 -211
- package/out/types/module-types.d.ts +8 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 3.3.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c145946: Add following Jira Service Management modules:
|
|
8
|
+
- jiraServiceManagement:organizationPanel module
|
|
9
|
+
- jiraServiceManagement:portalHeader module
|
|
10
|
+
- jiraServiceManagement:portalSubheader module
|
|
11
|
+
- jiraServiceManagement:portalFooter module
|
|
12
|
+
- jiraServiceManagement:portalRequestDetail module
|
|
13
|
+
- jiraServiceManagement:portalRequestDetailPanel module
|
|
14
|
+
- jiraServiceManagement:queuePage module
|
|
15
|
+
- jiraServiceManagement:portalProfilePanel module
|
|
16
|
+
|
|
17
|
+
## 3.2.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- 7f869f7: Added manifest validation for modules using Subpages
|
|
22
|
+
- 72e020c: Adds schemas properties for Data Classifications
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- b2cef71: Update manifest definitions
|
|
27
|
+
- 254b239: Update manifest definitions
|
|
28
|
+
- 47744fc: Update manifest definitions
|
|
29
|
+
- 860c4fb: Update manifest definitions
|
|
30
|
+
- 66e969f: Update manifest definitions
|
|
31
|
+
- 2c635f9: Update manifest definitions
|
|
32
|
+
|
|
33
|
+
## 3.2.0-next.6
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 860c4fb0: Update manifest definitions
|
|
38
|
+
|
|
3
39
|
## 3.2.0-next.5
|
|
4
40
|
|
|
5
41
|
### Minor Changes
|
|
@@ -6228,10 +6228,10 @@
|
|
|
6228
6228
|
"type": "object",
|
|
6229
6229
|
"anyOf": [
|
|
6230
6230
|
{
|
|
6231
|
-
"$ref": "#/definitions/
|
|
6231
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6232
6232
|
},
|
|
6233
6233
|
{
|
|
6234
|
-
"$ref": "#/definitions/
|
|
6234
|
+
"$ref": "#/definitions/singleCondition"
|
|
6235
6235
|
}
|
|
6236
6236
|
]
|
|
6237
6237
|
},
|
|
@@ -6354,10 +6354,10 @@
|
|
|
6354
6354
|
"type": "object",
|
|
6355
6355
|
"anyOf": [
|
|
6356
6356
|
{
|
|
6357
|
-
"$ref": "#/definitions/
|
|
6357
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6358
6358
|
},
|
|
6359
6359
|
{
|
|
6360
|
-
"$ref": "#/definitions/
|
|
6360
|
+
"$ref": "#/definitions/singleCondition"
|
|
6361
6361
|
}
|
|
6362
6362
|
]
|
|
6363
6363
|
},
|
|
@@ -6654,6 +6654,22 @@
|
|
|
6654
6654
|
"title": "Inline Dialog Options",
|
|
6655
6655
|
"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"
|
|
6656
6656
|
},
|
|
6657
|
+
{
|
|
6658
|
+
"properties": {
|
|
6659
|
+
"key": {
|
|
6660
|
+
"maxLength": 100,
|
|
6661
|
+
"type": "string",
|
|
6662
|
+
"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"
|
|
6663
|
+
}
|
|
6664
|
+
},
|
|
6665
|
+
"required": [
|
|
6666
|
+
"key"
|
|
6667
|
+
],
|
|
6668
|
+
"shortClassName": "dialogModuleOptions",
|
|
6669
|
+
"type": "object",
|
|
6670
|
+
"title": "Dialog Module Options",
|
|
6671
|
+
"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"
|
|
6672
|
+
},
|
|
6657
6673
|
{
|
|
6658
6674
|
"properties": {
|
|
6659
6675
|
"size": {
|
|
@@ -6698,22 +6714,6 @@
|
|
|
6698
6714
|
"type": "object",
|
|
6699
6715
|
"title": "Dialog Options",
|
|
6700
6716
|
"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"
|
|
6701
|
-
},
|
|
6702
|
-
{
|
|
6703
|
-
"properties": {
|
|
6704
|
-
"key": {
|
|
6705
|
-
"maxLength": 100,
|
|
6706
|
-
"type": "string",
|
|
6707
|
-
"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"
|
|
6708
|
-
}
|
|
6709
|
-
},
|
|
6710
|
-
"required": [
|
|
6711
|
-
"key"
|
|
6712
|
-
],
|
|
6713
|
-
"shortClassName": "dialogModuleOptions",
|
|
6714
|
-
"type": "object",
|
|
6715
|
-
"title": "Dialog Module Options",
|
|
6716
|
-
"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"
|
|
6717
6717
|
}
|
|
6718
6718
|
]
|
|
6719
6719
|
},
|
|
@@ -6804,10 +6804,10 @@
|
|
|
6804
6804
|
"type": "object",
|
|
6805
6805
|
"anyOf": [
|
|
6806
6806
|
{
|
|
6807
|
-
"$ref": "
|
|
6807
|
+
"$ref": "#"
|
|
6808
6808
|
},
|
|
6809
6809
|
{
|
|
6810
|
-
"$ref": "
|
|
6810
|
+
"$ref": "#/definitions/singleCondition"
|
|
6811
6811
|
}
|
|
6812
6812
|
]
|
|
6813
6813
|
},
|
|
@@ -6882,10 +6882,10 @@
|
|
|
6882
6882
|
"type": "object",
|
|
6883
6883
|
"anyOf": [
|
|
6884
6884
|
{
|
|
6885
|
-
"$ref": "#/definitions/
|
|
6885
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6886
6886
|
},
|
|
6887
6887
|
{
|
|
6888
|
-
"$ref": "#/definitions/
|
|
6888
|
+
"$ref": "#/definitions/singleCondition"
|
|
6889
6889
|
}
|
|
6890
6890
|
]
|
|
6891
6891
|
},
|
|
@@ -7033,33 +7033,6 @@
|
|
|
7033
7033
|
"items": {
|
|
7034
7034
|
"type": "object",
|
|
7035
7035
|
"anyOf": [
|
|
7036
|
-
{
|
|
7037
|
-
"properties": {
|
|
7038
|
-
"condition": {
|
|
7039
|
-
"maxLength": 100,
|
|
7040
|
-
"type": "string",
|
|
7041
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
7042
|
-
},
|
|
7043
|
-
"invert": {
|
|
7044
|
-
"type": "boolean",
|
|
7045
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
7046
|
-
"defaultValue": "false"
|
|
7047
|
-
},
|
|
7048
|
-
"params": {
|
|
7049
|
-
"additionalProperties": true,
|
|
7050
|
-
"type": "object",
|
|
7051
|
-
"fieldTitle": "Object",
|
|
7052
|
-
"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"
|
|
7053
|
-
}
|
|
7054
|
-
},
|
|
7055
|
-
"required": [
|
|
7056
|
-
"condition"
|
|
7057
|
-
],
|
|
7058
|
-
"shortClassName": "singleConditionBean",
|
|
7059
|
-
"type": "object",
|
|
7060
|
-
"title": "Single Condition",
|
|
7061
|
-
"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"
|
|
7062
|
-
},
|
|
7063
7036
|
{
|
|
7064
7037
|
"properties": {
|
|
7065
7038
|
"conditions": {
|
|
@@ -7067,10 +7040,10 @@
|
|
|
7067
7040
|
"type": "object",
|
|
7068
7041
|
"anyOf": [
|
|
7069
7042
|
{
|
|
7070
|
-
"$ref": "
|
|
7043
|
+
"$ref": "#/definitions/singleCondition"
|
|
7071
7044
|
},
|
|
7072
7045
|
{
|
|
7073
|
-
"$ref": "
|
|
7046
|
+
"$ref": "#"
|
|
7074
7047
|
}
|
|
7075
7048
|
]
|
|
7076
7049
|
},
|
|
@@ -7092,6 +7065,33 @@
|
|
|
7092
7065
|
"type": "object",
|
|
7093
7066
|
"title": "Composite Condition",
|
|
7094
7067
|
"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"
|
|
7068
|
+
},
|
|
7069
|
+
{
|
|
7070
|
+
"properties": {
|
|
7071
|
+
"condition": {
|
|
7072
|
+
"maxLength": 100,
|
|
7073
|
+
"type": "string",
|
|
7074
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
7075
|
+
},
|
|
7076
|
+
"invert": {
|
|
7077
|
+
"type": "boolean",
|
|
7078
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
7079
|
+
"defaultValue": "false"
|
|
7080
|
+
},
|
|
7081
|
+
"params": {
|
|
7082
|
+
"additionalProperties": true,
|
|
7083
|
+
"type": "object",
|
|
7084
|
+
"fieldTitle": "Object",
|
|
7085
|
+
"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"
|
|
7086
|
+
}
|
|
7087
|
+
},
|
|
7088
|
+
"required": [
|
|
7089
|
+
"condition"
|
|
7090
|
+
],
|
|
7091
|
+
"shortClassName": "singleConditionBean",
|
|
7092
|
+
"type": "object",
|
|
7093
|
+
"title": "Single Condition",
|
|
7094
|
+
"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"
|
|
7095
7095
|
}
|
|
7096
7096
|
]
|
|
7097
7097
|
},
|
|
@@ -7397,62 +7397,6 @@
|
|
|
7397
7397
|
"title": "TextControl",
|
|
7398
7398
|
"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"
|
|
7399
7399
|
},
|
|
7400
|
-
{
|
|
7401
|
-
"properties": {
|
|
7402
|
-
"controls": {
|
|
7403
|
-
"items": {
|
|
7404
|
-
"properties": {
|
|
7405
|
-
"label": {
|
|
7406
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7407
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7408
|
-
},
|
|
7409
|
-
"type": {
|
|
7410
|
-
"enum": [
|
|
7411
|
-
"button",
|
|
7412
|
-
"BUTTON"
|
|
7413
|
-
],
|
|
7414
|
-
"type": "string",
|
|
7415
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7416
|
-
},
|
|
7417
|
-
"key": {
|
|
7418
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7419
|
-
"maxLength": 100,
|
|
7420
|
-
"type": "string",
|
|
7421
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7422
|
-
}
|
|
7423
|
-
},
|
|
7424
|
-
"required": [
|
|
7425
|
-
"label",
|
|
7426
|
-
"type",
|
|
7427
|
-
"key"
|
|
7428
|
-
],
|
|
7429
|
-
"additionalProperties": true,
|
|
7430
|
-
"shortClassName": "buttonControlBean",
|
|
7431
|
-
"type": "object",
|
|
7432
|
-
"title": "ButtonControl",
|
|
7433
|
-
"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"
|
|
7434
|
-
},
|
|
7435
|
-
"type": "array",
|
|
7436
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7437
|
-
},
|
|
7438
|
-
"type": {
|
|
7439
|
-
"enum": [
|
|
7440
|
-
"group",
|
|
7441
|
-
"GROUP"
|
|
7442
|
-
],
|
|
7443
|
-
"type": "string",
|
|
7444
|
-
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7445
|
-
}
|
|
7446
|
-
},
|
|
7447
|
-
"required": [
|
|
7448
|
-
"controls",
|
|
7449
|
-
"type"
|
|
7450
|
-
],
|
|
7451
|
-
"shortClassName": "controlGroupBean",
|
|
7452
|
-
"type": "object",
|
|
7453
|
-
"title": "ControlGroup",
|
|
7454
|
-
"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"
|
|
7455
|
-
},
|
|
7456
7400
|
{
|
|
7457
7401
|
"properties": {
|
|
7458
7402
|
"controls": {
|
|
@@ -7553,6 +7497,62 @@
|
|
|
7553
7497
|
"type": "object",
|
|
7554
7498
|
"title": "ButtonControl",
|
|
7555
7499
|
"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"
|
|
7500
|
+
},
|
|
7501
|
+
{
|
|
7502
|
+
"properties": {
|
|
7503
|
+
"controls": {
|
|
7504
|
+
"items": {
|
|
7505
|
+
"properties": {
|
|
7506
|
+
"label": {
|
|
7507
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7508
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7509
|
+
},
|
|
7510
|
+
"type": {
|
|
7511
|
+
"enum": [
|
|
7512
|
+
"button",
|
|
7513
|
+
"BUTTON"
|
|
7514
|
+
],
|
|
7515
|
+
"type": "string",
|
|
7516
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7517
|
+
},
|
|
7518
|
+
"key": {
|
|
7519
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7520
|
+
"maxLength": 100,
|
|
7521
|
+
"type": "string",
|
|
7522
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7523
|
+
}
|
|
7524
|
+
},
|
|
7525
|
+
"required": [
|
|
7526
|
+
"label",
|
|
7527
|
+
"type",
|
|
7528
|
+
"key"
|
|
7529
|
+
],
|
|
7530
|
+
"additionalProperties": true,
|
|
7531
|
+
"shortClassName": "buttonControlBean",
|
|
7532
|
+
"type": "object",
|
|
7533
|
+
"title": "ButtonControl",
|
|
7534
|
+
"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"
|
|
7535
|
+
},
|
|
7536
|
+
"type": "array",
|
|
7537
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7538
|
+
},
|
|
7539
|
+
"type": {
|
|
7540
|
+
"enum": [
|
|
7541
|
+
"group",
|
|
7542
|
+
"GROUP"
|
|
7543
|
+
],
|
|
7544
|
+
"type": "string",
|
|
7545
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7546
|
+
}
|
|
7547
|
+
},
|
|
7548
|
+
"required": [
|
|
7549
|
+
"controls",
|
|
7550
|
+
"type"
|
|
7551
|
+
],
|
|
7552
|
+
"shortClassName": "controlGroupBean",
|
|
7553
|
+
"type": "object",
|
|
7554
|
+
"title": "ControlGroup",
|
|
7555
|
+
"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"
|
|
7556
7556
|
}
|
|
7557
7557
|
]
|
|
7558
7558
|
},
|
|
@@ -7847,38 +7847,6 @@
|
|
|
7847
7847
|
"items": {
|
|
7848
7848
|
"type": "object",
|
|
7849
7849
|
"anyOf": [
|
|
7850
|
-
{
|
|
7851
|
-
"properties": {
|
|
7852
|
-
"macroParameter": {
|
|
7853
|
-
"maxLength": 100,
|
|
7854
|
-
"type": "string",
|
|
7855
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7856
|
-
},
|
|
7857
|
-
"type": {
|
|
7858
|
-
"enum": [
|
|
7859
|
-
"text",
|
|
7860
|
-
"TEXT"
|
|
7861
|
-
],
|
|
7862
|
-
"type": "string",
|
|
7863
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7864
|
-
},
|
|
7865
|
-
"key": {
|
|
7866
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7867
|
-
"maxLength": 100,
|
|
7868
|
-
"type": "string",
|
|
7869
|
-
"fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
|
|
7870
|
-
}
|
|
7871
|
-
},
|
|
7872
|
-
"required": [
|
|
7873
|
-
"macroParameter",
|
|
7874
|
-
"type",
|
|
7875
|
-
"key"
|
|
7876
|
-
],
|
|
7877
|
-
"shortClassName": "textControlBean",
|
|
7878
|
-
"type": "object",
|
|
7879
|
-
"title": "TextControl",
|
|
7880
|
-
"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"
|
|
7881
|
-
},
|
|
7882
7850
|
{
|
|
7883
7851
|
"properties": {
|
|
7884
7852
|
"controls": {
|
|
@@ -7948,6 +7916,70 @@
|
|
|
7948
7916
|
"title": "ToggleGroup",
|
|
7949
7917
|
"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"
|
|
7950
7918
|
},
|
|
7919
|
+
{
|
|
7920
|
+
"properties": {
|
|
7921
|
+
"macroParameter": {
|
|
7922
|
+
"maxLength": 100,
|
|
7923
|
+
"type": "string",
|
|
7924
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7925
|
+
},
|
|
7926
|
+
"type": {
|
|
7927
|
+
"enum": [
|
|
7928
|
+
"text",
|
|
7929
|
+
"TEXT"
|
|
7930
|
+
],
|
|
7931
|
+
"type": "string",
|
|
7932
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7933
|
+
},
|
|
7934
|
+
"key": {
|
|
7935
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7936
|
+
"maxLength": 100,
|
|
7937
|
+
"type": "string",
|
|
7938
|
+
"fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
|
|
7939
|
+
}
|
|
7940
|
+
},
|
|
7941
|
+
"required": [
|
|
7942
|
+
"macroParameter",
|
|
7943
|
+
"type",
|
|
7944
|
+
"key"
|
|
7945
|
+
],
|
|
7946
|
+
"shortClassName": "textControlBean",
|
|
7947
|
+
"type": "object",
|
|
7948
|
+
"title": "TextControl",
|
|
7949
|
+
"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"
|
|
7950
|
+
},
|
|
7951
|
+
{
|
|
7952
|
+
"properties": {
|
|
7953
|
+
"label": {
|
|
7954
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7955
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7956
|
+
},
|
|
7957
|
+
"type": {
|
|
7958
|
+
"enum": [
|
|
7959
|
+
"button",
|
|
7960
|
+
"BUTTON"
|
|
7961
|
+
],
|
|
7962
|
+
"type": "string",
|
|
7963
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7964
|
+
},
|
|
7965
|
+
"key": {
|
|
7966
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7967
|
+
"maxLength": 100,
|
|
7968
|
+
"type": "string",
|
|
7969
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7970
|
+
}
|
|
7971
|
+
},
|
|
7972
|
+
"required": [
|
|
7973
|
+
"label",
|
|
7974
|
+
"type",
|
|
7975
|
+
"key"
|
|
7976
|
+
],
|
|
7977
|
+
"additionalProperties": true,
|
|
7978
|
+
"shortClassName": "buttonControlBean",
|
|
7979
|
+
"type": "object",
|
|
7980
|
+
"title": "ButtonControl",
|
|
7981
|
+
"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"
|
|
7982
|
+
},
|
|
7951
7983
|
{
|
|
7952
7984
|
"properties": {
|
|
7953
7985
|
"controls": {
|
|
@@ -8003,38 +8035,6 @@
|
|
|
8003
8035
|
"type": "object",
|
|
8004
8036
|
"title": "ControlGroup",
|
|
8005
8037
|
"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"
|
|
8006
|
-
},
|
|
8007
|
-
{
|
|
8008
|
-
"properties": {
|
|
8009
|
-
"label": {
|
|
8010
|
-
"$ref": "#/definitions/i18nProperty",
|
|
8011
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
8012
|
-
},
|
|
8013
|
-
"type": {
|
|
8014
|
-
"enum": [
|
|
8015
|
-
"button",
|
|
8016
|
-
"BUTTON"
|
|
8017
|
-
],
|
|
8018
|
-
"type": "string",
|
|
8019
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
8020
|
-
},
|
|
8021
|
-
"key": {
|
|
8022
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8023
|
-
"maxLength": 100,
|
|
8024
|
-
"type": "string",
|
|
8025
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8026
|
-
}
|
|
8027
|
-
},
|
|
8028
|
-
"required": [
|
|
8029
|
-
"label",
|
|
8030
|
-
"type",
|
|
8031
|
-
"key"
|
|
8032
|
-
],
|
|
8033
|
-
"additionalProperties": true,
|
|
8034
|
-
"shortClassName": "buttonControlBean",
|
|
8035
|
-
"type": "object",
|
|
8036
|
-
"title": "ButtonControl",
|
|
8037
|
-
"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"
|
|
8038
8038
|
}
|
|
8039
8039
|
]
|
|
8040
8040
|
},
|
|
@@ -8315,6 +8315,22 @@
|
|
|
8315
8315
|
"title": "Dialog Options",
|
|
8316
8316
|
"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"
|
|
8317
8317
|
},
|
|
8318
|
+
{
|
|
8319
|
+
"properties": {
|
|
8320
|
+
"key": {
|
|
8321
|
+
"maxLength": 100,
|
|
8322
|
+
"type": "string",
|
|
8323
|
+
"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"
|
|
8324
|
+
}
|
|
8325
|
+
},
|
|
8326
|
+
"required": [
|
|
8327
|
+
"key"
|
|
8328
|
+
],
|
|
8329
|
+
"shortClassName": "dialogModuleOptions",
|
|
8330
|
+
"type": "object",
|
|
8331
|
+
"title": "Dialog Module Options",
|
|
8332
|
+
"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"
|
|
8333
|
+
},
|
|
8318
8334
|
{
|
|
8319
8335
|
"properties": {
|
|
8320
8336
|
"offsetX": {
|
|
@@ -8361,22 +8377,6 @@
|
|
|
8361
8377
|
"type": "object",
|
|
8362
8378
|
"title": "Inline Dialog Options",
|
|
8363
8379
|
"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"
|
|
8364
|
-
},
|
|
8365
|
-
{
|
|
8366
|
-
"properties": {
|
|
8367
|
-
"key": {
|
|
8368
|
-
"maxLength": 100,
|
|
8369
|
-
"type": "string",
|
|
8370
|
-
"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"
|
|
8371
|
-
}
|
|
8372
|
-
},
|
|
8373
|
-
"required": [
|
|
8374
|
-
"key"
|
|
8375
|
-
],
|
|
8376
|
-
"shortClassName": "dialogModuleOptions",
|
|
8377
|
-
"type": "object",
|
|
8378
|
-
"title": "Dialog Module Options",
|
|
8379
|
-
"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"
|
|
8380
8380
|
}
|
|
8381
8381
|
]
|
|
8382
8382
|
},
|
|
@@ -9709,10 +9709,10 @@
|
|
|
9709
9709
|
"type": "object",
|
|
9710
9710
|
"anyOf": [
|
|
9711
9711
|
{
|
|
9712
|
-
"$ref": "
|
|
9712
|
+
"$ref": "#/definitions/singleCondition"
|
|
9713
9713
|
},
|
|
9714
9714
|
{
|
|
9715
|
-
"$ref": "
|
|
9715
|
+
"$ref": "#"
|
|
9716
9716
|
}
|
|
9717
9717
|
]
|
|
9718
9718
|
},
|