@forge/manifest 3.3.0-next.5 → 3.3.0-next.8
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 +22 -0
- package/out/schema/manifest-schema.json +207 -207
- package/out/schema/manifest.d.ts +244 -244
- package/out/types/module-types.d.ts +1 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 3.3.0-next.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fcd95803: Add support for compass:teamPage extensions
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e65d33e6: Update manifest definitions
|
|
12
|
+
|
|
13
|
+
## 3.3.0-next.7
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 8e35955: Update manifest definitions
|
|
18
|
+
|
|
19
|
+
## 3.3.0-next.6
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- ad94136: Update manifest definitions
|
|
24
|
+
|
|
3
25
|
## 3.3.0-next.5
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
@@ -7390,10 +7390,10 @@
|
|
|
7390
7390
|
"type": "object",
|
|
7391
7391
|
"anyOf": [
|
|
7392
7392
|
{
|
|
7393
|
-
"$ref": "#/definitions/
|
|
7393
|
+
"$ref": "#/definitions/singleCondition"
|
|
7394
7394
|
},
|
|
7395
7395
|
{
|
|
7396
|
-
"$ref": "#/definitions/
|
|
7396
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7397
7397
|
}
|
|
7398
7398
|
]
|
|
7399
7399
|
},
|
|
@@ -7445,10 +7445,10 @@
|
|
|
7445
7445
|
"type": "object",
|
|
7446
7446
|
"anyOf": [
|
|
7447
7447
|
{
|
|
7448
|
-
"$ref": "#/definitions/
|
|
7448
|
+
"$ref": "#/definitions/singleCondition"
|
|
7449
7449
|
},
|
|
7450
7450
|
{
|
|
7451
|
-
"$ref": "#/definitions/
|
|
7451
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7452
7452
|
}
|
|
7453
7453
|
]
|
|
7454
7454
|
},
|
|
@@ -7567,10 +7567,10 @@
|
|
|
7567
7567
|
"type": "object",
|
|
7568
7568
|
"anyOf": [
|
|
7569
7569
|
{
|
|
7570
|
-
"$ref": "#/definitions/
|
|
7570
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7571
7571
|
},
|
|
7572
7572
|
{
|
|
7573
|
-
"$ref": "#/definitions/
|
|
7573
|
+
"$ref": "#/definitions/singleCondition"
|
|
7574
7574
|
}
|
|
7575
7575
|
]
|
|
7576
7576
|
},
|
|
@@ -7698,51 +7698,6 @@
|
|
|
7698
7698
|
"type": "object",
|
|
7699
7699
|
"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",
|
|
7700
7700
|
"anyOf": [
|
|
7701
|
-
{
|
|
7702
|
-
"properties": {
|
|
7703
|
-
"size": {
|
|
7704
|
-
"enum": [
|
|
7705
|
-
"small",
|
|
7706
|
-
"SMALL",
|
|
7707
|
-
"medium",
|
|
7708
|
-
"MEDIUM",
|
|
7709
|
-
"large",
|
|
7710
|
-
"LARGE",
|
|
7711
|
-
"x-large",
|
|
7712
|
-
"X-LARGE",
|
|
7713
|
-
"fullscreen",
|
|
7714
|
-
"FULLSCREEN",
|
|
7715
|
-
"maximum",
|
|
7716
|
-
"MAXIMUM"
|
|
7717
|
-
],
|
|
7718
|
-
"type": "string",
|
|
7719
|
-
"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"
|
|
7720
|
-
},
|
|
7721
|
-
"chrome": {
|
|
7722
|
-
"type": "boolean",
|
|
7723
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7724
|
-
"defaultValue": "true"
|
|
7725
|
-
},
|
|
7726
|
-
"width": {
|
|
7727
|
-
"maxLength": 10,
|
|
7728
|
-
"type": "string",
|
|
7729
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7730
|
-
},
|
|
7731
|
-
"header": {
|
|
7732
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7733
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7734
|
-
},
|
|
7735
|
-
"height": {
|
|
7736
|
-
"maxLength": 10,
|
|
7737
|
-
"type": "string",
|
|
7738
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7739
|
-
}
|
|
7740
|
-
},
|
|
7741
|
-
"shortClassName": "dialogOptions",
|
|
7742
|
-
"type": "object",
|
|
7743
|
-
"title": "Dialog Options",
|
|
7744
|
-
"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"
|
|
7745
|
-
},
|
|
7746
7701
|
{
|
|
7747
7702
|
"properties": {
|
|
7748
7703
|
"key": {
|
|
@@ -7805,6 +7760,51 @@
|
|
|
7805
7760
|
"type": "object",
|
|
7806
7761
|
"title": "Inline Dialog Options",
|
|
7807
7762
|
"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"
|
|
7763
|
+
},
|
|
7764
|
+
{
|
|
7765
|
+
"properties": {
|
|
7766
|
+
"size": {
|
|
7767
|
+
"enum": [
|
|
7768
|
+
"small",
|
|
7769
|
+
"SMALL",
|
|
7770
|
+
"medium",
|
|
7771
|
+
"MEDIUM",
|
|
7772
|
+
"large",
|
|
7773
|
+
"LARGE",
|
|
7774
|
+
"x-large",
|
|
7775
|
+
"X-LARGE",
|
|
7776
|
+
"fullscreen",
|
|
7777
|
+
"FULLSCREEN",
|
|
7778
|
+
"maximum",
|
|
7779
|
+
"MAXIMUM"
|
|
7780
|
+
],
|
|
7781
|
+
"type": "string",
|
|
7782
|
+
"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"
|
|
7783
|
+
},
|
|
7784
|
+
"chrome": {
|
|
7785
|
+
"type": "boolean",
|
|
7786
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7787
|
+
"defaultValue": "true"
|
|
7788
|
+
},
|
|
7789
|
+
"width": {
|
|
7790
|
+
"maxLength": 10,
|
|
7791
|
+
"type": "string",
|
|
7792
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7793
|
+
},
|
|
7794
|
+
"header": {
|
|
7795
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7796
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7797
|
+
},
|
|
7798
|
+
"height": {
|
|
7799
|
+
"maxLength": 10,
|
|
7800
|
+
"type": "string",
|
|
7801
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7802
|
+
}
|
|
7803
|
+
},
|
|
7804
|
+
"shortClassName": "dialogOptions",
|
|
7805
|
+
"type": "object",
|
|
7806
|
+
"title": "Dialog Options",
|
|
7807
|
+
"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"
|
|
7808
7808
|
}
|
|
7809
7809
|
]
|
|
7810
7810
|
},
|
|
@@ -7895,10 +7895,10 @@
|
|
|
7895
7895
|
"type": "object",
|
|
7896
7896
|
"anyOf": [
|
|
7897
7897
|
{
|
|
7898
|
-
"$ref": "
|
|
7898
|
+
"$ref": "#/definitions/singleCondition"
|
|
7899
7899
|
},
|
|
7900
7900
|
{
|
|
7901
|
-
"$ref": "
|
|
7901
|
+
"$ref": "#"
|
|
7902
7902
|
}
|
|
7903
7903
|
]
|
|
7904
7904
|
},
|
|
@@ -8488,38 +8488,6 @@
|
|
|
8488
8488
|
"title": "TextControl",
|
|
8489
8489
|
"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"
|
|
8490
8490
|
},
|
|
8491
|
-
{
|
|
8492
|
-
"properties": {
|
|
8493
|
-
"label": {
|
|
8494
|
-
"$ref": "#/definitions/i18nProperty",
|
|
8495
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
8496
|
-
},
|
|
8497
|
-
"type": {
|
|
8498
|
-
"enum": [
|
|
8499
|
-
"button",
|
|
8500
|
-
"BUTTON"
|
|
8501
|
-
],
|
|
8502
|
-
"type": "string",
|
|
8503
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
8504
|
-
},
|
|
8505
|
-
"key": {
|
|
8506
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8507
|
-
"maxLength": 100,
|
|
8508
|
-
"type": "string",
|
|
8509
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8510
|
-
}
|
|
8511
|
-
},
|
|
8512
|
-
"required": [
|
|
8513
|
-
"label",
|
|
8514
|
-
"type",
|
|
8515
|
-
"key"
|
|
8516
|
-
],
|
|
8517
|
-
"additionalProperties": true,
|
|
8518
|
-
"shortClassName": "buttonControlBean",
|
|
8519
|
-
"type": "object",
|
|
8520
|
-
"title": "ButtonControl",
|
|
8521
|
-
"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"
|
|
8522
|
-
},
|
|
8523
8491
|
{
|
|
8524
8492
|
"properties": {
|
|
8525
8493
|
"controls": {
|
|
@@ -8644,6 +8612,38 @@
|
|
|
8644
8612
|
"type": "object",
|
|
8645
8613
|
"title": "ControlGroup",
|
|
8646
8614
|
"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"
|
|
8615
|
+
},
|
|
8616
|
+
{
|
|
8617
|
+
"properties": {
|
|
8618
|
+
"label": {
|
|
8619
|
+
"$ref": "#/definitions/i18nProperty",
|
|
8620
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
8621
|
+
},
|
|
8622
|
+
"type": {
|
|
8623
|
+
"enum": [
|
|
8624
|
+
"button",
|
|
8625
|
+
"BUTTON"
|
|
8626
|
+
],
|
|
8627
|
+
"type": "string",
|
|
8628
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
8629
|
+
},
|
|
8630
|
+
"key": {
|
|
8631
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8632
|
+
"maxLength": 100,
|
|
8633
|
+
"type": "string",
|
|
8634
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8635
|
+
}
|
|
8636
|
+
},
|
|
8637
|
+
"required": [
|
|
8638
|
+
"label",
|
|
8639
|
+
"type",
|
|
8640
|
+
"key"
|
|
8641
|
+
],
|
|
8642
|
+
"additionalProperties": true,
|
|
8643
|
+
"shortClassName": "buttonControlBean",
|
|
8644
|
+
"type": "object",
|
|
8645
|
+
"title": "ButtonControl",
|
|
8646
|
+
"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"
|
|
8647
8647
|
}
|
|
8648
8648
|
]
|
|
8649
8649
|
},
|
|
@@ -8938,62 +8938,6 @@
|
|
|
8938
8938
|
"items": {
|
|
8939
8939
|
"type": "object",
|
|
8940
8940
|
"anyOf": [
|
|
8941
|
-
{
|
|
8942
|
-
"properties": {
|
|
8943
|
-
"controls": {
|
|
8944
|
-
"items": {
|
|
8945
|
-
"properties": {
|
|
8946
|
-
"label": {
|
|
8947
|
-
"$ref": "#/definitions/i18nProperty",
|
|
8948
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
8949
|
-
},
|
|
8950
|
-
"type": {
|
|
8951
|
-
"enum": [
|
|
8952
|
-
"button",
|
|
8953
|
-
"BUTTON"
|
|
8954
|
-
],
|
|
8955
|
-
"type": "string",
|
|
8956
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
8957
|
-
},
|
|
8958
|
-
"key": {
|
|
8959
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8960
|
-
"maxLength": 100,
|
|
8961
|
-
"type": "string",
|
|
8962
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8963
|
-
}
|
|
8964
|
-
},
|
|
8965
|
-
"required": [
|
|
8966
|
-
"label",
|
|
8967
|
-
"type",
|
|
8968
|
-
"key"
|
|
8969
|
-
],
|
|
8970
|
-
"additionalProperties": true,
|
|
8971
|
-
"shortClassName": "buttonControlBean",
|
|
8972
|
-
"type": "object",
|
|
8973
|
-
"title": "ButtonControl",
|
|
8974
|
-
"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"
|
|
8975
|
-
},
|
|
8976
|
-
"type": "array",
|
|
8977
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
8978
|
-
},
|
|
8979
|
-
"type": {
|
|
8980
|
-
"enum": [
|
|
8981
|
-
"group",
|
|
8982
|
-
"GROUP"
|
|
8983
|
-
],
|
|
8984
|
-
"type": "string",
|
|
8985
|
-
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
8986
|
-
}
|
|
8987
|
-
},
|
|
8988
|
-
"required": [
|
|
8989
|
-
"controls",
|
|
8990
|
-
"type"
|
|
8991
|
-
],
|
|
8992
|
-
"shortClassName": "controlGroupBean",
|
|
8993
|
-
"type": "object",
|
|
8994
|
-
"title": "ControlGroup",
|
|
8995
|
-
"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"
|
|
8996
|
-
},
|
|
8997
8941
|
{
|
|
8998
8942
|
"properties": {
|
|
8999
8943
|
"controls": {
|
|
@@ -9063,6 +9007,38 @@
|
|
|
9063
9007
|
"title": "ToggleGroup",
|
|
9064
9008
|
"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"
|
|
9065
9009
|
},
|
|
9010
|
+
{
|
|
9011
|
+
"properties": {
|
|
9012
|
+
"macroParameter": {
|
|
9013
|
+
"maxLength": 100,
|
|
9014
|
+
"type": "string",
|
|
9015
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
9016
|
+
},
|
|
9017
|
+
"type": {
|
|
9018
|
+
"enum": [
|
|
9019
|
+
"text",
|
|
9020
|
+
"TEXT"
|
|
9021
|
+
],
|
|
9022
|
+
"type": "string",
|
|
9023
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
9024
|
+
},
|
|
9025
|
+
"key": {
|
|
9026
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9027
|
+
"maxLength": 100,
|
|
9028
|
+
"type": "string",
|
|
9029
|
+
"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"
|
|
9030
|
+
}
|
|
9031
|
+
},
|
|
9032
|
+
"required": [
|
|
9033
|
+
"macroParameter",
|
|
9034
|
+
"type",
|
|
9035
|
+
"key"
|
|
9036
|
+
],
|
|
9037
|
+
"shortClassName": "textControlBean",
|
|
9038
|
+
"type": "object",
|
|
9039
|
+
"title": "TextControl",
|
|
9040
|
+
"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"
|
|
9041
|
+
},
|
|
9066
9042
|
{
|
|
9067
9043
|
"properties": {
|
|
9068
9044
|
"label": {
|
|
@@ -9097,35 +9073,59 @@
|
|
|
9097
9073
|
},
|
|
9098
9074
|
{
|
|
9099
9075
|
"properties": {
|
|
9100
|
-
"
|
|
9101
|
-
"
|
|
9102
|
-
|
|
9103
|
-
|
|
9076
|
+
"controls": {
|
|
9077
|
+
"items": {
|
|
9078
|
+
"properties": {
|
|
9079
|
+
"label": {
|
|
9080
|
+
"$ref": "#/definitions/i18nProperty",
|
|
9081
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9082
|
+
},
|
|
9083
|
+
"type": {
|
|
9084
|
+
"enum": [
|
|
9085
|
+
"button",
|
|
9086
|
+
"BUTTON"
|
|
9087
|
+
],
|
|
9088
|
+
"type": "string",
|
|
9089
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
9090
|
+
},
|
|
9091
|
+
"key": {
|
|
9092
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9093
|
+
"maxLength": 100,
|
|
9094
|
+
"type": "string",
|
|
9095
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
9096
|
+
}
|
|
9097
|
+
},
|
|
9098
|
+
"required": [
|
|
9099
|
+
"label",
|
|
9100
|
+
"type",
|
|
9101
|
+
"key"
|
|
9102
|
+
],
|
|
9103
|
+
"additionalProperties": true,
|
|
9104
|
+
"shortClassName": "buttonControlBean",
|
|
9105
|
+
"type": "object",
|
|
9106
|
+
"title": "ButtonControl",
|
|
9107
|
+
"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"
|
|
9108
|
+
},
|
|
9109
|
+
"type": "array",
|
|
9110
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
9104
9111
|
},
|
|
9105
9112
|
"type": {
|
|
9106
9113
|
"enum": [
|
|
9107
|
-
"
|
|
9108
|
-
"
|
|
9114
|
+
"group",
|
|
9115
|
+
"GROUP"
|
|
9109
9116
|
],
|
|
9110
9117
|
"type": "string",
|
|
9111
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9112
|
-
},
|
|
9113
|
-
"key": {
|
|
9114
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9115
|
-
"maxLength": 100,
|
|
9116
|
-
"type": "string",
|
|
9117
|
-
"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"
|
|
9118
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
9118
9119
|
}
|
|
9119
9120
|
},
|
|
9120
9121
|
"required": [
|
|
9121
|
-
"
|
|
9122
|
-
"type"
|
|
9123
|
-
"key"
|
|
9122
|
+
"controls",
|
|
9123
|
+
"type"
|
|
9124
9124
|
],
|
|
9125
|
-
"shortClassName": "
|
|
9125
|
+
"shortClassName": "controlGroupBean",
|
|
9126
9126
|
"type": "object",
|
|
9127
|
-
"title": "
|
|
9128
|
-
"description": "\n\nDefines a
|
|
9127
|
+
"title": "ControlGroup",
|
|
9128
|
+
"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"
|
|
9129
9129
|
}
|
|
9130
9130
|
]
|
|
9131
9131
|
},
|
|
@@ -9361,6 +9361,53 @@
|
|
|
9361
9361
|
"type": "object",
|
|
9362
9362
|
"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",
|
|
9363
9363
|
"anyOf": [
|
|
9364
|
+
{
|
|
9365
|
+
"properties": {
|
|
9366
|
+
"offsetX": {
|
|
9367
|
+
"maxLength": 10,
|
|
9368
|
+
"type": "string",
|
|
9369
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
9370
|
+
},
|
|
9371
|
+
"offsetY": {
|
|
9372
|
+
"maxLength": 10,
|
|
9373
|
+
"type": "string",
|
|
9374
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
9375
|
+
},
|
|
9376
|
+
"width": {
|
|
9377
|
+
"maxLength": 10,
|
|
9378
|
+
"type": "string",
|
|
9379
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
9380
|
+
},
|
|
9381
|
+
"onTop": {
|
|
9382
|
+
"type": "boolean",
|
|
9383
|
+
"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"
|
|
9384
|
+
},
|
|
9385
|
+
"showDelay": {
|
|
9386
|
+
"type": "integer",
|
|
9387
|
+
"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"
|
|
9388
|
+
},
|
|
9389
|
+
"closeOthers": {
|
|
9390
|
+
"type": "boolean",
|
|
9391
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
9392
|
+
},
|
|
9393
|
+
"persistent": {
|
|
9394
|
+
"type": "boolean",
|
|
9395
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
9396
|
+
},
|
|
9397
|
+
"onHover": {
|
|
9398
|
+
"type": "boolean",
|
|
9399
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
9400
|
+
},
|
|
9401
|
+
"isRelativeToMouse": {
|
|
9402
|
+
"type": "boolean",
|
|
9403
|
+
"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"
|
|
9404
|
+
}
|
|
9405
|
+
},
|
|
9406
|
+
"shortClassName": "inlineDialogOptions",
|
|
9407
|
+
"type": "object",
|
|
9408
|
+
"title": "Inline Dialog Options",
|
|
9409
|
+
"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"
|
|
9410
|
+
},
|
|
9364
9411
|
{
|
|
9365
9412
|
"properties": {
|
|
9366
9413
|
"size": {
|
|
@@ -9421,53 +9468,6 @@
|
|
|
9421
9468
|
"type": "object",
|
|
9422
9469
|
"title": "Dialog Module Options",
|
|
9423
9470
|
"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"
|
|
9424
|
-
},
|
|
9425
|
-
{
|
|
9426
|
-
"properties": {
|
|
9427
|
-
"offsetX": {
|
|
9428
|
-
"maxLength": 10,
|
|
9429
|
-
"type": "string",
|
|
9430
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
9431
|
-
},
|
|
9432
|
-
"offsetY": {
|
|
9433
|
-
"maxLength": 10,
|
|
9434
|
-
"type": "string",
|
|
9435
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
9436
|
-
},
|
|
9437
|
-
"width": {
|
|
9438
|
-
"maxLength": 10,
|
|
9439
|
-
"type": "string",
|
|
9440
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
9441
|
-
},
|
|
9442
|
-
"onTop": {
|
|
9443
|
-
"type": "boolean",
|
|
9444
|
-
"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"
|
|
9445
|
-
},
|
|
9446
|
-
"showDelay": {
|
|
9447
|
-
"type": "integer",
|
|
9448
|
-
"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"
|
|
9449
|
-
},
|
|
9450
|
-
"closeOthers": {
|
|
9451
|
-
"type": "boolean",
|
|
9452
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
9453
|
-
},
|
|
9454
|
-
"persistent": {
|
|
9455
|
-
"type": "boolean",
|
|
9456
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
9457
|
-
},
|
|
9458
|
-
"onHover": {
|
|
9459
|
-
"type": "boolean",
|
|
9460
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
9461
|
-
},
|
|
9462
|
-
"isRelativeToMouse": {
|
|
9463
|
-
"type": "boolean",
|
|
9464
|
-
"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"
|
|
9465
|
-
}
|
|
9466
|
-
},
|
|
9467
|
-
"shortClassName": "inlineDialogOptions",
|
|
9468
|
-
"type": "object",
|
|
9469
|
-
"title": "Inline Dialog Options",
|
|
9470
|
-
"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"
|
|
9471
9471
|
}
|
|
9472
9472
|
]
|
|
9473
9473
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3640,7 +3640,7 @@ export interface Modules {
|
|
|
3640
3640
|
location?: string;
|
|
3641
3641
|
cacheable?: boolean;
|
|
3642
3642
|
supportsNative?: boolean;
|
|
3643
|
-
conditions?: (
|
|
3643
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3644
3644
|
params?: {
|
|
3645
3645
|
[k: string]: unknown;
|
|
3646
3646
|
};
|
|
@@ -3656,7 +3656,7 @@ export interface Modules {
|
|
|
3656
3656
|
location?: string;
|
|
3657
3657
|
cacheable?: boolean;
|
|
3658
3658
|
supportsNative?: boolean;
|
|
3659
|
-
conditions?: (
|
|
3659
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3660
3660
|
params?: {
|
|
3661
3661
|
[k: string]: unknown;
|
|
3662
3662
|
};
|
|
@@ -3670,7 +3670,7 @@ export interface Modules {
|
|
|
3670
3670
|
filter?: string;
|
|
3671
3671
|
excludeBody?: boolean;
|
|
3672
3672
|
event?: string;
|
|
3673
|
-
conditions?: (
|
|
3673
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3674
3674
|
propertyKeys?: string[];
|
|
3675
3675
|
url?: string;
|
|
3676
3676
|
key: ModuleKeySchema;
|
|
@@ -3680,7 +3680,7 @@ export interface Modules {
|
|
|
3680
3680
|
filter?: string;
|
|
3681
3681
|
excludeBody?: boolean;
|
|
3682
3682
|
event?: string;
|
|
3683
|
-
conditions?: (
|
|
3683
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3684
3684
|
propertyKeys?: string[];
|
|
3685
3685
|
url?: string;
|
|
3686
3686
|
key: ModuleKeySchema;
|
|
@@ -3723,7 +3723,7 @@ export interface Modules {
|
|
|
3723
3723
|
name?: I18NProperty55;
|
|
3724
3724
|
weight?: number;
|
|
3725
3725
|
location?: string;
|
|
3726
|
-
conditions?: (
|
|
3726
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3727
3727
|
params?: {
|
|
3728
3728
|
[k: string]: unknown;
|
|
3729
3729
|
};
|
|
@@ -3735,7 +3735,7 @@ export interface Modules {
|
|
|
3735
3735
|
name?: I18NProperty55;
|
|
3736
3736
|
weight?: number;
|
|
3737
3737
|
location?: string;
|
|
3738
|
-
conditions?: (
|
|
3738
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3739
3739
|
params?: {
|
|
3740
3740
|
[k: string]: unknown;
|
|
3741
3741
|
};
|
|
@@ -7035,10 +7035,74 @@ export interface Icon10 {
|
|
|
7035
7035
|
*
|
|
7036
7036
|
*/
|
|
7037
7037
|
export interface WebItemTarget1 {
|
|
7038
|
-
options?:
|
|
7038
|
+
options?: DialogModuleOptions1 | InlineDialogOptions1 | DialogOptions2;
|
|
7039
7039
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7040
7040
|
[k: string]: unknown;
|
|
7041
7041
|
}
|
|
7042
|
+
/**
|
|
7043
|
+
*
|
|
7044
|
+
*
|
|
7045
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7046
|
+
*
|
|
7047
|
+
* <h3>Example</h3>
|
|
7048
|
+
*
|
|
7049
|
+
*
|
|
7050
|
+
*
|
|
7051
|
+
*
|
|
7052
|
+
*
|
|
7053
|
+
* {
|
|
7054
|
+
* "target": {
|
|
7055
|
+
* "type": "dialogmodule",
|
|
7056
|
+
* "options": {
|
|
7057
|
+
* "key": "dialog-module-key"
|
|
7058
|
+
* }
|
|
7059
|
+
* }
|
|
7060
|
+
* }
|
|
7061
|
+
*
|
|
7062
|
+
*
|
|
7063
|
+
*
|
|
7064
|
+
*/
|
|
7065
|
+
export interface DialogModuleOptions1 {
|
|
7066
|
+
key: string;
|
|
7067
|
+
[k: string]: unknown;
|
|
7068
|
+
}
|
|
7069
|
+
/**
|
|
7070
|
+
*
|
|
7071
|
+
*
|
|
7072
|
+
* Options for an inline dialog target
|
|
7073
|
+
*
|
|
7074
|
+
* <h3>Example</h3>
|
|
7075
|
+
*
|
|
7076
|
+
*
|
|
7077
|
+
*
|
|
7078
|
+
*
|
|
7079
|
+
*
|
|
7080
|
+
* {
|
|
7081
|
+
* "target": {
|
|
7082
|
+
* "type": "inlinedialog",
|
|
7083
|
+
* "options": {
|
|
7084
|
+
* "onHover": true,
|
|
7085
|
+
* "offsetX": "30px",
|
|
7086
|
+
* "offsetY": "20px"
|
|
7087
|
+
* }
|
|
7088
|
+
* }
|
|
7089
|
+
* }
|
|
7090
|
+
*
|
|
7091
|
+
*
|
|
7092
|
+
*
|
|
7093
|
+
*/
|
|
7094
|
+
export interface InlineDialogOptions1 {
|
|
7095
|
+
offsetX?: string;
|
|
7096
|
+
offsetY?: string;
|
|
7097
|
+
width?: string;
|
|
7098
|
+
onTop?: boolean;
|
|
7099
|
+
showDelay?: number;
|
|
7100
|
+
closeOthers?: boolean;
|
|
7101
|
+
persistent?: boolean;
|
|
7102
|
+
onHover?: boolean;
|
|
7103
|
+
isRelativeToMouse?: boolean;
|
|
7104
|
+
[k: string]: unknown;
|
|
7105
|
+
}
|
|
7042
7106
|
/**
|
|
7043
7107
|
*
|
|
7044
7108
|
*
|
|
@@ -7137,70 +7201,6 @@ export interface I18NProperty58 {
|
|
|
7137
7201
|
i18n?: string;
|
|
7138
7202
|
[k: string]: unknown;
|
|
7139
7203
|
}
|
|
7140
|
-
/**
|
|
7141
|
-
*
|
|
7142
|
-
*
|
|
7143
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7144
|
-
*
|
|
7145
|
-
* <h3>Example</h3>
|
|
7146
|
-
*
|
|
7147
|
-
*
|
|
7148
|
-
*
|
|
7149
|
-
*
|
|
7150
|
-
*
|
|
7151
|
-
* {
|
|
7152
|
-
* "target": {
|
|
7153
|
-
* "type": "dialogmodule",
|
|
7154
|
-
* "options": {
|
|
7155
|
-
* "key": "dialog-module-key"
|
|
7156
|
-
* }
|
|
7157
|
-
* }
|
|
7158
|
-
* }
|
|
7159
|
-
*
|
|
7160
|
-
*
|
|
7161
|
-
*
|
|
7162
|
-
*/
|
|
7163
|
-
export interface DialogModuleOptions1 {
|
|
7164
|
-
key: string;
|
|
7165
|
-
[k: string]: unknown;
|
|
7166
|
-
}
|
|
7167
|
-
/**
|
|
7168
|
-
*
|
|
7169
|
-
*
|
|
7170
|
-
* Options for an inline dialog target
|
|
7171
|
-
*
|
|
7172
|
-
* <h3>Example</h3>
|
|
7173
|
-
*
|
|
7174
|
-
*
|
|
7175
|
-
*
|
|
7176
|
-
*
|
|
7177
|
-
*
|
|
7178
|
-
* {
|
|
7179
|
-
* "target": {
|
|
7180
|
-
* "type": "inlinedialog",
|
|
7181
|
-
* "options": {
|
|
7182
|
-
* "onHover": true,
|
|
7183
|
-
* "offsetX": "30px",
|
|
7184
|
-
* "offsetY": "20px"
|
|
7185
|
-
* }
|
|
7186
|
-
* }
|
|
7187
|
-
* }
|
|
7188
|
-
*
|
|
7189
|
-
*
|
|
7190
|
-
*
|
|
7191
|
-
*/
|
|
7192
|
-
export interface InlineDialogOptions1 {
|
|
7193
|
-
offsetX?: string;
|
|
7194
|
-
offsetY?: string;
|
|
7195
|
-
width?: string;
|
|
7196
|
-
onTop?: boolean;
|
|
7197
|
-
showDelay?: number;
|
|
7198
|
-
closeOthers?: boolean;
|
|
7199
|
-
persistent?: boolean;
|
|
7200
|
-
onHover?: boolean;
|
|
7201
|
-
isRelativeToMouse?: boolean;
|
|
7202
|
-
[k: string]: unknown;
|
|
7203
|
-
}
|
|
7204
7204
|
/**
|
|
7205
7205
|
*
|
|
7206
7206
|
*
|
|
@@ -7293,7 +7293,7 @@ export interface SingleCondition4 {
|
|
|
7293
7293
|
*
|
|
7294
7294
|
*/
|
|
7295
7295
|
export interface CompositeCondition6 {
|
|
7296
|
-
conditions?: (
|
|
7296
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7297
7297
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7298
7298
|
[k: string]: unknown;
|
|
7299
7299
|
}
|
|
@@ -9142,7 +9142,7 @@ export interface I18NProperty74 {
|
|
|
9142
9142
|
*
|
|
9143
9143
|
*/
|
|
9144
9144
|
export interface MacroPropertyPanel {
|
|
9145
|
-
controls?: (TextControl |
|
|
9145
|
+
controls?: (TextControl | ToggleGroup | ControlGroup | ButtonControl1)[];
|
|
9146
9146
|
cacheable?: boolean;
|
|
9147
9147
|
url: string;
|
|
9148
9148
|
[k: string]: unknown;
|
|
@@ -9175,58 +9175,6 @@ export interface TextControl {
|
|
|
9175
9175
|
key: string;
|
|
9176
9176
|
[k: string]: unknown;
|
|
9177
9177
|
}
|
|
9178
|
-
/**
|
|
9179
|
-
*
|
|
9180
|
-
*
|
|
9181
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
9182
|
-
*
|
|
9183
|
-
* <p><b>Example</b></p>
|
|
9184
|
-
*
|
|
9185
|
-
*
|
|
9186
|
-
*
|
|
9187
|
-
*
|
|
9188
|
-
*
|
|
9189
|
-
* {
|
|
9190
|
-
* "type": "button",
|
|
9191
|
-
* "label": {
|
|
9192
|
-
* "value": "My Custom Control 0"
|
|
9193
|
-
* },
|
|
9194
|
-
* "key": "my-custom-control-0"
|
|
9195
|
-
* }
|
|
9196
|
-
*
|
|
9197
|
-
*
|
|
9198
|
-
*
|
|
9199
|
-
*/
|
|
9200
|
-
export interface ButtonControl {
|
|
9201
|
-
label: I18NProperty75;
|
|
9202
|
-
type: 'button' | 'BUTTON';
|
|
9203
|
-
key: string;
|
|
9204
|
-
[k: string]: unknown;
|
|
9205
|
-
}
|
|
9206
|
-
/**
|
|
9207
|
-
*
|
|
9208
|
-
*
|
|
9209
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9210
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9211
|
-
*
|
|
9212
|
-
* <h3>Example</h3>
|
|
9213
|
-
*
|
|
9214
|
-
*
|
|
9215
|
-
*
|
|
9216
|
-
*
|
|
9217
|
-
*
|
|
9218
|
-
* {
|
|
9219
|
-
* "value": "My text"
|
|
9220
|
-
* }
|
|
9221
|
-
*
|
|
9222
|
-
*
|
|
9223
|
-
*
|
|
9224
|
-
*/
|
|
9225
|
-
export interface I18NProperty75 {
|
|
9226
|
-
value: string;
|
|
9227
|
-
i18n?: string;
|
|
9228
|
-
[k: string]: unknown;
|
|
9229
|
-
}
|
|
9230
9178
|
/**
|
|
9231
9179
|
*
|
|
9232
9180
|
*
|
|
@@ -9297,7 +9245,7 @@ export interface ToggleGroup {
|
|
|
9297
9245
|
*/
|
|
9298
9246
|
export interface ToggleButtonControl {
|
|
9299
9247
|
macroParameterValue: string;
|
|
9300
|
-
label:
|
|
9248
|
+
label: I18NProperty75;
|
|
9301
9249
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
9302
9250
|
key: string;
|
|
9303
9251
|
[k: string]: unknown;
|
|
@@ -9321,7 +9269,7 @@ export interface ToggleButtonControl {
|
|
|
9321
9269
|
*
|
|
9322
9270
|
*
|
|
9323
9271
|
*/
|
|
9324
|
-
export interface
|
|
9272
|
+
export interface I18NProperty75 {
|
|
9325
9273
|
value: string;
|
|
9326
9274
|
i18n?: string;
|
|
9327
9275
|
[k: string]: unknown;
|
|
@@ -9363,10 +9311,62 @@ export interface I18NProperty76 {
|
|
|
9363
9311
|
*
|
|
9364
9312
|
*/
|
|
9365
9313
|
export interface ControlGroup {
|
|
9366
|
-
controls:
|
|
9314
|
+
controls: ButtonControl[];
|
|
9367
9315
|
type: 'group' | 'GROUP';
|
|
9368
9316
|
[k: string]: unknown;
|
|
9369
9317
|
}
|
|
9318
|
+
/**
|
|
9319
|
+
*
|
|
9320
|
+
*
|
|
9321
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
9322
|
+
*
|
|
9323
|
+
* <p><b>Example</b></p>
|
|
9324
|
+
*
|
|
9325
|
+
*
|
|
9326
|
+
*
|
|
9327
|
+
*
|
|
9328
|
+
*
|
|
9329
|
+
* {
|
|
9330
|
+
* "type": "button",
|
|
9331
|
+
* "label": {
|
|
9332
|
+
* "value": "My Custom Control 0"
|
|
9333
|
+
* },
|
|
9334
|
+
* "key": "my-custom-control-0"
|
|
9335
|
+
* }
|
|
9336
|
+
*
|
|
9337
|
+
*
|
|
9338
|
+
*
|
|
9339
|
+
*/
|
|
9340
|
+
export interface ButtonControl {
|
|
9341
|
+
label: I18NProperty76;
|
|
9342
|
+
type: 'button' | 'BUTTON';
|
|
9343
|
+
key: string;
|
|
9344
|
+
[k: string]: unknown;
|
|
9345
|
+
}
|
|
9346
|
+
/**
|
|
9347
|
+
*
|
|
9348
|
+
*
|
|
9349
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9350
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9351
|
+
*
|
|
9352
|
+
* <h3>Example</h3>
|
|
9353
|
+
*
|
|
9354
|
+
*
|
|
9355
|
+
*
|
|
9356
|
+
*
|
|
9357
|
+
*
|
|
9358
|
+
* {
|
|
9359
|
+
* "value": "My text"
|
|
9360
|
+
* }
|
|
9361
|
+
*
|
|
9362
|
+
*
|
|
9363
|
+
*
|
|
9364
|
+
*/
|
|
9365
|
+
export interface I18NProperty76 {
|
|
9366
|
+
value: string;
|
|
9367
|
+
i18n?: string;
|
|
9368
|
+
[k: string]: unknown;
|
|
9369
|
+
}
|
|
9370
9370
|
/**
|
|
9371
9371
|
*
|
|
9372
9372
|
*
|
|
@@ -30387,7 +30387,7 @@ export interface I18NProperty83 {
|
|
|
30387
30387
|
*
|
|
30388
30388
|
*/
|
|
30389
30389
|
export interface MacroPropertyPanel1 {
|
|
30390
|
-
controls?: (
|
|
30390
|
+
controls?: (ToggleGroup1 | TextControl1 | ButtonControl2 | ControlGroup1)[];
|
|
30391
30391
|
cacheable?: boolean;
|
|
30392
30392
|
url: string;
|
|
30393
30393
|
[k: string]: unknown;
|
|
@@ -30395,7 +30395,7 @@ export interface MacroPropertyPanel1 {
|
|
|
30395
30395
|
/**
|
|
30396
30396
|
*
|
|
30397
30397
|
*
|
|
30398
|
-
* Defines a
|
|
30398
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30399
30399
|
*
|
|
30400
30400
|
* <p><b>Example</b></p>
|
|
30401
30401
|
*
|
|
@@ -30405,21 +30405,24 @@ export interface MacroPropertyPanel1 {
|
|
|
30405
30405
|
*
|
|
30406
30406
|
* [
|
|
30407
30407
|
* {
|
|
30408
|
-
* "type": "
|
|
30408
|
+
* "type": "togglegroup",
|
|
30409
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30409
30410
|
* "controls": [
|
|
30410
30411
|
* {
|
|
30411
|
-
* "type": "
|
|
30412
|
+
* "type": "togglebutton",
|
|
30413
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30412
30414
|
* "label": {
|
|
30413
30415
|
* "value": "My Custom Control 0"
|
|
30414
30416
|
* },
|
|
30415
|
-
* "key": "my-custom-
|
|
30417
|
+
* "key": "my-custom-toggle-button-0"
|
|
30416
30418
|
* },
|
|
30417
30419
|
* {
|
|
30418
|
-
* "type": "
|
|
30420
|
+
* "type": "togglebutton",
|
|
30421
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30419
30422
|
* "label": {
|
|
30420
30423
|
* "value": "My Custom Control 1"
|
|
30421
30424
|
* },
|
|
30422
|
-
* "key": "my-custom-
|
|
30425
|
+
* "key": "my-custom-toggle-button-1"
|
|
30423
30426
|
* }
|
|
30424
30427
|
* ]
|
|
30425
30428
|
* }
|
|
@@ -30428,15 +30431,16 @@ export interface MacroPropertyPanel1 {
|
|
|
30428
30431
|
*
|
|
30429
30432
|
*
|
|
30430
30433
|
*/
|
|
30431
|
-
export interface
|
|
30432
|
-
controls:
|
|
30433
|
-
|
|
30434
|
+
export interface ToggleGroup1 {
|
|
30435
|
+
controls: ToggleButtonControl1[];
|
|
30436
|
+
macroParameter: string;
|
|
30437
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30434
30438
|
[k: string]: unknown;
|
|
30435
30439
|
}
|
|
30436
30440
|
/**
|
|
30437
30441
|
*
|
|
30438
30442
|
*
|
|
30439
|
-
* Defines a button which
|
|
30443
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30440
30444
|
*
|
|
30441
30445
|
* <p><b>Example</b></p>
|
|
30442
30446
|
*
|
|
@@ -30445,19 +30449,21 @@ export interface ControlGroup1 {
|
|
|
30445
30449
|
*
|
|
30446
30450
|
*
|
|
30447
30451
|
* {
|
|
30448
|
-
* "type": "
|
|
30452
|
+
* "type": "togglebutton",
|
|
30453
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30449
30454
|
* "label": {
|
|
30450
30455
|
* "value": "My Custom Control 0"
|
|
30451
30456
|
* },
|
|
30452
|
-
* "key": "my-custom-
|
|
30457
|
+
* "key": "my-custom-toggle-button-0"
|
|
30453
30458
|
* }
|
|
30454
30459
|
*
|
|
30455
30460
|
*
|
|
30456
30461
|
*
|
|
30457
30462
|
*/
|
|
30458
|
-
export interface
|
|
30463
|
+
export interface ToggleButtonControl1 {
|
|
30464
|
+
macroParameterValue: string;
|
|
30459
30465
|
label: I18NProperty84;
|
|
30460
|
-
type: '
|
|
30466
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30461
30467
|
key: string;
|
|
30462
30468
|
[k: string]: unknown;
|
|
30463
30469
|
}
|
|
@@ -30488,7 +30494,7 @@ export interface I18NProperty84 {
|
|
|
30488
30494
|
/**
|
|
30489
30495
|
*
|
|
30490
30496
|
*
|
|
30491
|
-
* Defines a
|
|
30497
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30492
30498
|
*
|
|
30493
30499
|
* <p><b>Example</b></p>
|
|
30494
30500
|
*
|
|
@@ -30496,44 +30502,27 @@ export interface I18NProperty84 {
|
|
|
30496
30502
|
*
|
|
30497
30503
|
*
|
|
30498
30504
|
*
|
|
30499
|
-
*
|
|
30500
|
-
*
|
|
30501
|
-
*
|
|
30502
|
-
* "
|
|
30503
|
-
*
|
|
30504
|
-
*
|
|
30505
|
-
*
|
|
30506
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30507
|
-
* "label": {
|
|
30508
|
-
* "value": "My Custom Control 0"
|
|
30509
|
-
* },
|
|
30510
|
-
* "key": "my-custom-toggle-button-0"
|
|
30511
|
-
* },
|
|
30512
|
-
* {
|
|
30513
|
-
* "type": "togglebutton",
|
|
30514
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30515
|
-
* "label": {
|
|
30516
|
-
* "value": "My Custom Control 1"
|
|
30517
|
-
* },
|
|
30518
|
-
* "key": "my-custom-toggle-button-1"
|
|
30519
|
-
* }
|
|
30520
|
-
* ]
|
|
30521
|
-
* }
|
|
30522
|
-
* ]
|
|
30505
|
+
* {
|
|
30506
|
+
* "type": "button",
|
|
30507
|
+
* "label": {
|
|
30508
|
+
* "value": "My Custom Control 0"
|
|
30509
|
+
* },
|
|
30510
|
+
* "key": "my-custom-control-0"
|
|
30511
|
+
* }
|
|
30523
30512
|
*
|
|
30524
30513
|
*
|
|
30525
30514
|
*
|
|
30526
30515
|
*/
|
|
30527
|
-
export interface
|
|
30528
|
-
controls: ToggleButtonControl1[];
|
|
30516
|
+
export interface TextControl1 {
|
|
30529
30517
|
macroParameter: string;
|
|
30530
|
-
type: '
|
|
30518
|
+
type: 'text' | 'TEXT';
|
|
30519
|
+
key: string;
|
|
30531
30520
|
[k: string]: unknown;
|
|
30532
30521
|
}
|
|
30533
30522
|
/**
|
|
30534
30523
|
*
|
|
30535
30524
|
*
|
|
30536
|
-
* Defines a
|
|
30525
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30537
30526
|
*
|
|
30538
30527
|
* <p><b>Example</b></p>
|
|
30539
30528
|
*
|
|
@@ -30542,21 +30531,19 @@ export interface ToggleGroup1 {
|
|
|
30542
30531
|
*
|
|
30543
30532
|
*
|
|
30544
30533
|
* {
|
|
30545
|
-
* "type": "
|
|
30546
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30534
|
+
* "type": "button",
|
|
30547
30535
|
* "label": {
|
|
30548
30536
|
* "value": "My Custom Control 0"
|
|
30549
30537
|
* },
|
|
30550
|
-
* "key": "my-custom-
|
|
30538
|
+
* "key": "my-custom-control-0"
|
|
30551
30539
|
* }
|
|
30552
30540
|
*
|
|
30553
30541
|
*
|
|
30554
30542
|
*
|
|
30555
30543
|
*/
|
|
30556
|
-
export interface
|
|
30557
|
-
macroParameterValue: string;
|
|
30544
|
+
export interface ButtonControl2 {
|
|
30558
30545
|
label: I18NProperty85;
|
|
30559
|
-
type: '
|
|
30546
|
+
type: 'button' | 'BUTTON';
|
|
30560
30547
|
key: string;
|
|
30561
30548
|
[k: string]: unknown;
|
|
30562
30549
|
}
|
|
@@ -30584,6 +30571,47 @@ export interface I18NProperty85 {
|
|
|
30584
30571
|
i18n?: string;
|
|
30585
30572
|
[k: string]: unknown;
|
|
30586
30573
|
}
|
|
30574
|
+
/**
|
|
30575
|
+
*
|
|
30576
|
+
*
|
|
30577
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30578
|
+
*
|
|
30579
|
+
* <p><b>Example</b></p>
|
|
30580
|
+
*
|
|
30581
|
+
*
|
|
30582
|
+
*
|
|
30583
|
+
*
|
|
30584
|
+
*
|
|
30585
|
+
* [
|
|
30586
|
+
* {
|
|
30587
|
+
* "type": "group",
|
|
30588
|
+
* "controls": [
|
|
30589
|
+
* {
|
|
30590
|
+
* "type": "button",
|
|
30591
|
+
* "label": {
|
|
30592
|
+
* "value": "My Custom Control 0"
|
|
30593
|
+
* },
|
|
30594
|
+
* "key": "my-custom-control-0"
|
|
30595
|
+
* },
|
|
30596
|
+
* {
|
|
30597
|
+
* "type": "button",
|
|
30598
|
+
* "label": {
|
|
30599
|
+
* "value": "My Custom Control 1"
|
|
30600
|
+
* },
|
|
30601
|
+
* "key": "my-custom-control-1"
|
|
30602
|
+
* }
|
|
30603
|
+
* ]
|
|
30604
|
+
* }
|
|
30605
|
+
* ]
|
|
30606
|
+
*
|
|
30607
|
+
*
|
|
30608
|
+
*
|
|
30609
|
+
*/
|
|
30610
|
+
export interface ControlGroup1 {
|
|
30611
|
+
controls: ButtonControl3[];
|
|
30612
|
+
type: 'group' | 'GROUP';
|
|
30613
|
+
[k: string]: unknown;
|
|
30614
|
+
}
|
|
30587
30615
|
/**
|
|
30588
30616
|
*
|
|
30589
30617
|
*
|
|
@@ -30636,34 +30664,6 @@ export interface I18NProperty86 {
|
|
|
30636
30664
|
i18n?: string;
|
|
30637
30665
|
[k: string]: unknown;
|
|
30638
30666
|
}
|
|
30639
|
-
/**
|
|
30640
|
-
*
|
|
30641
|
-
*
|
|
30642
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
30643
|
-
*
|
|
30644
|
-
* <p><b>Example</b></p>
|
|
30645
|
-
*
|
|
30646
|
-
*
|
|
30647
|
-
*
|
|
30648
|
-
*
|
|
30649
|
-
*
|
|
30650
|
-
* {
|
|
30651
|
-
* "type": "button",
|
|
30652
|
-
* "label": {
|
|
30653
|
-
* "value": "My Custom Control 0"
|
|
30654
|
-
* },
|
|
30655
|
-
* "key": "my-custom-control-0"
|
|
30656
|
-
* }
|
|
30657
|
-
*
|
|
30658
|
-
*
|
|
30659
|
-
*
|
|
30660
|
-
*/
|
|
30661
|
-
export interface TextControl1 {
|
|
30662
|
-
macroParameter: string;
|
|
30663
|
-
type: 'text' | 'TEXT';
|
|
30664
|
-
key: string;
|
|
30665
|
-
[k: string]: unknown;
|
|
30666
|
-
}
|
|
30667
30667
|
/**
|
|
30668
30668
|
*
|
|
30669
30669
|
*
|
|
@@ -51513,10 +51513,47 @@ export interface I18NProperty91 {
|
|
|
51513
51513
|
*
|
|
51514
51514
|
*/
|
|
51515
51515
|
export interface WebItemTarget2 {
|
|
51516
|
-
options?:
|
|
51516
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
51517
51517
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51518
51518
|
[k: string]: unknown;
|
|
51519
51519
|
}
|
|
51520
|
+
/**
|
|
51521
|
+
*
|
|
51522
|
+
*
|
|
51523
|
+
* Options for an inline dialog target
|
|
51524
|
+
*
|
|
51525
|
+
* <h3>Example</h3>
|
|
51526
|
+
*
|
|
51527
|
+
*
|
|
51528
|
+
*
|
|
51529
|
+
*
|
|
51530
|
+
*
|
|
51531
|
+
* {
|
|
51532
|
+
* "target": {
|
|
51533
|
+
* "type": "inlinedialog",
|
|
51534
|
+
* "options": {
|
|
51535
|
+
* "onHover": true,
|
|
51536
|
+
* "offsetX": "30px",
|
|
51537
|
+
* "offsetY": "20px"
|
|
51538
|
+
* }
|
|
51539
|
+
* }
|
|
51540
|
+
* }
|
|
51541
|
+
*
|
|
51542
|
+
*
|
|
51543
|
+
*
|
|
51544
|
+
*/
|
|
51545
|
+
export interface InlineDialogOptions2 {
|
|
51546
|
+
offsetX?: string;
|
|
51547
|
+
offsetY?: string;
|
|
51548
|
+
width?: string;
|
|
51549
|
+
onTop?: boolean;
|
|
51550
|
+
showDelay?: number;
|
|
51551
|
+
closeOthers?: boolean;
|
|
51552
|
+
persistent?: boolean;
|
|
51553
|
+
onHover?: boolean;
|
|
51554
|
+
isRelativeToMouse?: boolean;
|
|
51555
|
+
[k: string]: unknown;
|
|
51556
|
+
}
|
|
51520
51557
|
/**
|
|
51521
51558
|
*
|
|
51522
51559
|
*
|
|
@@ -51642,43 +51679,6 @@ export interface DialogModuleOptions2 {
|
|
|
51642
51679
|
key: string;
|
|
51643
51680
|
[k: string]: unknown;
|
|
51644
51681
|
}
|
|
51645
|
-
/**
|
|
51646
|
-
*
|
|
51647
|
-
*
|
|
51648
|
-
* Options for an inline dialog target
|
|
51649
|
-
*
|
|
51650
|
-
* <h3>Example</h3>
|
|
51651
|
-
*
|
|
51652
|
-
*
|
|
51653
|
-
*
|
|
51654
|
-
*
|
|
51655
|
-
*
|
|
51656
|
-
* {
|
|
51657
|
-
* "target": {
|
|
51658
|
-
* "type": "inlinedialog",
|
|
51659
|
-
* "options": {
|
|
51660
|
-
* "onHover": true,
|
|
51661
|
-
* "offsetX": "30px",
|
|
51662
|
-
* "offsetY": "20px"
|
|
51663
|
-
* }
|
|
51664
|
-
* }
|
|
51665
|
-
* }
|
|
51666
|
-
*
|
|
51667
|
-
*
|
|
51668
|
-
*
|
|
51669
|
-
*/
|
|
51670
|
-
export interface InlineDialogOptions2 {
|
|
51671
|
-
offsetX?: string;
|
|
51672
|
-
offsetY?: string;
|
|
51673
|
-
width?: string;
|
|
51674
|
-
onTop?: boolean;
|
|
51675
|
-
showDelay?: number;
|
|
51676
|
-
closeOthers?: boolean;
|
|
51677
|
-
persistent?: boolean;
|
|
51678
|
-
onHover?: boolean;
|
|
51679
|
-
isRelativeToMouse?: boolean;
|
|
51680
|
-
[k: string]: unknown;
|
|
51681
|
-
}
|
|
51682
51682
|
/**
|
|
51683
51683
|
*
|
|
51684
51684
|
*
|
|
@@ -28,6 +28,7 @@ export declare enum AllModuleTypes {
|
|
|
28
28
|
CompassAdminPage = "compass:adminPage",
|
|
29
29
|
CompassComponentPage = "compass:componentPage",
|
|
30
30
|
CompassGlobalPage = "compass:globalPage",
|
|
31
|
+
CompassTeamPage = "compass:teamPage",
|
|
31
32
|
JiraServiceManagementQueuePage = "jiraServiceManagement:queuePage",
|
|
32
33
|
JiraServiceManagementPortalRequestDetail = "jiraServiceManagement:portalRequestDetail",
|
|
33
34
|
JiraServiceManagementPortalRequestDetailPanel = "jiraServiceManagement:portalRequestDetailPanel",
|
|
@@ -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;
|
|
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;IACxC,eAAe,qBAAqB;IAEpC,8BAA8B,oCAAoC;IAClE,wCAAwC,8CAA8C;IACtF,6CAA6C,mDAAmD;IAChG,sCAAsC,4CAA4C;IAClF,iCAAiC,uCAAuC;IACxE,oCAAoC,0CAA0C;IAC9E,iCAAiC,uCAAuC;IACxE,uCAAuC,6CAA6C;IAEpF,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,6 +32,7 @@ var AllModuleTypes;
|
|
|
32
32
|
AllModuleTypes["CompassAdminPage"] = "compass:adminPage";
|
|
33
33
|
AllModuleTypes["CompassComponentPage"] = "compass:componentPage";
|
|
34
34
|
AllModuleTypes["CompassGlobalPage"] = "compass:globalPage";
|
|
35
|
+
AllModuleTypes["CompassTeamPage"] = "compass:teamPage";
|
|
35
36
|
AllModuleTypes["JiraServiceManagementQueuePage"] = "jiraServiceManagement:queuePage";
|
|
36
37
|
AllModuleTypes["JiraServiceManagementPortalRequestDetail"] = "jiraServiceManagement:portalRequestDetail";
|
|
37
38
|
AllModuleTypes["JiraServiceManagementPortalRequestDetailPanel"] = "jiraServiceManagement:portalRequestDetailPanel";
|