@forge/manifest 3.2.0-next.3 → 3.2.0-next.6
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 +18 -0
- package/out/schema/basic-manifest-schema.json +23 -0
- package/out/schema/basic-manifest.d.ts +9 -0
- package/out/schema/manifest-schema.json +280 -222
- package/out/schema/manifest.d.ts +245 -223
- package/package.json +1 -1
|
@@ -80,6 +80,29 @@
|
|
|
80
80
|
]
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
|
+
},
|
|
84
|
+
"storage": {
|
|
85
|
+
"description": "Options related to hosted storage",
|
|
86
|
+
"type": "object",
|
|
87
|
+
"required": [
|
|
88
|
+
"classifications"
|
|
89
|
+
],
|
|
90
|
+
"additionalProperties": false,
|
|
91
|
+
"properties": {
|
|
92
|
+
"classifications": {
|
|
93
|
+
"description": "Labels to classify the type of data stored",
|
|
94
|
+
"type": "array",
|
|
95
|
+
"items": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"enum": [
|
|
98
|
+
"ugc",
|
|
99
|
+
"pii",
|
|
100
|
+
"other"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"minItems": 1
|
|
104
|
+
}
|
|
105
|
+
}
|
|
83
106
|
}
|
|
84
107
|
},
|
|
85
108
|
"required": [
|
|
@@ -6395,10 +6418,10 @@
|
|
|
6395
6418
|
"type": "object",
|
|
6396
6419
|
"anyOf": [
|
|
6397
6420
|
{
|
|
6398
|
-
"$ref": "#/definitions/
|
|
6421
|
+
"$ref": "#/definitions/singleCondition"
|
|
6399
6422
|
},
|
|
6400
6423
|
{
|
|
6401
|
-
"$ref": "#/definitions/
|
|
6424
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6402
6425
|
}
|
|
6403
6426
|
]
|
|
6404
6427
|
},
|
|
@@ -6453,10 +6476,10 @@
|
|
|
6453
6476
|
"type": "object",
|
|
6454
6477
|
"anyOf": [
|
|
6455
6478
|
{
|
|
6456
|
-
"$ref": "#/definitions/
|
|
6479
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6457
6480
|
},
|
|
6458
6481
|
{
|
|
6459
|
-
"$ref": "#/definitions/
|
|
6482
|
+
"$ref": "#/definitions/singleCondition"
|
|
6460
6483
|
}
|
|
6461
6484
|
]
|
|
6462
6485
|
},
|
|
@@ -6511,10 +6534,10 @@
|
|
|
6511
6534
|
"type": "object",
|
|
6512
6535
|
"anyOf": [
|
|
6513
6536
|
{
|
|
6514
|
-
"$ref": "#/definitions/
|
|
6537
|
+
"$ref": "#/definitions/singleCondition"
|
|
6515
6538
|
},
|
|
6516
6539
|
{
|
|
6517
|
-
"$ref": "#/definitions/
|
|
6540
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6518
6541
|
}
|
|
6519
6542
|
]
|
|
6520
6543
|
},
|
|
@@ -6584,6 +6607,22 @@
|
|
|
6584
6607
|
"type": "object",
|
|
6585
6608
|
"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",
|
|
6586
6609
|
"anyOf": [
|
|
6610
|
+
{
|
|
6611
|
+
"properties": {
|
|
6612
|
+
"key": {
|
|
6613
|
+
"maxLength": 100,
|
|
6614
|
+
"type": "string",
|
|
6615
|
+
"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"
|
|
6616
|
+
}
|
|
6617
|
+
},
|
|
6618
|
+
"required": [
|
|
6619
|
+
"key"
|
|
6620
|
+
],
|
|
6621
|
+
"shortClassName": "dialogModuleOptions",
|
|
6622
|
+
"type": "object",
|
|
6623
|
+
"title": "Dialog Module Options",
|
|
6624
|
+
"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"
|
|
6625
|
+
},
|
|
6587
6626
|
{
|
|
6588
6627
|
"properties": {
|
|
6589
6628
|
"size": {
|
|
@@ -6675,22 +6714,6 @@
|
|
|
6675
6714
|
"type": "object",
|
|
6676
6715
|
"title": "Inline Dialog Options",
|
|
6677
6716
|
"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"
|
|
6678
|
-
},
|
|
6679
|
-
{
|
|
6680
|
-
"properties": {
|
|
6681
|
-
"key": {
|
|
6682
|
-
"maxLength": 100,
|
|
6683
|
-
"type": "string",
|
|
6684
|
-
"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"
|
|
6685
|
-
}
|
|
6686
|
-
},
|
|
6687
|
-
"required": [
|
|
6688
|
-
"key"
|
|
6689
|
-
],
|
|
6690
|
-
"shortClassName": "dialogModuleOptions",
|
|
6691
|
-
"type": "object",
|
|
6692
|
-
"title": "Dialog Module Options",
|
|
6693
|
-
"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"
|
|
6694
6717
|
}
|
|
6695
6718
|
]
|
|
6696
6719
|
},
|
|
@@ -6781,10 +6804,10 @@
|
|
|
6781
6804
|
"type": "object",
|
|
6782
6805
|
"anyOf": [
|
|
6783
6806
|
{
|
|
6784
|
-
"$ref": "
|
|
6807
|
+
"$ref": "#/definitions/singleCondition"
|
|
6785
6808
|
},
|
|
6786
6809
|
{
|
|
6787
|
-
"$ref": "
|
|
6810
|
+
"$ref": "#"
|
|
6788
6811
|
}
|
|
6789
6812
|
]
|
|
6790
6813
|
},
|
|
@@ -7010,6 +7033,33 @@
|
|
|
7010
7033
|
"items": {
|
|
7011
7034
|
"type": "object",
|
|
7012
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
|
+
},
|
|
7013
7063
|
{
|
|
7014
7064
|
"properties": {
|
|
7015
7065
|
"conditions": {
|
|
@@ -7017,10 +7067,10 @@
|
|
|
7017
7067
|
"type": "object",
|
|
7018
7068
|
"anyOf": [
|
|
7019
7069
|
{
|
|
7020
|
-
"$ref": "
|
|
7070
|
+
"$ref": "#"
|
|
7021
7071
|
},
|
|
7022
7072
|
{
|
|
7023
|
-
"$ref": "
|
|
7073
|
+
"$ref": "#/definitions/singleCondition"
|
|
7024
7074
|
}
|
|
7025
7075
|
]
|
|
7026
7076
|
},
|
|
@@ -7042,33 +7092,6 @@
|
|
|
7042
7092
|
"type": "object",
|
|
7043
7093
|
"title": "Composite Condition",
|
|
7044
7094
|
"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"
|
|
7045
|
-
},
|
|
7046
|
-
{
|
|
7047
|
-
"properties": {
|
|
7048
|
-
"condition": {
|
|
7049
|
-
"maxLength": 100,
|
|
7050
|
-
"type": "string",
|
|
7051
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
7052
|
-
},
|
|
7053
|
-
"invert": {
|
|
7054
|
-
"type": "boolean",
|
|
7055
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
7056
|
-
"defaultValue": "false"
|
|
7057
|
-
},
|
|
7058
|
-
"params": {
|
|
7059
|
-
"additionalProperties": true,
|
|
7060
|
-
"type": "object",
|
|
7061
|
-
"fieldTitle": "Object",
|
|
7062
|
-
"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"
|
|
7063
|
-
}
|
|
7064
|
-
},
|
|
7065
|
-
"required": [
|
|
7066
|
-
"condition"
|
|
7067
|
-
],
|
|
7068
|
-
"shortClassName": "singleConditionBean",
|
|
7069
|
-
"type": "object",
|
|
7070
|
-
"title": "Single Condition",
|
|
7071
|
-
"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"
|
|
7072
7095
|
}
|
|
7073
7096
|
]
|
|
7074
7097
|
},
|
|
@@ -7398,6 +7421,70 @@
|
|
|
7398
7421
|
"title": "ControlGroup",
|
|
7399
7422
|
"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"
|
|
7400
7423
|
},
|
|
7424
|
+
{
|
|
7425
|
+
"properties": {
|
|
7426
|
+
"macroParameter": {
|
|
7427
|
+
"maxLength": 100,
|
|
7428
|
+
"type": "string",
|
|
7429
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7430
|
+
},
|
|
7431
|
+
"type": {
|
|
7432
|
+
"enum": [
|
|
7433
|
+
"text",
|
|
7434
|
+
"TEXT"
|
|
7435
|
+
],
|
|
7436
|
+
"type": "string",
|
|
7437
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7438
|
+
},
|
|
7439
|
+
"key": {
|
|
7440
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7441
|
+
"maxLength": 100,
|
|
7442
|
+
"type": "string",
|
|
7443
|
+
"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"
|
|
7444
|
+
}
|
|
7445
|
+
},
|
|
7446
|
+
"required": [
|
|
7447
|
+
"macroParameter",
|
|
7448
|
+
"type",
|
|
7449
|
+
"key"
|
|
7450
|
+
],
|
|
7451
|
+
"shortClassName": "textControlBean",
|
|
7452
|
+
"type": "object",
|
|
7453
|
+
"title": "TextControl",
|
|
7454
|
+
"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"
|
|
7455
|
+
},
|
|
7456
|
+
{
|
|
7457
|
+
"properties": {
|
|
7458
|
+
"label": {
|
|
7459
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7460
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7461
|
+
},
|
|
7462
|
+
"type": {
|
|
7463
|
+
"enum": [
|
|
7464
|
+
"button",
|
|
7465
|
+
"BUTTON"
|
|
7466
|
+
],
|
|
7467
|
+
"type": "string",
|
|
7468
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7469
|
+
},
|
|
7470
|
+
"key": {
|
|
7471
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7472
|
+
"maxLength": 100,
|
|
7473
|
+
"type": "string",
|
|
7474
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7475
|
+
}
|
|
7476
|
+
},
|
|
7477
|
+
"required": [
|
|
7478
|
+
"label",
|
|
7479
|
+
"type",
|
|
7480
|
+
"key"
|
|
7481
|
+
],
|
|
7482
|
+
"additionalProperties": true,
|
|
7483
|
+
"shortClassName": "buttonControlBean",
|
|
7484
|
+
"type": "object",
|
|
7485
|
+
"title": "ButtonControl",
|
|
7486
|
+
"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"
|
|
7487
|
+
},
|
|
7401
7488
|
{
|
|
7402
7489
|
"properties": {
|
|
7403
7490
|
"controls": {
|
|
@@ -7466,70 +7553,6 @@
|
|
|
7466
7553
|
"type": "object",
|
|
7467
7554
|
"title": "ToggleGroup",
|
|
7468
7555
|
"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"
|
|
7469
|
-
},
|
|
7470
|
-
{
|
|
7471
|
-
"properties": {
|
|
7472
|
-
"macroParameter": {
|
|
7473
|
-
"maxLength": 100,
|
|
7474
|
-
"type": "string",
|
|
7475
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7476
|
-
},
|
|
7477
|
-
"type": {
|
|
7478
|
-
"enum": [
|
|
7479
|
-
"text",
|
|
7480
|
-
"TEXT"
|
|
7481
|
-
],
|
|
7482
|
-
"type": "string",
|
|
7483
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7484
|
-
},
|
|
7485
|
-
"key": {
|
|
7486
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7487
|
-
"maxLength": 100,
|
|
7488
|
-
"type": "string",
|
|
7489
|
-
"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"
|
|
7490
|
-
}
|
|
7491
|
-
},
|
|
7492
|
-
"required": [
|
|
7493
|
-
"macroParameter",
|
|
7494
|
-
"type",
|
|
7495
|
-
"key"
|
|
7496
|
-
],
|
|
7497
|
-
"shortClassName": "textControlBean",
|
|
7498
|
-
"type": "object",
|
|
7499
|
-
"title": "TextControl",
|
|
7500
|
-
"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"
|
|
7501
|
-
},
|
|
7502
|
-
{
|
|
7503
|
-
"properties": {
|
|
7504
|
-
"label": {
|
|
7505
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7506
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7507
|
-
},
|
|
7508
|
-
"type": {
|
|
7509
|
-
"enum": [
|
|
7510
|
-
"button",
|
|
7511
|
-
"BUTTON"
|
|
7512
|
-
],
|
|
7513
|
-
"type": "string",
|
|
7514
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7515
|
-
},
|
|
7516
|
-
"key": {
|
|
7517
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7518
|
-
"maxLength": 100,
|
|
7519
|
-
"type": "string",
|
|
7520
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7521
|
-
}
|
|
7522
|
-
},
|
|
7523
|
-
"required": [
|
|
7524
|
-
"label",
|
|
7525
|
-
"type",
|
|
7526
|
-
"key"
|
|
7527
|
-
],
|
|
7528
|
-
"additionalProperties": true,
|
|
7529
|
-
"shortClassName": "buttonControlBean",
|
|
7530
|
-
"type": "object",
|
|
7531
|
-
"title": "ButtonControl",
|
|
7532
|
-
"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"
|
|
7533
7556
|
}
|
|
7534
7557
|
]
|
|
7535
7558
|
},
|
|
@@ -7824,6 +7847,62 @@
|
|
|
7824
7847
|
"items": {
|
|
7825
7848
|
"type": "object",
|
|
7826
7849
|
"anyOf": [
|
|
7850
|
+
{
|
|
7851
|
+
"properties": {
|
|
7852
|
+
"controls": {
|
|
7853
|
+
"items": {
|
|
7854
|
+
"properties": {
|
|
7855
|
+
"label": {
|
|
7856
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7857
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7858
|
+
},
|
|
7859
|
+
"type": {
|
|
7860
|
+
"enum": [
|
|
7861
|
+
"button",
|
|
7862
|
+
"BUTTON"
|
|
7863
|
+
],
|
|
7864
|
+
"type": "string",
|
|
7865
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7866
|
+
},
|
|
7867
|
+
"key": {
|
|
7868
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7869
|
+
"maxLength": 100,
|
|
7870
|
+
"type": "string",
|
|
7871
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7872
|
+
}
|
|
7873
|
+
},
|
|
7874
|
+
"required": [
|
|
7875
|
+
"label",
|
|
7876
|
+
"type",
|
|
7877
|
+
"key"
|
|
7878
|
+
],
|
|
7879
|
+
"additionalProperties": true,
|
|
7880
|
+
"shortClassName": "buttonControlBean",
|
|
7881
|
+
"type": "object",
|
|
7882
|
+
"title": "ButtonControl",
|
|
7883
|
+
"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"
|
|
7884
|
+
},
|
|
7885
|
+
"type": "array",
|
|
7886
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7887
|
+
},
|
|
7888
|
+
"type": {
|
|
7889
|
+
"enum": [
|
|
7890
|
+
"group",
|
|
7891
|
+
"GROUP"
|
|
7892
|
+
],
|
|
7893
|
+
"type": "string",
|
|
7894
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7895
|
+
}
|
|
7896
|
+
},
|
|
7897
|
+
"required": [
|
|
7898
|
+
"controls",
|
|
7899
|
+
"type"
|
|
7900
|
+
],
|
|
7901
|
+
"shortClassName": "controlGroupBean",
|
|
7902
|
+
"type": "object",
|
|
7903
|
+
"title": "ControlGroup",
|
|
7904
|
+
"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"
|
|
7905
|
+
},
|
|
7827
7906
|
{
|
|
7828
7907
|
"properties": {
|
|
7829
7908
|
"macroParameter": {
|
|
@@ -7925,62 +8004,6 @@
|
|
|
7925
8004
|
"title": "ToggleGroup",
|
|
7926
8005
|
"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"
|
|
7927
8006
|
},
|
|
7928
|
-
{
|
|
7929
|
-
"properties": {
|
|
7930
|
-
"controls": {
|
|
7931
|
-
"items": {
|
|
7932
|
-
"properties": {
|
|
7933
|
-
"label": {
|
|
7934
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7935
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7936
|
-
},
|
|
7937
|
-
"type": {
|
|
7938
|
-
"enum": [
|
|
7939
|
-
"button",
|
|
7940
|
-
"BUTTON"
|
|
7941
|
-
],
|
|
7942
|
-
"type": "string",
|
|
7943
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7944
|
-
},
|
|
7945
|
-
"key": {
|
|
7946
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7947
|
-
"maxLength": 100,
|
|
7948
|
-
"type": "string",
|
|
7949
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7950
|
-
}
|
|
7951
|
-
},
|
|
7952
|
-
"required": [
|
|
7953
|
-
"label",
|
|
7954
|
-
"type",
|
|
7955
|
-
"key"
|
|
7956
|
-
],
|
|
7957
|
-
"additionalProperties": true,
|
|
7958
|
-
"shortClassName": "buttonControlBean",
|
|
7959
|
-
"type": "object",
|
|
7960
|
-
"title": "ButtonControl",
|
|
7961
|
-
"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"
|
|
7962
|
-
},
|
|
7963
|
-
"type": "array",
|
|
7964
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7965
|
-
},
|
|
7966
|
-
"type": {
|
|
7967
|
-
"enum": [
|
|
7968
|
-
"group",
|
|
7969
|
-
"GROUP"
|
|
7970
|
-
],
|
|
7971
|
-
"type": "string",
|
|
7972
|
-
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7973
|
-
}
|
|
7974
|
-
},
|
|
7975
|
-
"required": [
|
|
7976
|
-
"controls",
|
|
7977
|
-
"type"
|
|
7978
|
-
],
|
|
7979
|
-
"shortClassName": "controlGroupBean",
|
|
7980
|
-
"type": "object",
|
|
7981
|
-
"title": "ControlGroup",
|
|
7982
|
-
"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"
|
|
7983
|
-
},
|
|
7984
8007
|
{
|
|
7985
8008
|
"properties": {
|
|
7986
8009
|
"label": {
|
|
@@ -8247,6 +8270,53 @@
|
|
|
8247
8270
|
"type": "object",
|
|
8248
8271
|
"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",
|
|
8249
8272
|
"anyOf": [
|
|
8273
|
+
{
|
|
8274
|
+
"properties": {
|
|
8275
|
+
"offsetX": {
|
|
8276
|
+
"maxLength": 10,
|
|
8277
|
+
"type": "string",
|
|
8278
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
8279
|
+
},
|
|
8280
|
+
"offsetY": {
|
|
8281
|
+
"maxLength": 10,
|
|
8282
|
+
"type": "string",
|
|
8283
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
8284
|
+
},
|
|
8285
|
+
"width": {
|
|
8286
|
+
"maxLength": 10,
|
|
8287
|
+
"type": "string",
|
|
8288
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
8289
|
+
},
|
|
8290
|
+
"onTop": {
|
|
8291
|
+
"type": "boolean",
|
|
8292
|
+
"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"
|
|
8293
|
+
},
|
|
8294
|
+
"showDelay": {
|
|
8295
|
+
"type": "integer",
|
|
8296
|
+
"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"
|
|
8297
|
+
},
|
|
8298
|
+
"closeOthers": {
|
|
8299
|
+
"type": "boolean",
|
|
8300
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
8301
|
+
},
|
|
8302
|
+
"persistent": {
|
|
8303
|
+
"type": "boolean",
|
|
8304
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
8305
|
+
},
|
|
8306
|
+
"onHover": {
|
|
8307
|
+
"type": "boolean",
|
|
8308
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
8309
|
+
},
|
|
8310
|
+
"isRelativeToMouse": {
|
|
8311
|
+
"type": "boolean",
|
|
8312
|
+
"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"
|
|
8313
|
+
}
|
|
8314
|
+
},
|
|
8315
|
+
"shortClassName": "inlineDialogOptions",
|
|
8316
|
+
"type": "object",
|
|
8317
|
+
"title": "Inline Dialog Options",
|
|
8318
|
+
"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"
|
|
8319
|
+
},
|
|
8250
8320
|
{
|
|
8251
8321
|
"properties": {
|
|
8252
8322
|
"size": {
|
|
@@ -8307,53 +8377,6 @@
|
|
|
8307
8377
|
"type": "object",
|
|
8308
8378
|
"title": "Dialog Module Options",
|
|
8309
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"
|
|
8310
|
-
},
|
|
8311
|
-
{
|
|
8312
|
-
"properties": {
|
|
8313
|
-
"offsetX": {
|
|
8314
|
-
"maxLength": 10,
|
|
8315
|
-
"type": "string",
|
|
8316
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
8317
|
-
},
|
|
8318
|
-
"offsetY": {
|
|
8319
|
-
"maxLength": 10,
|
|
8320
|
-
"type": "string",
|
|
8321
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
8322
|
-
},
|
|
8323
|
-
"width": {
|
|
8324
|
-
"maxLength": 10,
|
|
8325
|
-
"type": "string",
|
|
8326
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
8327
|
-
},
|
|
8328
|
-
"onTop": {
|
|
8329
|
-
"type": "boolean",
|
|
8330
|
-
"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"
|
|
8331
|
-
},
|
|
8332
|
-
"showDelay": {
|
|
8333
|
-
"type": "integer",
|
|
8334
|
-
"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"
|
|
8335
|
-
},
|
|
8336
|
-
"closeOthers": {
|
|
8337
|
-
"type": "boolean",
|
|
8338
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
8339
|
-
},
|
|
8340
|
-
"persistent": {
|
|
8341
|
-
"type": "boolean",
|
|
8342
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
8343
|
-
},
|
|
8344
|
-
"onHover": {
|
|
8345
|
-
"type": "boolean",
|
|
8346
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
8347
|
-
},
|
|
8348
|
-
"isRelativeToMouse": {
|
|
8349
|
-
"type": "boolean",
|
|
8350
|
-
"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"
|
|
8351
|
-
}
|
|
8352
|
-
},
|
|
8353
|
-
"shortClassName": "inlineDialogOptions",
|
|
8354
|
-
"type": "object",
|
|
8355
|
-
"title": "Inline Dialog Options",
|
|
8356
|
-
"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"
|
|
8357
8380
|
}
|
|
8358
8381
|
]
|
|
8359
8382
|
},
|
|
@@ -8768,6 +8791,41 @@
|
|
|
8768
8791
|
},
|
|
8769
8792
|
"baseUrl": {
|
|
8770
8793
|
"type": "string"
|
|
8794
|
+
},
|
|
8795
|
+
"operations": {
|
|
8796
|
+
"description": "The type of operations done in the remote",
|
|
8797
|
+
"type": "array",
|
|
8798
|
+
"items": {
|
|
8799
|
+
"type": "string",
|
|
8800
|
+
"enum": [
|
|
8801
|
+
"storage",
|
|
8802
|
+
"other"
|
|
8803
|
+
]
|
|
8804
|
+
},
|
|
8805
|
+
"minItems": 1
|
|
8806
|
+
},
|
|
8807
|
+
"storage": {
|
|
8808
|
+
"description": "Options related to remote storage",
|
|
8809
|
+
"type": "object",
|
|
8810
|
+
"required": [
|
|
8811
|
+
"classifications"
|
|
8812
|
+
],
|
|
8813
|
+
"additionalProperties": false,
|
|
8814
|
+
"properties": {
|
|
8815
|
+
"classifications": {
|
|
8816
|
+
"description": "Labels to classify the type of data stored",
|
|
8817
|
+
"type": "array",
|
|
8818
|
+
"items": {
|
|
8819
|
+
"type": "string",
|
|
8820
|
+
"enum": [
|
|
8821
|
+
"ugc",
|
|
8822
|
+
"pii",
|
|
8823
|
+
"other"
|
|
8824
|
+
]
|
|
8825
|
+
},
|
|
8826
|
+
"minItems": 1
|
|
8827
|
+
}
|
|
8828
|
+
}
|
|
8771
8829
|
}
|
|
8772
8830
|
}
|
|
8773
8831
|
}
|
|
@@ -9651,10 +9709,10 @@
|
|
|
9651
9709
|
"type": "object",
|
|
9652
9710
|
"anyOf": [
|
|
9653
9711
|
{
|
|
9654
|
-
"$ref": "
|
|
9712
|
+
"$ref": "#"
|
|
9655
9713
|
},
|
|
9656
9714
|
{
|
|
9657
|
-
"$ref": "
|
|
9715
|
+
"$ref": "#/definitions/singleCondition"
|
|
9658
9716
|
}
|
|
9659
9717
|
]
|
|
9660
9718
|
},
|