@forge/manifest 3.2.0-next.6 → 3.2.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 +16 -0
- package/out/schema/manifest-schema.json +276 -276
- package/out/schema/manifest.d.ts +250 -250
- package/package.json +1 -1
|
@@ -6299,10 +6299,10 @@
|
|
|
6299
6299
|
"type": "object",
|
|
6300
6300
|
"anyOf": [
|
|
6301
6301
|
{
|
|
6302
|
-
"$ref": "#/definitions/
|
|
6302
|
+
"$ref": "#/definitions/singleCondition"
|
|
6303
6303
|
},
|
|
6304
6304
|
{
|
|
6305
|
-
"$ref": "#/definitions/
|
|
6305
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6306
6306
|
}
|
|
6307
6307
|
]
|
|
6308
6308
|
},
|
|
@@ -6418,10 +6418,10 @@
|
|
|
6418
6418
|
"type": "object",
|
|
6419
6419
|
"anyOf": [
|
|
6420
6420
|
{
|
|
6421
|
-
"$ref": "#/definitions/
|
|
6421
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6422
6422
|
},
|
|
6423
6423
|
{
|
|
6424
|
-
"$ref": "#/definitions/
|
|
6424
|
+
"$ref": "#/definitions/singleCondition"
|
|
6425
6425
|
}
|
|
6426
6426
|
]
|
|
6427
6427
|
},
|
|
@@ -6476,10 +6476,10 @@
|
|
|
6476
6476
|
"type": "object",
|
|
6477
6477
|
"anyOf": [
|
|
6478
6478
|
{
|
|
6479
|
-
"$ref": "#/definitions/
|
|
6479
|
+
"$ref": "#/definitions/singleCondition"
|
|
6480
6480
|
},
|
|
6481
6481
|
{
|
|
6482
|
-
"$ref": "#/definitions/
|
|
6482
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6483
6483
|
}
|
|
6484
6484
|
]
|
|
6485
6485
|
},
|
|
@@ -6534,10 +6534,10 @@
|
|
|
6534
6534
|
"type": "object",
|
|
6535
6535
|
"anyOf": [
|
|
6536
6536
|
{
|
|
6537
|
-
"$ref": "#/definitions/
|
|
6537
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6538
6538
|
},
|
|
6539
6539
|
{
|
|
6540
|
-
"$ref": "#/definitions/
|
|
6540
|
+
"$ref": "#/definitions/singleCondition"
|
|
6541
6541
|
}
|
|
6542
6542
|
]
|
|
6543
6543
|
},
|
|
@@ -6607,6 +6607,53 @@
|
|
|
6607
6607
|
"type": "object",
|
|
6608
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",
|
|
6609
6609
|
"anyOf": [
|
|
6610
|
+
{
|
|
6611
|
+
"properties": {
|
|
6612
|
+
"offsetX": {
|
|
6613
|
+
"maxLength": 10,
|
|
6614
|
+
"type": "string",
|
|
6615
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
6616
|
+
},
|
|
6617
|
+
"offsetY": {
|
|
6618
|
+
"maxLength": 10,
|
|
6619
|
+
"type": "string",
|
|
6620
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
6621
|
+
},
|
|
6622
|
+
"width": {
|
|
6623
|
+
"maxLength": 10,
|
|
6624
|
+
"type": "string",
|
|
6625
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
6626
|
+
},
|
|
6627
|
+
"onTop": {
|
|
6628
|
+
"type": "boolean",
|
|
6629
|
+
"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"
|
|
6630
|
+
},
|
|
6631
|
+
"showDelay": {
|
|
6632
|
+
"type": "integer",
|
|
6633
|
+
"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"
|
|
6634
|
+
},
|
|
6635
|
+
"closeOthers": {
|
|
6636
|
+
"type": "boolean",
|
|
6637
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
6638
|
+
},
|
|
6639
|
+
"persistent": {
|
|
6640
|
+
"type": "boolean",
|
|
6641
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
6642
|
+
},
|
|
6643
|
+
"onHover": {
|
|
6644
|
+
"type": "boolean",
|
|
6645
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
6646
|
+
},
|
|
6647
|
+
"isRelativeToMouse": {
|
|
6648
|
+
"type": "boolean",
|
|
6649
|
+
"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"
|
|
6650
|
+
}
|
|
6651
|
+
},
|
|
6652
|
+
"shortClassName": "inlineDialogOptions",
|
|
6653
|
+
"type": "object",
|
|
6654
|
+
"title": "Inline Dialog Options",
|
|
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
|
+
},
|
|
6610
6657
|
{
|
|
6611
6658
|
"properties": {
|
|
6612
6659
|
"key": {
|
|
@@ -6667,53 +6714,6 @@
|
|
|
6667
6714
|
"type": "object",
|
|
6668
6715
|
"title": "Dialog Options",
|
|
6669
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"
|
|
6670
|
-
},
|
|
6671
|
-
{
|
|
6672
|
-
"properties": {
|
|
6673
|
-
"offsetX": {
|
|
6674
|
-
"maxLength": 10,
|
|
6675
|
-
"type": "string",
|
|
6676
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
6677
|
-
},
|
|
6678
|
-
"offsetY": {
|
|
6679
|
-
"maxLength": 10,
|
|
6680
|
-
"type": "string",
|
|
6681
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
6682
|
-
},
|
|
6683
|
-
"width": {
|
|
6684
|
-
"maxLength": 10,
|
|
6685
|
-
"type": "string",
|
|
6686
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
6687
|
-
},
|
|
6688
|
-
"onTop": {
|
|
6689
|
-
"type": "boolean",
|
|
6690
|
-
"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"
|
|
6691
|
-
},
|
|
6692
|
-
"showDelay": {
|
|
6693
|
-
"type": "integer",
|
|
6694
|
-
"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"
|
|
6695
|
-
},
|
|
6696
|
-
"closeOthers": {
|
|
6697
|
-
"type": "boolean",
|
|
6698
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
6699
|
-
},
|
|
6700
|
-
"persistent": {
|
|
6701
|
-
"type": "boolean",
|
|
6702
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
6703
|
-
},
|
|
6704
|
-
"onHover": {
|
|
6705
|
-
"type": "boolean",
|
|
6706
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
6707
|
-
},
|
|
6708
|
-
"isRelativeToMouse": {
|
|
6709
|
-
"type": "boolean",
|
|
6710
|
-
"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"
|
|
6711
|
-
}
|
|
6712
|
-
},
|
|
6713
|
-
"shortClassName": "inlineDialogOptions",
|
|
6714
|
-
"type": "object",
|
|
6715
|
-
"title": "Inline Dialog Options",
|
|
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"
|
|
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
|
},
|
|
@@ -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
|
},
|
|
@@ -7365,22 +7365,59 @@
|
|
|
7365
7365
|
"items": {
|
|
7366
7366
|
"type": "object",
|
|
7367
7367
|
"anyOf": [
|
|
7368
|
+
{
|
|
7369
|
+
"properties": {
|
|
7370
|
+
"macroParameter": {
|
|
7371
|
+
"maxLength": 100,
|
|
7372
|
+
"type": "string",
|
|
7373
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7374
|
+
},
|
|
7375
|
+
"type": {
|
|
7376
|
+
"enum": [
|
|
7377
|
+
"text",
|
|
7378
|
+
"TEXT"
|
|
7379
|
+
],
|
|
7380
|
+
"type": "string",
|
|
7381
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7382
|
+
},
|
|
7383
|
+
"key": {
|
|
7384
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7385
|
+
"maxLength": 100,
|
|
7386
|
+
"type": "string",
|
|
7387
|
+
"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"
|
|
7388
|
+
}
|
|
7389
|
+
},
|
|
7390
|
+
"required": [
|
|
7391
|
+
"macroParameter",
|
|
7392
|
+
"type",
|
|
7393
|
+
"key"
|
|
7394
|
+
],
|
|
7395
|
+
"shortClassName": "textControlBean",
|
|
7396
|
+
"type": "object",
|
|
7397
|
+
"title": "TextControl",
|
|
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
|
+
},
|
|
7368
7400
|
{
|
|
7369
7401
|
"properties": {
|
|
7370
7402
|
"controls": {
|
|
7371
7403
|
"items": {
|
|
7372
7404
|
"properties": {
|
|
7405
|
+
"macroParameterValue": {
|
|
7406
|
+
"maxLength": 10000,
|
|
7407
|
+
"type": "string",
|
|
7408
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7409
|
+
},
|
|
7373
7410
|
"label": {
|
|
7374
7411
|
"$ref": "#/definitions/i18nProperty",
|
|
7375
7412
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7376
7413
|
},
|
|
7377
7414
|
"type": {
|
|
7378
7415
|
"enum": [
|
|
7379
|
-
"
|
|
7380
|
-
"
|
|
7416
|
+
"togglebutton",
|
|
7417
|
+
"TOGGLEBUTTON"
|
|
7381
7418
|
],
|
|
7382
7419
|
"type": "string",
|
|
7383
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7420
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
7384
7421
|
},
|
|
7385
7422
|
"key": {
|
|
7386
7423
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7390,68 +7427,44 @@
|
|
|
7390
7427
|
}
|
|
7391
7428
|
},
|
|
7392
7429
|
"required": [
|
|
7430
|
+
"macroParameterValue",
|
|
7393
7431
|
"label",
|
|
7394
7432
|
"type",
|
|
7395
7433
|
"key"
|
|
7396
7434
|
],
|
|
7397
7435
|
"additionalProperties": true,
|
|
7398
|
-
"shortClassName": "
|
|
7436
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
7399
7437
|
"type": "object",
|
|
7400
|
-
"title": "
|
|
7401
|
-
"description": "\n\nDefines a button which
|
|
7438
|
+
"title": "ToggleButtonControl",
|
|
7439
|
+
"description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n }\n\n\n"
|
|
7402
7440
|
},
|
|
7403
7441
|
"type": "array",
|
|
7404
|
-
"fieldDescription": "\n\
|
|
7442
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
7405
7443
|
},
|
|
7406
|
-
"type": {
|
|
7407
|
-
"enum": [
|
|
7408
|
-
"group",
|
|
7409
|
-
"GROUP"
|
|
7410
|
-
],
|
|
7411
|
-
"type": "string",
|
|
7412
|
-
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7413
|
-
}
|
|
7414
|
-
},
|
|
7415
|
-
"required": [
|
|
7416
|
-
"controls",
|
|
7417
|
-
"type"
|
|
7418
|
-
],
|
|
7419
|
-
"shortClassName": "controlGroupBean",
|
|
7420
|
-
"type": "object",
|
|
7421
|
-
"title": "ControlGroup",
|
|
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"
|
|
7423
|
-
},
|
|
7424
|
-
{
|
|
7425
|
-
"properties": {
|
|
7426
7444
|
"macroParameter": {
|
|
7445
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
7427
7446
|
"maxLength": 100,
|
|
7428
7447
|
"type": "string",
|
|
7429
|
-
"fieldDescription": "\n\nThe
|
|
7448
|
+
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7430
7449
|
},
|
|
7431
7450
|
"type": {
|
|
7432
7451
|
"enum": [
|
|
7433
|
-
"
|
|
7434
|
-
"
|
|
7452
|
+
"togglegroup",
|
|
7453
|
+
"TOGGLEGROUP"
|
|
7435
7454
|
],
|
|
7436
7455
|
"type": "string",
|
|
7437
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
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"
|
|
7456
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
7444
7457
|
}
|
|
7445
7458
|
},
|
|
7446
7459
|
"required": [
|
|
7460
|
+
"controls",
|
|
7447
7461
|
"macroParameter",
|
|
7448
|
-
"type"
|
|
7449
|
-
"key"
|
|
7462
|
+
"type"
|
|
7450
7463
|
],
|
|
7451
|
-
"shortClassName": "
|
|
7464
|
+
"shortClassName": "macroToggleGroupBean",
|
|
7452
7465
|
"type": "object",
|
|
7453
|
-
"title": "
|
|
7454
|
-
"description": "\n\nDefines a
|
|
7466
|
+
"title": "ToggleGroup",
|
|
7467
|
+
"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"
|
|
7455
7468
|
},
|
|
7456
7469
|
{
|
|
7457
7470
|
"properties": {
|
|
@@ -7490,22 +7503,17 @@
|
|
|
7490
7503
|
"controls": {
|
|
7491
7504
|
"items": {
|
|
7492
7505
|
"properties": {
|
|
7493
|
-
"macroParameterValue": {
|
|
7494
|
-
"maxLength": 10000,
|
|
7495
|
-
"type": "string",
|
|
7496
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7497
|
-
},
|
|
7498
7506
|
"label": {
|
|
7499
7507
|
"$ref": "#/definitions/i18nProperty",
|
|
7500
7508
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7501
7509
|
},
|
|
7502
7510
|
"type": {
|
|
7503
7511
|
"enum": [
|
|
7504
|
-
"
|
|
7505
|
-
"
|
|
7512
|
+
"button",
|
|
7513
|
+
"BUTTON"
|
|
7506
7514
|
],
|
|
7507
7515
|
"type": "string",
|
|
7508
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7516
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7509
7517
|
},
|
|
7510
7518
|
"key": {
|
|
7511
7519
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7515,44 +7523,36 @@
|
|
|
7515
7523
|
}
|
|
7516
7524
|
},
|
|
7517
7525
|
"required": [
|
|
7518
|
-
"macroParameterValue",
|
|
7519
7526
|
"label",
|
|
7520
7527
|
"type",
|
|
7521
7528
|
"key"
|
|
7522
7529
|
],
|
|
7523
7530
|
"additionalProperties": true,
|
|
7524
|
-
"shortClassName": "
|
|
7531
|
+
"shortClassName": "buttonControlBean",
|
|
7525
7532
|
"type": "object",
|
|
7526
|
-
"title": "
|
|
7527
|
-
"description": "\n\nDefines a
|
|
7528
|
-
},
|
|
7529
|
-
"type": "array",
|
|
7530
|
-
"fieldDescription": "\n\
|
|
7531
|
-
},
|
|
7532
|
-
"macroParameter": {
|
|
7533
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
7534
|
-
"maxLength": 100,
|
|
7535
|
-
"type": "string",
|
|
7536
|
-
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
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"
|
|
7537
7538
|
},
|
|
7538
7539
|
"type": {
|
|
7539
7540
|
"enum": [
|
|
7540
|
-
"
|
|
7541
|
-
"
|
|
7541
|
+
"group",
|
|
7542
|
+
"GROUP"
|
|
7542
7543
|
],
|
|
7543
7544
|
"type": "string",
|
|
7544
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7545
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7545
7546
|
}
|
|
7546
7547
|
},
|
|
7547
7548
|
"required": [
|
|
7548
7549
|
"controls",
|
|
7549
|
-
"macroParameter",
|
|
7550
7550
|
"type"
|
|
7551
7551
|
],
|
|
7552
|
-
"shortClassName": "
|
|
7552
|
+
"shortClassName": "controlGroupBean",
|
|
7553
7553
|
"type": "object",
|
|
7554
|
-
"title": "
|
|
7555
|
-
"description": "\n\nDefines a
|
|
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
|
},
|
|
@@ -7852,17 +7852,22 @@
|
|
|
7852
7852
|
"controls": {
|
|
7853
7853
|
"items": {
|
|
7854
7854
|
"properties": {
|
|
7855
|
+
"macroParameterValue": {
|
|
7856
|
+
"maxLength": 10000,
|
|
7857
|
+
"type": "string",
|
|
7858
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7859
|
+
},
|
|
7855
7860
|
"label": {
|
|
7856
7861
|
"$ref": "#/definitions/i18nProperty",
|
|
7857
7862
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7858
7863
|
},
|
|
7859
7864
|
"type": {
|
|
7860
7865
|
"enum": [
|
|
7861
|
-
"
|
|
7862
|
-
"
|
|
7866
|
+
"togglebutton",
|
|
7867
|
+
"TOGGLEBUTTON"
|
|
7863
7868
|
],
|
|
7864
7869
|
"type": "string",
|
|
7865
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7870
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
7866
7871
|
},
|
|
7867
7872
|
"key": {
|
|
7868
7873
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7872,36 +7877,44 @@
|
|
|
7872
7877
|
}
|
|
7873
7878
|
},
|
|
7874
7879
|
"required": [
|
|
7880
|
+
"macroParameterValue",
|
|
7875
7881
|
"label",
|
|
7876
7882
|
"type",
|
|
7877
7883
|
"key"
|
|
7878
7884
|
],
|
|
7879
7885
|
"additionalProperties": true,
|
|
7880
|
-
"shortClassName": "
|
|
7886
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
7881
7887
|
"type": "object",
|
|
7882
|
-
"title": "
|
|
7883
|
-
"description": "\n\nDefines a button which
|
|
7888
|
+
"title": "ToggleButtonControl",
|
|
7889
|
+
"description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n }\n\n\n"
|
|
7884
7890
|
},
|
|
7885
7891
|
"type": "array",
|
|
7886
|
-
"fieldDescription": "\n\
|
|
7892
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
7893
|
+
},
|
|
7894
|
+
"macroParameter": {
|
|
7895
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
7896
|
+
"maxLength": 100,
|
|
7897
|
+
"type": "string",
|
|
7898
|
+
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7887
7899
|
},
|
|
7888
7900
|
"type": {
|
|
7889
7901
|
"enum": [
|
|
7890
|
-
"
|
|
7891
|
-
"
|
|
7902
|
+
"togglegroup",
|
|
7903
|
+
"TOGGLEGROUP"
|
|
7892
7904
|
],
|
|
7893
7905
|
"type": "string",
|
|
7894
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7906
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
7895
7907
|
}
|
|
7896
7908
|
},
|
|
7897
7909
|
"required": [
|
|
7898
7910
|
"controls",
|
|
7911
|
+
"macroParameter",
|
|
7899
7912
|
"type"
|
|
7900
7913
|
],
|
|
7901
|
-
"shortClassName": "
|
|
7914
|
+
"shortClassName": "macroToggleGroupBean",
|
|
7902
7915
|
"type": "object",
|
|
7903
|
-
"title": "
|
|
7904
|
-
"description": "\n\nDefines a
|
|
7916
|
+
"title": "ToggleGroup",
|
|
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"
|
|
7905
7918
|
},
|
|
7906
7919
|
{
|
|
7907
7920
|
"properties": {
|
|
@@ -7935,27 +7948,54 @@
|
|
|
7935
7948
|
"title": "TextControl",
|
|
7936
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"
|
|
7937
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
|
+
},
|
|
7938
7983
|
{
|
|
7939
7984
|
"properties": {
|
|
7940
7985
|
"controls": {
|
|
7941
7986
|
"items": {
|
|
7942
7987
|
"properties": {
|
|
7943
|
-
"macroParameterValue": {
|
|
7944
|
-
"maxLength": 10000,
|
|
7945
|
-
"type": "string",
|
|
7946
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7947
|
-
},
|
|
7948
7988
|
"label": {
|
|
7949
7989
|
"$ref": "#/definitions/i18nProperty",
|
|
7950
7990
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7951
7991
|
},
|
|
7952
7992
|
"type": {
|
|
7953
7993
|
"enum": [
|
|
7954
|
-
"
|
|
7955
|
-
"
|
|
7994
|
+
"button",
|
|
7995
|
+
"BUTTON"
|
|
7956
7996
|
],
|
|
7957
7997
|
"type": "string",
|
|
7958
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7998
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7959
7999
|
},
|
|
7960
8000
|
"key": {
|
|
7961
8001
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7965,76 +8005,36 @@
|
|
|
7965
8005
|
}
|
|
7966
8006
|
},
|
|
7967
8007
|
"required": [
|
|
7968
|
-
"macroParameterValue",
|
|
7969
8008
|
"label",
|
|
7970
8009
|
"type",
|
|
7971
8010
|
"key"
|
|
7972
8011
|
],
|
|
7973
8012
|
"additionalProperties": true,
|
|
7974
|
-
"shortClassName": "
|
|
8013
|
+
"shortClassName": "buttonControlBean",
|
|
7975
8014
|
"type": "object",
|
|
7976
|
-
"title": "
|
|
7977
|
-
"description": "\n\nDefines a
|
|
8015
|
+
"title": "ButtonControl",
|
|
8016
|
+
"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"
|
|
7978
8017
|
},
|
|
7979
8018
|
"type": "array",
|
|
7980
|
-
"fieldDescription": "\n\
|
|
7981
|
-
},
|
|
7982
|
-
"macroParameter": {
|
|
7983
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
7984
|
-
"maxLength": 100,
|
|
7985
|
-
"type": "string",
|
|
7986
|
-
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
8019
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7987
8020
|
},
|
|
7988
8021
|
"type": {
|
|
7989
8022
|
"enum": [
|
|
7990
|
-
"
|
|
7991
|
-
"
|
|
8023
|
+
"group",
|
|
8024
|
+
"GROUP"
|
|
7992
8025
|
],
|
|
7993
8026
|
"type": "string",
|
|
7994
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
8027
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7995
8028
|
}
|
|
7996
8029
|
},
|
|
7997
8030
|
"required": [
|
|
7998
8031
|
"controls",
|
|
7999
|
-
"macroParameter",
|
|
8000
8032
|
"type"
|
|
8001
8033
|
],
|
|
8002
|
-
"shortClassName": "
|
|
8003
|
-
"type": "object",
|
|
8004
|
-
"title": "ToggleGroup",
|
|
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"
|
|
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",
|
|
8034
|
+
"shortClassName": "controlGroupBean",
|
|
8035
8035
|
"type": "object",
|
|
8036
|
-
"title": "
|
|
8037
|
-
"description": "\n\nDefines a
|
|
8036
|
+
"title": "ControlGroup",
|
|
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"
|
|
8038
8038
|
}
|
|
8039
8039
|
]
|
|
8040
8040
|
},
|
|
@@ -8270,53 +8270,6 @@
|
|
|
8270
8270
|
"type": "object",
|
|
8271
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",
|
|
8272
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
|
-
},
|
|
8320
8273
|
{
|
|
8321
8274
|
"properties": {
|
|
8322
8275
|
"size": {
|
|
@@ -8377,6 +8330,53 @@
|
|
|
8377
8330
|
"type": "object",
|
|
8378
8331
|
"title": "Dialog Module Options",
|
|
8379
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
|
+
},
|
|
8334
|
+
{
|
|
8335
|
+
"properties": {
|
|
8336
|
+
"offsetX": {
|
|
8337
|
+
"maxLength": 10,
|
|
8338
|
+
"type": "string",
|
|
8339
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
8340
|
+
},
|
|
8341
|
+
"offsetY": {
|
|
8342
|
+
"maxLength": 10,
|
|
8343
|
+
"type": "string",
|
|
8344
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
8345
|
+
},
|
|
8346
|
+
"width": {
|
|
8347
|
+
"maxLength": 10,
|
|
8348
|
+
"type": "string",
|
|
8349
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
8350
|
+
},
|
|
8351
|
+
"onTop": {
|
|
8352
|
+
"type": "boolean",
|
|
8353
|
+
"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"
|
|
8354
|
+
},
|
|
8355
|
+
"showDelay": {
|
|
8356
|
+
"type": "integer",
|
|
8357
|
+
"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"
|
|
8358
|
+
},
|
|
8359
|
+
"closeOthers": {
|
|
8360
|
+
"type": "boolean",
|
|
8361
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
8362
|
+
},
|
|
8363
|
+
"persistent": {
|
|
8364
|
+
"type": "boolean",
|
|
8365
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
8366
|
+
},
|
|
8367
|
+
"onHover": {
|
|
8368
|
+
"type": "boolean",
|
|
8369
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
8370
|
+
},
|
|
8371
|
+
"isRelativeToMouse": {
|
|
8372
|
+
"type": "boolean",
|
|
8373
|
+
"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"
|
|
8374
|
+
}
|
|
8375
|
+
},
|
|
8376
|
+
"shortClassName": "inlineDialogOptions",
|
|
8377
|
+
"type": "object",
|
|
8378
|
+
"title": "Inline Dialog Options",
|
|
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"
|
|
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
|
},
|