@forge/manifest 3.3.0-next.0 → 3.3.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/schema/manifest-schema.json +218 -218
- package/out/schema/manifest.d.ts +200 -200
- package/out/scopes/shipyard-scopes.json +2 -0
- package/out/types/module-types.d.ts +0 -8
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +0 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6228,10 +6228,10 @@
|
|
|
6228
6228
|
"type": "object",
|
|
6229
6229
|
"anyOf": [
|
|
6230
6230
|
{
|
|
6231
|
-
"$ref": "#/definitions/
|
|
6231
|
+
"$ref": "#/definitions/singleCondition"
|
|
6232
6232
|
},
|
|
6233
6233
|
{
|
|
6234
|
-
"$ref": "#/definitions/
|
|
6234
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6235
6235
|
}
|
|
6236
6236
|
]
|
|
6237
6237
|
},
|
|
@@ -6299,10 +6299,10 @@
|
|
|
6299
6299
|
"type": "object",
|
|
6300
6300
|
"anyOf": [
|
|
6301
6301
|
{
|
|
6302
|
-
"$ref": "#/definitions/
|
|
6302
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6303
6303
|
},
|
|
6304
6304
|
{
|
|
6305
|
-
"$ref": "#/definitions/
|
|
6305
|
+
"$ref": "#/definitions/singleCondition"
|
|
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/singleCondition"
|
|
6422
6422
|
},
|
|
6423
6423
|
{
|
|
6424
|
-
"$ref": "#/definitions/
|
|
6424
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6425
6425
|
}
|
|
6426
6426
|
]
|
|
6427
6427
|
},
|
|
@@ -6534,10 +6534,10 @@
|
|
|
6534
6534
|
"type": "object",
|
|
6535
6535
|
"anyOf": [
|
|
6536
6536
|
{
|
|
6537
|
-
"$ref": "#/definitions/
|
|
6537
|
+
"$ref": "#/definitions/singleCondition"
|
|
6538
6538
|
},
|
|
6539
6539
|
{
|
|
6540
|
-
"$ref": "#/definitions/
|
|
6540
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6541
6541
|
}
|
|
6542
6542
|
]
|
|
6543
6543
|
},
|
|
@@ -6607,6 +6607,67 @@
|
|
|
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
|
+
"size": {
|
|
6613
|
+
"enum": [
|
|
6614
|
+
"small",
|
|
6615
|
+
"SMALL",
|
|
6616
|
+
"medium",
|
|
6617
|
+
"MEDIUM",
|
|
6618
|
+
"large",
|
|
6619
|
+
"LARGE",
|
|
6620
|
+
"x-large",
|
|
6621
|
+
"X-LARGE",
|
|
6622
|
+
"fullscreen",
|
|
6623
|
+
"FULLSCREEN",
|
|
6624
|
+
"maximum",
|
|
6625
|
+
"MAXIMUM"
|
|
6626
|
+
],
|
|
6627
|
+
"type": "string",
|
|
6628
|
+
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
6629
|
+
},
|
|
6630
|
+
"chrome": {
|
|
6631
|
+
"type": "boolean",
|
|
6632
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
6633
|
+
"defaultValue": "true"
|
|
6634
|
+
},
|
|
6635
|
+
"width": {
|
|
6636
|
+
"maxLength": 10,
|
|
6637
|
+
"type": "string",
|
|
6638
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
6639
|
+
},
|
|
6640
|
+
"header": {
|
|
6641
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6642
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
6643
|
+
},
|
|
6644
|
+
"height": {
|
|
6645
|
+
"maxLength": 10,
|
|
6646
|
+
"type": "string",
|
|
6647
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
6648
|
+
}
|
|
6649
|
+
},
|
|
6650
|
+
"shortClassName": "dialogOptions",
|
|
6651
|
+
"type": "object",
|
|
6652
|
+
"title": "Dialog Options",
|
|
6653
|
+
"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"
|
|
6654
|
+
},
|
|
6655
|
+
{
|
|
6656
|
+
"properties": {
|
|
6657
|
+
"key": {
|
|
6658
|
+
"maxLength": 100,
|
|
6659
|
+
"type": "string",
|
|
6660
|
+
"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"
|
|
6661
|
+
}
|
|
6662
|
+
},
|
|
6663
|
+
"required": [
|
|
6664
|
+
"key"
|
|
6665
|
+
],
|
|
6666
|
+
"shortClassName": "dialogModuleOptions",
|
|
6667
|
+
"type": "object",
|
|
6668
|
+
"title": "Dialog Module Options",
|
|
6669
|
+
"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"
|
|
6670
|
+
},
|
|
6610
6671
|
{
|
|
6611
6672
|
"properties": {
|
|
6612
6673
|
"offsetX": {
|
|
@@ -6653,67 +6714,6 @@
|
|
|
6653
6714
|
"type": "object",
|
|
6654
6715
|
"title": "Inline Dialog Options",
|
|
6655
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"
|
|
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
|
-
},
|
|
6673
|
-
{
|
|
6674
|
-
"properties": {
|
|
6675
|
-
"size": {
|
|
6676
|
-
"enum": [
|
|
6677
|
-
"small",
|
|
6678
|
-
"SMALL",
|
|
6679
|
-
"medium",
|
|
6680
|
-
"MEDIUM",
|
|
6681
|
-
"large",
|
|
6682
|
-
"LARGE",
|
|
6683
|
-
"x-large",
|
|
6684
|
-
"X-LARGE",
|
|
6685
|
-
"fullscreen",
|
|
6686
|
-
"FULLSCREEN",
|
|
6687
|
-
"maximum",
|
|
6688
|
-
"MAXIMUM"
|
|
6689
|
-
],
|
|
6690
|
-
"type": "string",
|
|
6691
|
-
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
6692
|
-
},
|
|
6693
|
-
"chrome": {
|
|
6694
|
-
"type": "boolean",
|
|
6695
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
6696
|
-
"defaultValue": "true"
|
|
6697
|
-
},
|
|
6698
|
-
"width": {
|
|
6699
|
-
"maxLength": 10,
|
|
6700
|
-
"type": "string",
|
|
6701
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
6702
|
-
},
|
|
6703
|
-
"header": {
|
|
6704
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6705
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
6706
|
-
},
|
|
6707
|
-
"height": {
|
|
6708
|
-
"maxLength": 10,
|
|
6709
|
-
"type": "string",
|
|
6710
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
6711
|
-
}
|
|
6712
|
-
},
|
|
6713
|
-
"shortClassName": "dialogOptions",
|
|
6714
|
-
"type": "object",
|
|
6715
|
-
"title": "Dialog Options",
|
|
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"
|
|
6717
6717
|
}
|
|
6718
6718
|
]
|
|
6719
6719
|
},
|
|
@@ -6882,10 +6882,10 @@
|
|
|
6882
6882
|
"type": "object",
|
|
6883
6883
|
"anyOf": [
|
|
6884
6884
|
{
|
|
6885
|
-
"$ref": "#/definitions/
|
|
6885
|
+
"$ref": "#/definitions/singleCondition"
|
|
6886
6886
|
},
|
|
6887
6887
|
{
|
|
6888
|
-
"$ref": "#/definitions/
|
|
6888
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6889
6889
|
}
|
|
6890
6890
|
]
|
|
6891
6891
|
},
|
|
@@ -7040,10 +7040,10 @@
|
|
|
7040
7040
|
"type": "object",
|
|
7041
7041
|
"anyOf": [
|
|
7042
7042
|
{
|
|
7043
|
-
"$ref": "
|
|
7043
|
+
"$ref": "#"
|
|
7044
7044
|
},
|
|
7045
7045
|
{
|
|
7046
|
-
"$ref": "
|
|
7046
|
+
"$ref": "#/definitions/singleCondition"
|
|
7047
7047
|
}
|
|
7048
7048
|
]
|
|
7049
7049
|
},
|
|
@@ -7365,38 +7365,6 @@
|
|
|
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
|
-
},
|
|
7400
7368
|
{
|
|
7401
7369
|
"properties": {
|
|
7402
7370
|
"controls": {
|
|
@@ -7553,6 +7521,38 @@
|
|
|
7553
7521
|
"type": "object",
|
|
7554
7522
|
"title": "ControlGroup",
|
|
7555
7523
|
"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"
|
|
7524
|
+
},
|
|
7525
|
+
{
|
|
7526
|
+
"properties": {
|
|
7527
|
+
"macroParameter": {
|
|
7528
|
+
"maxLength": 100,
|
|
7529
|
+
"type": "string",
|
|
7530
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
7531
|
+
},
|
|
7532
|
+
"type": {
|
|
7533
|
+
"enum": [
|
|
7534
|
+
"text",
|
|
7535
|
+
"TEXT"
|
|
7536
|
+
],
|
|
7537
|
+
"type": "string",
|
|
7538
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
7539
|
+
},
|
|
7540
|
+
"key": {
|
|
7541
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7542
|
+
"maxLength": 100,
|
|
7543
|
+
"type": "string",
|
|
7544
|
+
"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"
|
|
7545
|
+
}
|
|
7546
|
+
},
|
|
7547
|
+
"required": [
|
|
7548
|
+
"macroParameter",
|
|
7549
|
+
"type",
|
|
7550
|
+
"key"
|
|
7551
|
+
],
|
|
7552
|
+
"shortClassName": "textControlBean",
|
|
7553
|
+
"type": "object",
|
|
7554
|
+
"title": "TextControl",
|
|
7555
|
+
"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"
|
|
7556
7556
|
}
|
|
7557
7557
|
]
|
|
7558
7558
|
},
|
|
@@ -7918,35 +7918,59 @@
|
|
|
7918
7918
|
},
|
|
7919
7919
|
{
|
|
7920
7920
|
"properties": {
|
|
7921
|
-
"
|
|
7922
|
-
"
|
|
7923
|
-
|
|
7924
|
-
|
|
7921
|
+
"controls": {
|
|
7922
|
+
"items": {
|
|
7923
|
+
"properties": {
|
|
7924
|
+
"label": {
|
|
7925
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7926
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7927
|
+
},
|
|
7928
|
+
"type": {
|
|
7929
|
+
"enum": [
|
|
7930
|
+
"button",
|
|
7931
|
+
"BUTTON"
|
|
7932
|
+
],
|
|
7933
|
+
"type": "string",
|
|
7934
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7935
|
+
},
|
|
7936
|
+
"key": {
|
|
7937
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7938
|
+
"maxLength": 100,
|
|
7939
|
+
"type": "string",
|
|
7940
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7941
|
+
}
|
|
7942
|
+
},
|
|
7943
|
+
"required": [
|
|
7944
|
+
"label",
|
|
7945
|
+
"type",
|
|
7946
|
+
"key"
|
|
7947
|
+
],
|
|
7948
|
+
"additionalProperties": true,
|
|
7949
|
+
"shortClassName": "buttonControlBean",
|
|
7950
|
+
"type": "object",
|
|
7951
|
+
"title": "ButtonControl",
|
|
7952
|
+
"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"
|
|
7953
|
+
},
|
|
7954
|
+
"type": "array",
|
|
7955
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7925
7956
|
},
|
|
7926
7957
|
"type": {
|
|
7927
7958
|
"enum": [
|
|
7928
|
-
"
|
|
7929
|
-
"
|
|
7959
|
+
"group",
|
|
7960
|
+
"GROUP"
|
|
7930
7961
|
],
|
|
7931
7962
|
"type": "string",
|
|
7932
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
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"
|
|
7963
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7939
7964
|
}
|
|
7940
7965
|
},
|
|
7941
7966
|
"required": [
|
|
7942
|
-
"
|
|
7943
|
-
"type"
|
|
7944
|
-
"key"
|
|
7967
|
+
"controls",
|
|
7968
|
+
"type"
|
|
7945
7969
|
],
|
|
7946
|
-
"shortClassName": "
|
|
7970
|
+
"shortClassName": "controlGroupBean",
|
|
7947
7971
|
"type": "object",
|
|
7948
|
-
"title": "
|
|
7949
|
-
"description": "\n\nDefines a
|
|
7972
|
+
"title": "ControlGroup",
|
|
7973
|
+
"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"
|
|
7950
7974
|
},
|
|
7951
7975
|
{
|
|
7952
7976
|
"properties": {
|
|
@@ -7982,59 +8006,35 @@
|
|
|
7982
8006
|
},
|
|
7983
8007
|
{
|
|
7984
8008
|
"properties": {
|
|
7985
|
-
"
|
|
7986
|
-
"
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7990
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7991
|
-
},
|
|
7992
|
-
"type": {
|
|
7993
|
-
"enum": [
|
|
7994
|
-
"button",
|
|
7995
|
-
"BUTTON"
|
|
7996
|
-
],
|
|
7997
|
-
"type": "string",
|
|
7998
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7999
|
-
},
|
|
8000
|
-
"key": {
|
|
8001
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8002
|
-
"maxLength": 100,
|
|
8003
|
-
"type": "string",
|
|
8004
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8005
|
-
}
|
|
8006
|
-
},
|
|
8007
|
-
"required": [
|
|
8008
|
-
"label",
|
|
8009
|
-
"type",
|
|
8010
|
-
"key"
|
|
8011
|
-
],
|
|
8012
|
-
"additionalProperties": true,
|
|
8013
|
-
"shortClassName": "buttonControlBean",
|
|
8014
|
-
"type": "object",
|
|
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"
|
|
8017
|
-
},
|
|
8018
|
-
"type": "array",
|
|
8019
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
8009
|
+
"macroParameter": {
|
|
8010
|
+
"maxLength": 100,
|
|
8011
|
+
"type": "string",
|
|
8012
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8020
8013
|
},
|
|
8021
8014
|
"type": {
|
|
8022
8015
|
"enum": [
|
|
8023
|
-
"
|
|
8024
|
-
"
|
|
8016
|
+
"text",
|
|
8017
|
+
"TEXT"
|
|
8025
8018
|
],
|
|
8026
8019
|
"type": "string",
|
|
8027
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
8020
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8021
|
+
},
|
|
8022
|
+
"key": {
|
|
8023
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8024
|
+
"maxLength": 100,
|
|
8025
|
+
"type": "string",
|
|
8026
|
+
"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"
|
|
8028
8027
|
}
|
|
8029
8028
|
},
|
|
8030
8029
|
"required": [
|
|
8031
|
-
"
|
|
8032
|
-
"type"
|
|
8030
|
+
"macroParameter",
|
|
8031
|
+
"type",
|
|
8032
|
+
"key"
|
|
8033
8033
|
],
|
|
8034
|
-
"shortClassName": "
|
|
8034
|
+
"shortClassName": "textControlBean",
|
|
8035
8035
|
"type": "object",
|
|
8036
|
-
"title": "
|
|
8037
|
-
"description": "\n\nDefines a
|
|
8036
|
+
"title": "TextControl",
|
|
8037
|
+
"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"
|
|
8038
8038
|
}
|
|
8039
8039
|
]
|
|
8040
8040
|
},
|
|
@@ -8237,10 +8237,10 @@
|
|
|
8237
8237
|
"type": "object",
|
|
8238
8238
|
"anyOf": [
|
|
8239
8239
|
{
|
|
8240
|
-
"$ref": "#/definitions/
|
|
8240
|
+
"$ref": "#/definitions/singleCondition"
|
|
8241
8241
|
},
|
|
8242
8242
|
{
|
|
8243
|
-
"$ref": "#/definitions/
|
|
8243
|
+
"$ref": "#/definitions/compositeCondition"
|
|
8244
8244
|
}
|
|
8245
8245
|
]
|
|
8246
8246
|
},
|
|
@@ -8270,6 +8270,53 @@
|
|
|
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
|
+
},
|
|
8273
8320
|
{
|
|
8274
8321
|
"properties": {
|
|
8275
8322
|
"size": {
|
|
@@ -8330,53 +8377,6 @@
|
|
|
8330
8377
|
"type": "object",
|
|
8331
8378
|
"title": "Dialog Module Options",
|
|
8332
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"
|
|
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": "#"
|
|
9713
9713
|
},
|
|
9714
9714
|
{
|
|
9715
|
-
"$ref": "
|
|
9715
|
+
"$ref": "#/definitions/singleCondition"
|
|
9716
9716
|
}
|
|
9717
9717
|
]
|
|
9718
9718
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3045,7 +3045,7 @@ export interface Modules {
|
|
|
3045
3045
|
fullPage?: boolean;
|
|
3046
3046
|
cacheable?: boolean;
|
|
3047
3047
|
location?: string;
|
|
3048
|
-
conditions?: (
|
|
3048
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3049
3049
|
params?: {
|
|
3050
3050
|
[k: string]: unknown;
|
|
3051
3051
|
};
|
|
@@ -3060,7 +3060,7 @@ export interface Modules {
|
|
|
3060
3060
|
fullPage?: boolean;
|
|
3061
3061
|
cacheable?: boolean;
|
|
3062
3062
|
location?: string;
|
|
3063
|
-
conditions?: (
|
|
3063
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3064
3064
|
params?: {
|
|
3065
3065
|
[k: string]: unknown;
|
|
3066
3066
|
};
|
|
@@ -3078,7 +3078,7 @@ export interface Modules {
|
|
|
3078
3078
|
location?: string;
|
|
3079
3079
|
cacheable?: boolean;
|
|
3080
3080
|
supportsNative?: boolean;
|
|
3081
|
-
conditions?: (
|
|
3081
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3082
3082
|
params?: {
|
|
3083
3083
|
[k: string]: unknown;
|
|
3084
3084
|
};
|
|
@@ -3094,7 +3094,7 @@ export interface Modules {
|
|
|
3094
3094
|
location?: string;
|
|
3095
3095
|
cacheable?: boolean;
|
|
3096
3096
|
supportsNative?: boolean;
|
|
3097
|
-
conditions?: (
|
|
3097
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3098
3098
|
params?: {
|
|
3099
3099
|
[k: string]: unknown;
|
|
3100
3100
|
};
|
|
@@ -3132,7 +3132,7 @@ export interface Modules {
|
|
|
3132
3132
|
weight?: number;
|
|
3133
3133
|
cacheable?: boolean;
|
|
3134
3134
|
location?: string;
|
|
3135
|
-
conditions?: (
|
|
3135
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3136
3136
|
params?: {
|
|
3137
3137
|
[k: string]: unknown;
|
|
3138
3138
|
};
|
|
@@ -3146,7 +3146,7 @@ export interface Modules {
|
|
|
3146
3146
|
weight?: number;
|
|
3147
3147
|
cacheable?: boolean;
|
|
3148
3148
|
location?: string;
|
|
3149
|
-
conditions?: (
|
|
3149
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3150
3150
|
params?: {
|
|
3151
3151
|
[k: string]: unknown;
|
|
3152
3152
|
};
|
|
@@ -3188,7 +3188,7 @@ export interface Modules {
|
|
|
3188
3188
|
weight?: number;
|
|
3189
3189
|
cacheable?: boolean;
|
|
3190
3190
|
location?: string;
|
|
3191
|
-
conditions?: (
|
|
3191
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3192
3192
|
params?: {
|
|
3193
3193
|
[k: string]: unknown;
|
|
3194
3194
|
};
|
|
@@ -3202,7 +3202,7 @@ export interface Modules {
|
|
|
3202
3202
|
weight?: number;
|
|
3203
3203
|
cacheable?: boolean;
|
|
3204
3204
|
location?: string;
|
|
3205
|
-
conditions?: (
|
|
3205
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3206
3206
|
params?: {
|
|
3207
3207
|
[k: string]: unknown;
|
|
3208
3208
|
};
|
|
@@ -3257,7 +3257,7 @@ export interface Modules {
|
|
|
3257
3257
|
fullPage?: boolean;
|
|
3258
3258
|
cacheable?: boolean;
|
|
3259
3259
|
location?: string;
|
|
3260
|
-
conditions?: (
|
|
3260
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3261
3261
|
params?: {
|
|
3262
3262
|
[k: string]: unknown;
|
|
3263
3263
|
};
|
|
@@ -3272,7 +3272,7 @@ export interface Modules {
|
|
|
3272
3272
|
fullPage?: boolean;
|
|
3273
3273
|
cacheable?: boolean;
|
|
3274
3274
|
location?: string;
|
|
3275
|
-
conditions?: (
|
|
3275
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3276
3276
|
params?: {
|
|
3277
3277
|
[k: string]: unknown;
|
|
3278
3278
|
};
|
|
@@ -3530,7 +3530,7 @@ export interface Modules {
|
|
|
3530
3530
|
icon?: Icon18;
|
|
3531
3531
|
name?: I18NProperty91;
|
|
3532
3532
|
cacheable?: boolean;
|
|
3533
|
-
conditions?: (
|
|
3533
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3534
3534
|
params?: {
|
|
3535
3535
|
[k: string]: unknown;
|
|
3536
3536
|
};
|
|
@@ -3546,7 +3546,7 @@ export interface Modules {
|
|
|
3546
3546
|
icon?: Icon18;
|
|
3547
3547
|
name?: I18NProperty91;
|
|
3548
3548
|
cacheable?: boolean;
|
|
3549
|
-
conditions?: (
|
|
3549
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3550
3550
|
params?: {
|
|
3551
3551
|
[k: string]: unknown;
|
|
3552
3552
|
};
|
|
@@ -3765,7 +3765,7 @@ export interface I18NProperty1 {
|
|
|
3765
3765
|
*
|
|
3766
3766
|
*/
|
|
3767
3767
|
export interface CompositeCondition {
|
|
3768
|
-
conditions?: (
|
|
3768
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3769
3769
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3770
3770
|
[k: string]: unknown;
|
|
3771
3771
|
}
|
|
@@ -6473,74 +6473,10 @@ export interface Icon10 {
|
|
|
6473
6473
|
*
|
|
6474
6474
|
*/
|
|
6475
6475
|
export interface WebItemTarget1 {
|
|
6476
|
-
options?:
|
|
6476
|
+
options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
|
|
6477
6477
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
6478
6478
|
[k: string]: unknown;
|
|
6479
6479
|
}
|
|
6480
|
-
/**
|
|
6481
|
-
*
|
|
6482
|
-
*
|
|
6483
|
-
* Options for an inline dialog target
|
|
6484
|
-
*
|
|
6485
|
-
* <h3>Example</h3>
|
|
6486
|
-
*
|
|
6487
|
-
*
|
|
6488
|
-
*
|
|
6489
|
-
*
|
|
6490
|
-
*
|
|
6491
|
-
* {
|
|
6492
|
-
* "target": {
|
|
6493
|
-
* "type": "inlinedialog",
|
|
6494
|
-
* "options": {
|
|
6495
|
-
* "onHover": true,
|
|
6496
|
-
* "offsetX": "30px",
|
|
6497
|
-
* "offsetY": "20px"
|
|
6498
|
-
* }
|
|
6499
|
-
* }
|
|
6500
|
-
* }
|
|
6501
|
-
*
|
|
6502
|
-
*
|
|
6503
|
-
*
|
|
6504
|
-
*/
|
|
6505
|
-
export interface InlineDialogOptions1 {
|
|
6506
|
-
offsetX?: string;
|
|
6507
|
-
offsetY?: string;
|
|
6508
|
-
width?: string;
|
|
6509
|
-
onTop?: boolean;
|
|
6510
|
-
showDelay?: number;
|
|
6511
|
-
closeOthers?: boolean;
|
|
6512
|
-
persistent?: boolean;
|
|
6513
|
-
onHover?: boolean;
|
|
6514
|
-
isRelativeToMouse?: boolean;
|
|
6515
|
-
[k: string]: unknown;
|
|
6516
|
-
}
|
|
6517
|
-
/**
|
|
6518
|
-
*
|
|
6519
|
-
*
|
|
6520
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6521
|
-
*
|
|
6522
|
-
* <h3>Example</h3>
|
|
6523
|
-
*
|
|
6524
|
-
*
|
|
6525
|
-
*
|
|
6526
|
-
*
|
|
6527
|
-
*
|
|
6528
|
-
* {
|
|
6529
|
-
* "target": {
|
|
6530
|
-
* "type": "dialogmodule",
|
|
6531
|
-
* "options": {
|
|
6532
|
-
* "key": "dialog-module-key"
|
|
6533
|
-
* }
|
|
6534
|
-
* }
|
|
6535
|
-
* }
|
|
6536
|
-
*
|
|
6537
|
-
*
|
|
6538
|
-
*
|
|
6539
|
-
*/
|
|
6540
|
-
export interface DialogModuleOptions1 {
|
|
6541
|
-
key: string;
|
|
6542
|
-
[k: string]: unknown;
|
|
6543
|
-
}
|
|
6544
6480
|
/**
|
|
6545
6481
|
*
|
|
6546
6482
|
*
|
|
@@ -6639,6 +6575,70 @@ export interface I18NProperty58 {
|
|
|
6639
6575
|
i18n?: string;
|
|
6640
6576
|
[k: string]: unknown;
|
|
6641
6577
|
}
|
|
6578
|
+
/**
|
|
6579
|
+
*
|
|
6580
|
+
*
|
|
6581
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6582
|
+
*
|
|
6583
|
+
* <h3>Example</h3>
|
|
6584
|
+
*
|
|
6585
|
+
*
|
|
6586
|
+
*
|
|
6587
|
+
*
|
|
6588
|
+
*
|
|
6589
|
+
* {
|
|
6590
|
+
* "target": {
|
|
6591
|
+
* "type": "dialogmodule",
|
|
6592
|
+
* "options": {
|
|
6593
|
+
* "key": "dialog-module-key"
|
|
6594
|
+
* }
|
|
6595
|
+
* }
|
|
6596
|
+
* }
|
|
6597
|
+
*
|
|
6598
|
+
*
|
|
6599
|
+
*
|
|
6600
|
+
*/
|
|
6601
|
+
export interface DialogModuleOptions1 {
|
|
6602
|
+
key: string;
|
|
6603
|
+
[k: string]: unknown;
|
|
6604
|
+
}
|
|
6605
|
+
/**
|
|
6606
|
+
*
|
|
6607
|
+
*
|
|
6608
|
+
* Options for an inline dialog target
|
|
6609
|
+
*
|
|
6610
|
+
* <h3>Example</h3>
|
|
6611
|
+
*
|
|
6612
|
+
*
|
|
6613
|
+
*
|
|
6614
|
+
*
|
|
6615
|
+
*
|
|
6616
|
+
* {
|
|
6617
|
+
* "target": {
|
|
6618
|
+
* "type": "inlinedialog",
|
|
6619
|
+
* "options": {
|
|
6620
|
+
* "onHover": true,
|
|
6621
|
+
* "offsetX": "30px",
|
|
6622
|
+
* "offsetY": "20px"
|
|
6623
|
+
* }
|
|
6624
|
+
* }
|
|
6625
|
+
* }
|
|
6626
|
+
*
|
|
6627
|
+
*
|
|
6628
|
+
*
|
|
6629
|
+
*/
|
|
6630
|
+
export interface InlineDialogOptions1 {
|
|
6631
|
+
offsetX?: string;
|
|
6632
|
+
offsetY?: string;
|
|
6633
|
+
width?: string;
|
|
6634
|
+
onTop?: boolean;
|
|
6635
|
+
showDelay?: number;
|
|
6636
|
+
closeOthers?: boolean;
|
|
6637
|
+
persistent?: boolean;
|
|
6638
|
+
onHover?: boolean;
|
|
6639
|
+
isRelativeToMouse?: boolean;
|
|
6640
|
+
[k: string]: unknown;
|
|
6641
|
+
}
|
|
6642
6642
|
/**
|
|
6643
6643
|
*
|
|
6644
6644
|
*
|
|
@@ -7126,7 +7126,7 @@ export interface I18NProperty63 {
|
|
|
7126
7126
|
*
|
|
7127
7127
|
*/
|
|
7128
7128
|
export interface CompositeCondition7 {
|
|
7129
|
-
conditions?: (
|
|
7129
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7130
7130
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7131
7131
|
[k: string]: unknown;
|
|
7132
7132
|
}
|
|
@@ -8580,39 +8580,11 @@ export interface I18NProperty74 {
|
|
|
8580
8580
|
*
|
|
8581
8581
|
*/
|
|
8582
8582
|
export interface MacroPropertyPanel {
|
|
8583
|
-
controls?: (
|
|
8583
|
+
controls?: (ToggleGroup | ButtonControl | ControlGroup | TextControl)[];
|
|
8584
8584
|
cacheable?: boolean;
|
|
8585
8585
|
url: string;
|
|
8586
8586
|
[k: string]: unknown;
|
|
8587
8587
|
}
|
|
8588
|
-
/**
|
|
8589
|
-
*
|
|
8590
|
-
*
|
|
8591
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
8592
|
-
*
|
|
8593
|
-
* <p><b>Example</b></p>
|
|
8594
|
-
*
|
|
8595
|
-
*
|
|
8596
|
-
*
|
|
8597
|
-
*
|
|
8598
|
-
*
|
|
8599
|
-
* {
|
|
8600
|
-
* "type": "button",
|
|
8601
|
-
* "label": {
|
|
8602
|
-
* "value": "My Custom Control 0"
|
|
8603
|
-
* },
|
|
8604
|
-
* "key": "my-custom-control-0"
|
|
8605
|
-
* }
|
|
8606
|
-
*
|
|
8607
|
-
*
|
|
8608
|
-
*
|
|
8609
|
-
*/
|
|
8610
|
-
export interface TextControl {
|
|
8611
|
-
macroParameter: string;
|
|
8612
|
-
type: 'text' | 'TEXT';
|
|
8613
|
-
key: string;
|
|
8614
|
-
[k: string]: unknown;
|
|
8615
|
-
}
|
|
8616
8588
|
/**
|
|
8617
8589
|
*
|
|
8618
8590
|
*
|
|
@@ -8857,6 +8829,34 @@ export interface I18NProperty77 {
|
|
|
8857
8829
|
i18n?: string;
|
|
8858
8830
|
[k: string]: unknown;
|
|
8859
8831
|
}
|
|
8832
|
+
/**
|
|
8833
|
+
*
|
|
8834
|
+
*
|
|
8835
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8836
|
+
*
|
|
8837
|
+
* <p><b>Example</b></p>
|
|
8838
|
+
*
|
|
8839
|
+
*
|
|
8840
|
+
*
|
|
8841
|
+
*
|
|
8842
|
+
*
|
|
8843
|
+
* {
|
|
8844
|
+
* "type": "button",
|
|
8845
|
+
* "label": {
|
|
8846
|
+
* "value": "My Custom Control 0"
|
|
8847
|
+
* },
|
|
8848
|
+
* "key": "my-custom-control-0"
|
|
8849
|
+
* }
|
|
8850
|
+
*
|
|
8851
|
+
*
|
|
8852
|
+
*
|
|
8853
|
+
*/
|
|
8854
|
+
export interface TextControl {
|
|
8855
|
+
macroParameter: string;
|
|
8856
|
+
type: 'text' | 'TEXT';
|
|
8857
|
+
key: string;
|
|
8858
|
+
[k: string]: unknown;
|
|
8859
|
+
}
|
|
8860
8860
|
/**
|
|
8861
8861
|
*
|
|
8862
8862
|
*
|
|
@@ -29825,7 +29825,7 @@ export interface I18NProperty83 {
|
|
|
29825
29825
|
*
|
|
29826
29826
|
*/
|
|
29827
29827
|
export interface MacroPropertyPanel1 {
|
|
29828
|
-
controls?: (ToggleGroup1 |
|
|
29828
|
+
controls?: (ToggleGroup1 | ControlGroup1 | ButtonControl3 | TextControl1)[];
|
|
29829
29829
|
cacheable?: boolean;
|
|
29830
29830
|
url: string;
|
|
29831
29831
|
[k: string]: unknown;
|
|
@@ -29932,7 +29932,7 @@ export interface I18NProperty84 {
|
|
|
29932
29932
|
/**
|
|
29933
29933
|
*
|
|
29934
29934
|
*
|
|
29935
|
-
* Defines a
|
|
29935
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29936
29936
|
*
|
|
29937
29937
|
* <p><b>Example</b></p>
|
|
29938
29938
|
*
|
|
@@ -29940,21 +29940,34 @@ export interface I18NProperty84 {
|
|
|
29940
29940
|
*
|
|
29941
29941
|
*
|
|
29942
29942
|
*
|
|
29943
|
-
*
|
|
29944
|
-
*
|
|
29945
|
-
*
|
|
29946
|
-
* "
|
|
29947
|
-
*
|
|
29948
|
-
*
|
|
29949
|
-
*
|
|
29943
|
+
* [
|
|
29944
|
+
* {
|
|
29945
|
+
* "type": "group",
|
|
29946
|
+
* "controls": [
|
|
29947
|
+
* {
|
|
29948
|
+
* "type": "button",
|
|
29949
|
+
* "label": {
|
|
29950
|
+
* "value": "My Custom Control 0"
|
|
29951
|
+
* },
|
|
29952
|
+
* "key": "my-custom-control-0"
|
|
29953
|
+
* },
|
|
29954
|
+
* {
|
|
29955
|
+
* "type": "button",
|
|
29956
|
+
* "label": {
|
|
29957
|
+
* "value": "My Custom Control 1"
|
|
29958
|
+
* },
|
|
29959
|
+
* "key": "my-custom-control-1"
|
|
29960
|
+
* }
|
|
29961
|
+
* ]
|
|
29962
|
+
* }
|
|
29963
|
+
* ]
|
|
29950
29964
|
*
|
|
29951
29965
|
*
|
|
29952
29966
|
*
|
|
29953
29967
|
*/
|
|
29954
|
-
export interface
|
|
29955
|
-
|
|
29956
|
-
type: '
|
|
29957
|
-
key: string;
|
|
29968
|
+
export interface ControlGroup1 {
|
|
29969
|
+
controls: ButtonControl2[];
|
|
29970
|
+
type: 'group' | 'GROUP';
|
|
29958
29971
|
[k: string]: unknown;
|
|
29959
29972
|
}
|
|
29960
29973
|
/**
|
|
@@ -30009,47 +30022,6 @@ export interface I18NProperty85 {
|
|
|
30009
30022
|
i18n?: string;
|
|
30010
30023
|
[k: string]: unknown;
|
|
30011
30024
|
}
|
|
30012
|
-
/**
|
|
30013
|
-
*
|
|
30014
|
-
*
|
|
30015
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30016
|
-
*
|
|
30017
|
-
* <p><b>Example</b></p>
|
|
30018
|
-
*
|
|
30019
|
-
*
|
|
30020
|
-
*
|
|
30021
|
-
*
|
|
30022
|
-
*
|
|
30023
|
-
* [
|
|
30024
|
-
* {
|
|
30025
|
-
* "type": "group",
|
|
30026
|
-
* "controls": [
|
|
30027
|
-
* {
|
|
30028
|
-
* "type": "button",
|
|
30029
|
-
* "label": {
|
|
30030
|
-
* "value": "My Custom Control 0"
|
|
30031
|
-
* },
|
|
30032
|
-
* "key": "my-custom-control-0"
|
|
30033
|
-
* },
|
|
30034
|
-
* {
|
|
30035
|
-
* "type": "button",
|
|
30036
|
-
* "label": {
|
|
30037
|
-
* "value": "My Custom Control 1"
|
|
30038
|
-
* },
|
|
30039
|
-
* "key": "my-custom-control-1"
|
|
30040
|
-
* }
|
|
30041
|
-
* ]
|
|
30042
|
-
* }
|
|
30043
|
-
* ]
|
|
30044
|
-
*
|
|
30045
|
-
*
|
|
30046
|
-
*
|
|
30047
|
-
*/
|
|
30048
|
-
export interface ControlGroup1 {
|
|
30049
|
-
controls: ButtonControl3[];
|
|
30050
|
-
type: 'group' | 'GROUP';
|
|
30051
|
-
[k: string]: unknown;
|
|
30052
|
-
}
|
|
30053
30025
|
/**
|
|
30054
30026
|
*
|
|
30055
30027
|
*
|
|
@@ -30102,6 +30074,34 @@ export interface I18NProperty86 {
|
|
|
30102
30074
|
i18n?: string;
|
|
30103
30075
|
[k: string]: unknown;
|
|
30104
30076
|
}
|
|
30077
|
+
/**
|
|
30078
|
+
*
|
|
30079
|
+
*
|
|
30080
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30081
|
+
*
|
|
30082
|
+
* <p><b>Example</b></p>
|
|
30083
|
+
*
|
|
30084
|
+
*
|
|
30085
|
+
*
|
|
30086
|
+
*
|
|
30087
|
+
*
|
|
30088
|
+
* {
|
|
30089
|
+
* "type": "button",
|
|
30090
|
+
* "label": {
|
|
30091
|
+
* "value": "My Custom Control 0"
|
|
30092
|
+
* },
|
|
30093
|
+
* "key": "my-custom-control-0"
|
|
30094
|
+
* }
|
|
30095
|
+
*
|
|
30096
|
+
*
|
|
30097
|
+
*
|
|
30098
|
+
*/
|
|
30099
|
+
export interface TextControl1 {
|
|
30100
|
+
macroParameter: string;
|
|
30101
|
+
type: 'text' | 'TEXT';
|
|
30102
|
+
key: string;
|
|
30103
|
+
[k: string]: unknown;
|
|
30104
|
+
}
|
|
30105
30105
|
/**
|
|
30106
30106
|
*
|
|
30107
30107
|
*
|
|
@@ -50951,10 +50951,47 @@ export interface I18NProperty91 {
|
|
|
50951
50951
|
*
|
|
50952
50952
|
*/
|
|
50953
50953
|
export interface WebItemTarget2 {
|
|
50954
|
-
options?:
|
|
50954
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
50955
50955
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50956
50956
|
[k: string]: unknown;
|
|
50957
50957
|
}
|
|
50958
|
+
/**
|
|
50959
|
+
*
|
|
50960
|
+
*
|
|
50961
|
+
* Options for an inline dialog target
|
|
50962
|
+
*
|
|
50963
|
+
* <h3>Example</h3>
|
|
50964
|
+
*
|
|
50965
|
+
*
|
|
50966
|
+
*
|
|
50967
|
+
*
|
|
50968
|
+
*
|
|
50969
|
+
* {
|
|
50970
|
+
* "target": {
|
|
50971
|
+
* "type": "inlinedialog",
|
|
50972
|
+
* "options": {
|
|
50973
|
+
* "onHover": true,
|
|
50974
|
+
* "offsetX": "30px",
|
|
50975
|
+
* "offsetY": "20px"
|
|
50976
|
+
* }
|
|
50977
|
+
* }
|
|
50978
|
+
* }
|
|
50979
|
+
*
|
|
50980
|
+
*
|
|
50981
|
+
*
|
|
50982
|
+
*/
|
|
50983
|
+
export interface InlineDialogOptions2 {
|
|
50984
|
+
offsetX?: string;
|
|
50985
|
+
offsetY?: string;
|
|
50986
|
+
width?: string;
|
|
50987
|
+
onTop?: boolean;
|
|
50988
|
+
showDelay?: number;
|
|
50989
|
+
closeOthers?: boolean;
|
|
50990
|
+
persistent?: boolean;
|
|
50991
|
+
onHover?: boolean;
|
|
50992
|
+
isRelativeToMouse?: boolean;
|
|
50993
|
+
[k: string]: unknown;
|
|
50994
|
+
}
|
|
50958
50995
|
/**
|
|
50959
50996
|
*
|
|
50960
50997
|
*
|
|
@@ -51080,43 +51117,6 @@ export interface DialogModuleOptions2 {
|
|
|
51080
51117
|
key: string;
|
|
51081
51118
|
[k: string]: unknown;
|
|
51082
51119
|
}
|
|
51083
|
-
/**
|
|
51084
|
-
*
|
|
51085
|
-
*
|
|
51086
|
-
* Options for an inline dialog target
|
|
51087
|
-
*
|
|
51088
|
-
* <h3>Example</h3>
|
|
51089
|
-
*
|
|
51090
|
-
*
|
|
51091
|
-
*
|
|
51092
|
-
*
|
|
51093
|
-
*
|
|
51094
|
-
* {
|
|
51095
|
-
* "target": {
|
|
51096
|
-
* "type": "inlinedialog",
|
|
51097
|
-
* "options": {
|
|
51098
|
-
* "onHover": true,
|
|
51099
|
-
* "offsetX": "30px",
|
|
51100
|
-
* "offsetY": "20px"
|
|
51101
|
-
* }
|
|
51102
|
-
* }
|
|
51103
|
-
* }
|
|
51104
|
-
*
|
|
51105
|
-
*
|
|
51106
|
-
*
|
|
51107
|
-
*/
|
|
51108
|
-
export interface InlineDialogOptions2 {
|
|
51109
|
-
offsetX?: string;
|
|
51110
|
-
offsetY?: string;
|
|
51111
|
-
width?: string;
|
|
51112
|
-
onTop?: boolean;
|
|
51113
|
-
showDelay?: number;
|
|
51114
|
-
closeOthers?: boolean;
|
|
51115
|
-
persistent?: boolean;
|
|
51116
|
-
onHover?: boolean;
|
|
51117
|
-
isRelativeToMouse?: boolean;
|
|
51118
|
-
[k: string]: unknown;
|
|
51119
|
-
}
|
|
51120
51120
|
/**
|
|
51121
51121
|
*
|
|
51122
51122
|
*
|
|
@@ -214,6 +214,7 @@
|
|
|
214
214
|
"read:user:confluence",
|
|
215
215
|
"read:user:jira",
|
|
216
216
|
"read:user.columns:jira",
|
|
217
|
+
"read:user.property:confluence",
|
|
217
218
|
"read:user.property:jira",
|
|
218
219
|
"read:watcher:confluence",
|
|
219
220
|
"read:webhook:jira",
|
|
@@ -326,6 +327,7 @@
|
|
|
326
327
|
"write:sprint:jira-software",
|
|
327
328
|
"write:template:confluence",
|
|
328
329
|
"write:user-configuration:jira",
|
|
330
|
+
"write:user.property:confluence",
|
|
329
331
|
"write:user.property:jira",
|
|
330
332
|
"write:watcher:confluence",
|
|
331
333
|
"write:webhook:jira",
|
|
@@ -28,14 +28,6 @@ export declare enum AllModuleTypes {
|
|
|
28
28
|
CompassAdminPage = "compass:adminPage",
|
|
29
29
|
CompassComponentPage = "compass:componentPage",
|
|
30
30
|
CompassGlobalPage = "compass:globalPage",
|
|
31
|
-
JiraServiceManagementQueuePage = "jiraServiceManagement:queuePage",
|
|
32
|
-
JiraServiceManagementPortalRequestDetail = "jiraServiceManagement:portalRequestDetail",
|
|
33
|
-
JiraServiceManagementPortalRequestDetailPanel = "jiraServiceManagement:portalRequestDetailPanel",
|
|
34
|
-
JiraServiceManagementOrganizationPanel = "jiraServiceManagement:organizationPanel",
|
|
35
|
-
JiraServiceManagementPortalHeader = "jiraServiceManagement:portalHeader",
|
|
36
|
-
JiraServiceManagementPortalSubheader = "jiraServiceManagement:portalSubheader",
|
|
37
|
-
JiraServiceManagementPortalFooter = "jiraServiceManagement:portalFooter",
|
|
38
|
-
JiraServiceManagementPortalProfilePanel = "jiraServiceManagement:portalProfilePanel",
|
|
39
31
|
ConnectJiraAdminPages = "connect-jira:adminPages",
|
|
40
32
|
ConnectJiraJiraBackgroundScripts = "connect-jira:jiraBackgroundScripts",
|
|
41
33
|
ConnectJiraGeneralPages = "connect-jira:generalPages",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IAExC,
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IAExC,qBAAqB,4BAA4B;IACjD,gCAAgC,uCAAuC;IACvE,uBAAuB,8BAA8B;IACrD,6BAA6B,oCAAoC;IACjE,gCAAgC,uCAAuC;IACvE,0BAA0B,iCAAiC;IAC3D,2BAA2B,kCAAkC;IAC7D,oCAAoC,2CAA2C;IAC/E,+BAA+B,sCAAsC;IACrE,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,4BAA4B,mCAAmC;IAC/D,mBAAmB,0BAA0B;IAC7C,oBAAoB,2BAA2B;IAC/C,2BAA2B,kCAAkC;IAC7D,2BAA2B,kCAAkC;IAC7D,8BAA8B,qCAAqC;IACnE,4CAA4C,mDAAmD;IAC/F,iCAAiC,wCAAwC;IACzE,mCAAmC,0CAA0C;IAC7E,8BAA8B,qCAAqC;IACnE,wBAAwB,+BAA+B;IACvD,qCAAqC,4CAA4C;IACjF,6BAA6B,oCAAoC;IACjE,kCAAkC,yCAAyC;IAC3E,gCAAgC,uCAAuC;IACvE,+BAA+B,sCAAsC;IACrE,oCAAoC,2CAA2C;IAC/E,yBAAyB,gCAAgC;IACzD,0BAA0B,iCAAiC;IAC3D,4BAA4B,mCAAmC;IAC/D,yBAAyB,gCAAgC;IACzD,wBAAwB,+BAA+B;IACvD,kBAAkB,yBAAyB;IAC3C,gCAAgC,uCAAuC;IACvE,qCAAqC,4CAA4C;IACjF,8BAA8B,qCAAqC;IACnE,+BAA+B,sCAAsC;IACrE,sCAAsC,6CAA6C;IACnF,4BAA4B,mCAAmC;IAC/D,6BAA6B,oCAAoC;IACjE,yBAAyB,gCAAgC;IACzD,2BAA2B,kCAAkC;IAC7D,iCAAiC,wCAAwC;IACzE,sBAAsB,6BAA6B;IACnD,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,iCAAiC,wCAAwC;IACzE,0BAA0B,iCAAiC;IAC3D,oBAAoB,2BAA2B;IAC/C,sBAAsB,6BAA6B;IACnD,mBAAmB,0BAA0B;IAC7C,0BAA0B,iCAAiC;CAC5D;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
|
|
@@ -32,14 +32,6 @@ var AllModuleTypes;
|
|
|
32
32
|
AllModuleTypes["CompassAdminPage"] = "compass:adminPage";
|
|
33
33
|
AllModuleTypes["CompassComponentPage"] = "compass:componentPage";
|
|
34
34
|
AllModuleTypes["CompassGlobalPage"] = "compass:globalPage";
|
|
35
|
-
AllModuleTypes["JiraServiceManagementQueuePage"] = "jiraServiceManagement:queuePage";
|
|
36
|
-
AllModuleTypes["JiraServiceManagementPortalRequestDetail"] = "jiraServiceManagement:portalRequestDetail";
|
|
37
|
-
AllModuleTypes["JiraServiceManagementPortalRequestDetailPanel"] = "jiraServiceManagement:portalRequestDetailPanel";
|
|
38
|
-
AllModuleTypes["JiraServiceManagementOrganizationPanel"] = "jiraServiceManagement:organizationPanel";
|
|
39
|
-
AllModuleTypes["JiraServiceManagementPortalHeader"] = "jiraServiceManagement:portalHeader";
|
|
40
|
-
AllModuleTypes["JiraServiceManagementPortalSubheader"] = "jiraServiceManagement:portalSubheader";
|
|
41
|
-
AllModuleTypes["JiraServiceManagementPortalFooter"] = "jiraServiceManagement:portalFooter";
|
|
42
|
-
AllModuleTypes["JiraServiceManagementPortalProfilePanel"] = "jiraServiceManagement:portalProfilePanel";
|
|
43
35
|
AllModuleTypes["ConnectJiraAdminPages"] = "connect-jira:adminPages";
|
|
44
36
|
AllModuleTypes["ConnectJiraJiraBackgroundScripts"] = "connect-jira:jiraBackgroundScripts";
|
|
45
37
|
AllModuleTypes["ConnectJiraGeneralPages"] = "connect-jira:generalPages";
|