@forge/manifest 2.5.0 → 2.5.1-next.3
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 +24 -0
- package/out/schema/manifest-schema.json +83 -79
- package/out/schema/manifest.d.ts +71 -69
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 2.5.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3010f0e: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 2.5.1-next.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- a017696: Update manifest definitions
|
|
14
|
+
|
|
15
|
+
## 2.5.1-next.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- af1473c: Update manifest definitions
|
|
20
|
+
|
|
21
|
+
## 2.5.1-next.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 06209fc: Update manifest definitions
|
|
26
|
+
|
|
3
27
|
## 2.5.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
|
@@ -5482,10 +5482,10 @@
|
|
|
5482
5482
|
"type": "object",
|
|
5483
5483
|
"anyOf": [
|
|
5484
5484
|
{
|
|
5485
|
-
"$ref": "#/definitions/
|
|
5485
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5486
5486
|
},
|
|
5487
5487
|
{
|
|
5488
|
-
"$ref": "#/definitions/
|
|
5488
|
+
"$ref": "#/definitions/singleCondition"
|
|
5489
5489
|
}
|
|
5490
5490
|
]
|
|
5491
5491
|
},
|
|
@@ -5932,10 +5932,10 @@
|
|
|
5932
5932
|
"type": "object",
|
|
5933
5933
|
"anyOf": [
|
|
5934
5934
|
{
|
|
5935
|
-
"$ref": "
|
|
5935
|
+
"$ref": "#"
|
|
5936
5936
|
},
|
|
5937
5937
|
{
|
|
5938
|
-
"$ref": "
|
|
5938
|
+
"$ref": "#/definitions/singleCondition"
|
|
5939
5939
|
}
|
|
5940
5940
|
]
|
|
5941
5941
|
},
|
|
@@ -6195,10 +6195,10 @@
|
|
|
6195
6195
|
"type": "object",
|
|
6196
6196
|
"anyOf": [
|
|
6197
6197
|
{
|
|
6198
|
-
"$ref": "
|
|
6198
|
+
"$ref": "#/definitions/singleCondition"
|
|
6199
6199
|
},
|
|
6200
6200
|
{
|
|
6201
|
-
"$ref": "
|
|
6201
|
+
"$ref": "#"
|
|
6202
6202
|
}
|
|
6203
6203
|
]
|
|
6204
6204
|
},
|
|
@@ -6493,38 +6493,6 @@
|
|
|
6493
6493
|
"items": {
|
|
6494
6494
|
"type": "object",
|
|
6495
6495
|
"anyOf": [
|
|
6496
|
-
{
|
|
6497
|
-
"properties": {
|
|
6498
|
-
"macroParameter": {
|
|
6499
|
-
"maxLength": 100,
|
|
6500
|
-
"type": "string",
|
|
6501
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6502
|
-
},
|
|
6503
|
-
"type": {
|
|
6504
|
-
"enum": [
|
|
6505
|
-
"text",
|
|
6506
|
-
"TEXT"
|
|
6507
|
-
],
|
|
6508
|
-
"type": "string",
|
|
6509
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6510
|
-
},
|
|
6511
|
-
"key": {
|
|
6512
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6513
|
-
"maxLength": 100,
|
|
6514
|
-
"type": "string",
|
|
6515
|
-
"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"
|
|
6516
|
-
}
|
|
6517
|
-
},
|
|
6518
|
-
"required": [
|
|
6519
|
-
"macroParameter",
|
|
6520
|
-
"type",
|
|
6521
|
-
"key"
|
|
6522
|
-
],
|
|
6523
|
-
"shortClassName": "textControlBean",
|
|
6524
|
-
"type": "object",
|
|
6525
|
-
"title": "TextControl",
|
|
6526
|
-
"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"
|
|
6527
|
-
},
|
|
6528
6496
|
{
|
|
6529
6497
|
"properties": {
|
|
6530
6498
|
"label": {
|
|
@@ -6681,6 +6649,38 @@
|
|
|
6681
6649
|
"type": "object",
|
|
6682
6650
|
"title": "ToggleGroup",
|
|
6683
6651
|
"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"
|
|
6652
|
+
},
|
|
6653
|
+
{
|
|
6654
|
+
"properties": {
|
|
6655
|
+
"macroParameter": {
|
|
6656
|
+
"maxLength": 100,
|
|
6657
|
+
"type": "string",
|
|
6658
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
6659
|
+
},
|
|
6660
|
+
"type": {
|
|
6661
|
+
"enum": [
|
|
6662
|
+
"text",
|
|
6663
|
+
"TEXT"
|
|
6664
|
+
],
|
|
6665
|
+
"type": "string",
|
|
6666
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
6667
|
+
},
|
|
6668
|
+
"key": {
|
|
6669
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6670
|
+
"maxLength": 100,
|
|
6671
|
+
"type": "string",
|
|
6672
|
+
"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"
|
|
6673
|
+
}
|
|
6674
|
+
},
|
|
6675
|
+
"required": [
|
|
6676
|
+
"macroParameter",
|
|
6677
|
+
"type",
|
|
6678
|
+
"key"
|
|
6679
|
+
],
|
|
6680
|
+
"shortClassName": "textControlBean",
|
|
6681
|
+
"type": "object",
|
|
6682
|
+
"title": "TextControl",
|
|
6683
|
+
"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"
|
|
6684
6684
|
}
|
|
6685
6685
|
]
|
|
6686
6686
|
},
|
|
@@ -6980,22 +6980,17 @@
|
|
|
6980
6980
|
"controls": {
|
|
6981
6981
|
"items": {
|
|
6982
6982
|
"properties": {
|
|
6983
|
-
"macroParameterValue": {
|
|
6984
|
-
"maxLength": 10000,
|
|
6985
|
-
"type": "string",
|
|
6986
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
6987
|
-
},
|
|
6988
6983
|
"label": {
|
|
6989
6984
|
"$ref": "#/definitions/i18nProperty",
|
|
6990
6985
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6991
6986
|
},
|
|
6992
6987
|
"type": {
|
|
6993
6988
|
"enum": [
|
|
6994
|
-
"
|
|
6995
|
-
"
|
|
6989
|
+
"button",
|
|
6990
|
+
"BUTTON"
|
|
6996
6991
|
],
|
|
6997
6992
|
"type": "string",
|
|
6998
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
6993
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6999
6994
|
},
|
|
7000
6995
|
"key": {
|
|
7001
6996
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7005,44 +7000,36 @@
|
|
|
7005
7000
|
}
|
|
7006
7001
|
},
|
|
7007
7002
|
"required": [
|
|
7008
|
-
"macroParameterValue",
|
|
7009
7003
|
"label",
|
|
7010
7004
|
"type",
|
|
7011
7005
|
"key"
|
|
7012
7006
|
],
|
|
7013
7007
|
"additionalProperties": true,
|
|
7014
|
-
"shortClassName": "
|
|
7008
|
+
"shortClassName": "buttonControlBean",
|
|
7015
7009
|
"type": "object",
|
|
7016
|
-
"title": "
|
|
7017
|
-
"description": "\n\nDefines a
|
|
7010
|
+
"title": "ButtonControl",
|
|
7011
|
+
"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"
|
|
7018
7012
|
},
|
|
7019
7013
|
"type": "array",
|
|
7020
|
-
"fieldDescription": "\n\
|
|
7021
|
-
},
|
|
7022
|
-
"macroParameter": {
|
|
7023
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
7024
|
-
"maxLength": 100,
|
|
7025
|
-
"type": "string",
|
|
7026
|
-
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7014
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
7027
7015
|
},
|
|
7028
7016
|
"type": {
|
|
7029
7017
|
"enum": [
|
|
7030
|
-
"
|
|
7031
|
-
"
|
|
7018
|
+
"group",
|
|
7019
|
+
"GROUP"
|
|
7032
7020
|
],
|
|
7033
7021
|
"type": "string",
|
|
7034
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7022
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
7035
7023
|
}
|
|
7036
7024
|
},
|
|
7037
7025
|
"required": [
|
|
7038
7026
|
"controls",
|
|
7039
|
-
"macroParameter",
|
|
7040
7027
|
"type"
|
|
7041
7028
|
],
|
|
7042
|
-
"shortClassName": "
|
|
7029
|
+
"shortClassName": "controlGroupBean",
|
|
7043
7030
|
"type": "object",
|
|
7044
|
-
"title": "
|
|
7045
|
-
"description": "\n\nDefines a
|
|
7031
|
+
"title": "ControlGroup",
|
|
7032
|
+
"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"
|
|
7046
7033
|
},
|
|
7047
7034
|
{
|
|
7048
7035
|
"properties": {
|
|
@@ -7081,17 +7068,22 @@
|
|
|
7081
7068
|
"controls": {
|
|
7082
7069
|
"items": {
|
|
7083
7070
|
"properties": {
|
|
7071
|
+
"macroParameterValue": {
|
|
7072
|
+
"maxLength": 10000,
|
|
7073
|
+
"type": "string",
|
|
7074
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7075
|
+
},
|
|
7084
7076
|
"label": {
|
|
7085
7077
|
"$ref": "#/definitions/i18nProperty",
|
|
7086
7078
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7087
7079
|
},
|
|
7088
7080
|
"type": {
|
|
7089
7081
|
"enum": [
|
|
7090
|
-
"
|
|
7091
|
-
"
|
|
7082
|
+
"togglebutton",
|
|
7083
|
+
"TOGGLEBUTTON"
|
|
7092
7084
|
],
|
|
7093
7085
|
"type": "string",
|
|
7094
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7086
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
7095
7087
|
},
|
|
7096
7088
|
"key": {
|
|
7097
7089
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -7101,36 +7093,44 @@
|
|
|
7101
7093
|
}
|
|
7102
7094
|
},
|
|
7103
7095
|
"required": [
|
|
7096
|
+
"macroParameterValue",
|
|
7104
7097
|
"label",
|
|
7105
7098
|
"type",
|
|
7106
7099
|
"key"
|
|
7107
7100
|
],
|
|
7108
7101
|
"additionalProperties": true,
|
|
7109
|
-
"shortClassName": "
|
|
7102
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
7110
7103
|
"type": "object",
|
|
7111
|
-
"title": "
|
|
7112
|
-
"description": "\n\nDefines a button which
|
|
7104
|
+
"title": "ToggleButtonControl",
|
|
7105
|
+
"description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n }\n\n\n"
|
|
7113
7106
|
},
|
|
7114
7107
|
"type": "array",
|
|
7115
|
-
"fieldDescription": "\n\
|
|
7108
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
7109
|
+
},
|
|
7110
|
+
"macroParameter": {
|
|
7111
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
7112
|
+
"maxLength": 100,
|
|
7113
|
+
"type": "string",
|
|
7114
|
+
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7116
7115
|
},
|
|
7117
7116
|
"type": {
|
|
7118
7117
|
"enum": [
|
|
7119
|
-
"
|
|
7120
|
-
"
|
|
7118
|
+
"togglegroup",
|
|
7119
|
+
"TOGGLEGROUP"
|
|
7121
7120
|
],
|
|
7122
7121
|
"type": "string",
|
|
7123
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7122
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
7124
7123
|
}
|
|
7125
7124
|
},
|
|
7126
7125
|
"required": [
|
|
7127
7126
|
"controls",
|
|
7127
|
+
"macroParameter",
|
|
7128
7128
|
"type"
|
|
7129
7129
|
],
|
|
7130
|
-
"shortClassName": "
|
|
7130
|
+
"shortClassName": "macroToggleGroupBean",
|
|
7131
7131
|
"type": "object",
|
|
7132
|
-
"title": "
|
|
7133
|
-
"description": "\n\nDefines a
|
|
7132
|
+
"title": "ToggleGroup",
|
|
7133
|
+
"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"
|
|
7134
7134
|
},
|
|
7135
7135
|
{
|
|
7136
7136
|
"properties": {
|
|
@@ -7618,6 +7618,10 @@
|
|
|
7618
7618
|
"type": "string",
|
|
7619
7619
|
"fieldDescription": "\n\nFires when an add on has been successfully disabled. This is an asynchronous notification event.\n\n"
|
|
7620
7620
|
},
|
|
7621
|
+
"dare-migration": {
|
|
7622
|
+
"type": "string",
|
|
7623
|
+
"fieldDescription": "\n\nUsed DaRe app migration service to trigger migrations events\n\n"
|
|
7624
|
+
},
|
|
7621
7625
|
"uninstalled": {
|
|
7622
7626
|
"format": "uri",
|
|
7623
7627
|
"type": "string",
|
|
@@ -8790,10 +8794,10 @@
|
|
|
8790
8794
|
"type": "object",
|
|
8791
8795
|
"anyOf": [
|
|
8792
8796
|
{
|
|
8793
|
-
"$ref": "
|
|
8797
|
+
"$ref": "#/definitions/singleCondition"
|
|
8794
8798
|
},
|
|
8795
8799
|
{
|
|
8796
|
-
"$ref": "
|
|
8800
|
+
"$ref": "#"
|
|
8797
8801
|
}
|
|
8798
8802
|
]
|
|
8799
8803
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2536,7 +2536,7 @@ export interface Modules {
|
|
|
2536
2536
|
filter?: string;
|
|
2537
2537
|
excludeBody?: boolean;
|
|
2538
2538
|
event?: string;
|
|
2539
|
-
conditions?: (
|
|
2539
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2540
2540
|
propertyKeys?: string[];
|
|
2541
2541
|
url?: string;
|
|
2542
2542
|
key: ModuleKeySchema;
|
|
@@ -2546,7 +2546,7 @@ export interface Modules {
|
|
|
2546
2546
|
filter?: string;
|
|
2547
2547
|
excludeBody?: boolean;
|
|
2548
2548
|
event?: string;
|
|
2549
|
-
conditions?: (
|
|
2549
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2550
2550
|
propertyKeys?: string[];
|
|
2551
2551
|
url?: string;
|
|
2552
2552
|
key: ModuleKeySchema;
|
|
@@ -3013,6 +3013,7 @@ export interface Modules {
|
|
|
3013
3013
|
{
|
|
3014
3014
|
installed?: string;
|
|
3015
3015
|
disabled?: string;
|
|
3016
|
+
'dare-migration'?: string;
|
|
3016
3017
|
uninstalled?: string;
|
|
3017
3018
|
enabled?: string;
|
|
3018
3019
|
key: ModuleKeySchema;
|
|
@@ -3021,6 +3022,7 @@ export interface Modules {
|
|
|
3021
3022
|
...{
|
|
3022
3023
|
installed?: string;
|
|
3023
3024
|
disabled?: string;
|
|
3025
|
+
'dare-migration'?: string;
|
|
3024
3026
|
uninstalled?: string;
|
|
3025
3027
|
enabled?: string;
|
|
3026
3028
|
key: ModuleKeySchema;
|
|
@@ -3222,7 +3224,7 @@ export interface SingleCondition {
|
|
|
3222
3224
|
*
|
|
3223
3225
|
*/
|
|
3224
3226
|
export interface CompositeCondition {
|
|
3225
|
-
conditions?: (
|
|
3227
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
3226
3228
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3227
3229
|
[k: string]: unknown;
|
|
3228
3230
|
}
|
|
@@ -6157,7 +6159,7 @@ export interface SingleCondition4 {
|
|
|
6157
6159
|
*
|
|
6158
6160
|
*/
|
|
6159
6161
|
export interface CompositeCondition6 {
|
|
6160
|
-
conditions?: (
|
|
6162
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
6161
6163
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6162
6164
|
[k: string]: unknown;
|
|
6163
6165
|
}
|
|
@@ -6583,7 +6585,7 @@ export interface SingleCondition5 {
|
|
|
6583
6585
|
*
|
|
6584
6586
|
*/
|
|
6585
6587
|
export interface CompositeCondition7 {
|
|
6586
|
-
conditions?: (
|
|
6588
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6587
6589
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6588
6590
|
[k: string]: unknown;
|
|
6589
6591
|
}
|
|
@@ -8006,39 +8008,11 @@ export interface I18NProperty74 {
|
|
|
8006
8008
|
*
|
|
8007
8009
|
*/
|
|
8008
8010
|
export interface MacroPropertyPanel {
|
|
8009
|
-
controls?: (
|
|
8011
|
+
controls?: (ButtonControl | ControlGroup | ToggleGroup | TextControl)[];
|
|
8010
8012
|
cacheable?: boolean;
|
|
8011
8013
|
url: string;
|
|
8012
8014
|
[k: string]: unknown;
|
|
8013
8015
|
}
|
|
8014
|
-
/**
|
|
8015
|
-
*
|
|
8016
|
-
*
|
|
8017
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
8018
|
-
*
|
|
8019
|
-
* <p><b>Example</b></p>
|
|
8020
|
-
*
|
|
8021
|
-
*
|
|
8022
|
-
*
|
|
8023
|
-
*
|
|
8024
|
-
*
|
|
8025
|
-
* {
|
|
8026
|
-
* "type": "button",
|
|
8027
|
-
* "label": {
|
|
8028
|
-
* "value": "My Custom Control 0"
|
|
8029
|
-
* },
|
|
8030
|
-
* "key": "my-custom-control-0"
|
|
8031
|
-
* }
|
|
8032
|
-
*
|
|
8033
|
-
*
|
|
8034
|
-
*
|
|
8035
|
-
*/
|
|
8036
|
-
export interface TextControl {
|
|
8037
|
-
macroParameter: string;
|
|
8038
|
-
type: 'text' | 'TEXT';
|
|
8039
|
-
key: string;
|
|
8040
|
-
[k: string]: unknown;
|
|
8041
|
-
}
|
|
8042
8016
|
/**
|
|
8043
8017
|
*
|
|
8044
8018
|
*
|
|
@@ -8283,6 +8257,34 @@ export interface I18NProperty77 {
|
|
|
8283
8257
|
i18n?: string;
|
|
8284
8258
|
[k: string]: unknown;
|
|
8285
8259
|
}
|
|
8260
|
+
/**
|
|
8261
|
+
*
|
|
8262
|
+
*
|
|
8263
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8264
|
+
*
|
|
8265
|
+
* <p><b>Example</b></p>
|
|
8266
|
+
*
|
|
8267
|
+
*
|
|
8268
|
+
*
|
|
8269
|
+
*
|
|
8270
|
+
*
|
|
8271
|
+
* {
|
|
8272
|
+
* "type": "button",
|
|
8273
|
+
* "label": {
|
|
8274
|
+
* "value": "My Custom Control 0"
|
|
8275
|
+
* },
|
|
8276
|
+
* "key": "my-custom-control-0"
|
|
8277
|
+
* }
|
|
8278
|
+
*
|
|
8279
|
+
*
|
|
8280
|
+
*
|
|
8281
|
+
*/
|
|
8282
|
+
export interface TextControl {
|
|
8283
|
+
macroParameter: string;
|
|
8284
|
+
type: 'text' | 'TEXT';
|
|
8285
|
+
key: string;
|
|
8286
|
+
[k: string]: unknown;
|
|
8287
|
+
}
|
|
8286
8288
|
/**
|
|
8287
8289
|
*
|
|
8288
8290
|
*
|
|
@@ -29251,7 +29253,7 @@ export interface I18NProperty83 {
|
|
|
29251
29253
|
*
|
|
29252
29254
|
*/
|
|
29253
29255
|
export interface MacroPropertyPanel1 {
|
|
29254
|
-
controls?: (
|
|
29256
|
+
controls?: (ControlGroup1 | TextControl1 | ToggleGroup1 | ButtonControl3)[];
|
|
29255
29257
|
cacheable?: boolean;
|
|
29256
29258
|
url: string;
|
|
29257
29259
|
[k: string]: unknown;
|
|
@@ -29259,7 +29261,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29259
29261
|
/**
|
|
29260
29262
|
*
|
|
29261
29263
|
*
|
|
29262
|
-
* Defines a
|
|
29264
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29263
29265
|
*
|
|
29264
29266
|
* <p><b>Example</b></p>
|
|
29265
29267
|
*
|
|
@@ -29269,24 +29271,21 @@ export interface MacroPropertyPanel1 {
|
|
|
29269
29271
|
*
|
|
29270
29272
|
* [
|
|
29271
29273
|
* {
|
|
29272
|
-
* "type": "
|
|
29273
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29274
|
+
* "type": "group",
|
|
29274
29275
|
* "controls": [
|
|
29275
29276
|
* {
|
|
29276
|
-
* "type": "
|
|
29277
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29277
|
+
* "type": "button",
|
|
29278
29278
|
* "label": {
|
|
29279
29279
|
* "value": "My Custom Control 0"
|
|
29280
29280
|
* },
|
|
29281
|
-
* "key": "my-custom-
|
|
29281
|
+
* "key": "my-custom-control-0"
|
|
29282
29282
|
* },
|
|
29283
29283
|
* {
|
|
29284
|
-
* "type": "
|
|
29285
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29284
|
+
* "type": "button",
|
|
29286
29285
|
* "label": {
|
|
29287
29286
|
* "value": "My Custom Control 1"
|
|
29288
29287
|
* },
|
|
29289
|
-
* "key": "my-custom-
|
|
29288
|
+
* "key": "my-custom-control-1"
|
|
29290
29289
|
* }
|
|
29291
29290
|
* ]
|
|
29292
29291
|
* }
|
|
@@ -29295,16 +29294,15 @@ export interface MacroPropertyPanel1 {
|
|
|
29295
29294
|
*
|
|
29296
29295
|
*
|
|
29297
29296
|
*/
|
|
29298
|
-
export interface
|
|
29299
|
-
controls:
|
|
29300
|
-
|
|
29301
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29297
|
+
export interface ControlGroup1 {
|
|
29298
|
+
controls: ButtonControl2[];
|
|
29299
|
+
type: 'group' | 'GROUP';
|
|
29302
29300
|
[k: string]: unknown;
|
|
29303
29301
|
}
|
|
29304
29302
|
/**
|
|
29305
29303
|
*
|
|
29306
29304
|
*
|
|
29307
|
-
* Defines a
|
|
29305
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29308
29306
|
*
|
|
29309
29307
|
* <p><b>Example</b></p>
|
|
29310
29308
|
*
|
|
@@ -29313,21 +29311,19 @@ export interface ToggleGroup1 {
|
|
|
29313
29311
|
*
|
|
29314
29312
|
*
|
|
29315
29313
|
* {
|
|
29316
|
-
* "type": "
|
|
29317
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29314
|
+
* "type": "button",
|
|
29318
29315
|
* "label": {
|
|
29319
29316
|
* "value": "My Custom Control 0"
|
|
29320
29317
|
* },
|
|
29321
|
-
* "key": "my-custom-
|
|
29318
|
+
* "key": "my-custom-control-0"
|
|
29322
29319
|
* }
|
|
29323
29320
|
*
|
|
29324
29321
|
*
|
|
29325
29322
|
*
|
|
29326
29323
|
*/
|
|
29327
|
-
export interface
|
|
29328
|
-
macroParameterValue: string;
|
|
29324
|
+
export interface ButtonControl2 {
|
|
29329
29325
|
label: I18NProperty84;
|
|
29330
|
-
type: '
|
|
29326
|
+
type: 'button' | 'BUTTON';
|
|
29331
29327
|
key: string;
|
|
29332
29328
|
[k: string]: unknown;
|
|
29333
29329
|
}
|
|
@@ -29386,7 +29382,7 @@ export interface TextControl1 {
|
|
|
29386
29382
|
/**
|
|
29387
29383
|
*
|
|
29388
29384
|
*
|
|
29389
|
-
* Defines a
|
|
29385
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29390
29386
|
*
|
|
29391
29387
|
* <p><b>Example</b></p>
|
|
29392
29388
|
*
|
|
@@ -29396,21 +29392,24 @@ export interface TextControl1 {
|
|
|
29396
29392
|
*
|
|
29397
29393
|
* [
|
|
29398
29394
|
* {
|
|
29399
|
-
* "type": "
|
|
29395
|
+
* "type": "togglegroup",
|
|
29396
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29400
29397
|
* "controls": [
|
|
29401
29398
|
* {
|
|
29402
|
-
* "type": "
|
|
29399
|
+
* "type": "togglebutton",
|
|
29400
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29403
29401
|
* "label": {
|
|
29404
29402
|
* "value": "My Custom Control 0"
|
|
29405
29403
|
* },
|
|
29406
|
-
* "key": "my-custom-
|
|
29404
|
+
* "key": "my-custom-toggle-button-0"
|
|
29407
29405
|
* },
|
|
29408
29406
|
* {
|
|
29409
|
-
* "type": "
|
|
29407
|
+
* "type": "togglebutton",
|
|
29408
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29410
29409
|
* "label": {
|
|
29411
29410
|
* "value": "My Custom Control 1"
|
|
29412
29411
|
* },
|
|
29413
|
-
* "key": "my-custom-
|
|
29412
|
+
* "key": "my-custom-toggle-button-1"
|
|
29414
29413
|
* }
|
|
29415
29414
|
* ]
|
|
29416
29415
|
* }
|
|
@@ -29419,15 +29418,16 @@ export interface TextControl1 {
|
|
|
29419
29418
|
*
|
|
29420
29419
|
*
|
|
29421
29420
|
*/
|
|
29422
|
-
export interface
|
|
29423
|
-
controls:
|
|
29424
|
-
|
|
29421
|
+
export interface ToggleGroup1 {
|
|
29422
|
+
controls: ToggleButtonControl1[];
|
|
29423
|
+
macroParameter: string;
|
|
29424
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29425
29425
|
[k: string]: unknown;
|
|
29426
29426
|
}
|
|
29427
29427
|
/**
|
|
29428
29428
|
*
|
|
29429
29429
|
*
|
|
29430
|
-
* Defines a button which
|
|
29430
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29431
29431
|
*
|
|
29432
29432
|
* <p><b>Example</b></p>
|
|
29433
29433
|
*
|
|
@@ -29436,19 +29436,21 @@ export interface ControlGroup1 {
|
|
|
29436
29436
|
*
|
|
29437
29437
|
*
|
|
29438
29438
|
* {
|
|
29439
|
-
* "type": "
|
|
29439
|
+
* "type": "togglebutton",
|
|
29440
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29440
29441
|
* "label": {
|
|
29441
29442
|
* "value": "My Custom Control 0"
|
|
29442
29443
|
* },
|
|
29443
|
-
* "key": "my-custom-
|
|
29444
|
+
* "key": "my-custom-toggle-button-0"
|
|
29444
29445
|
* }
|
|
29445
29446
|
*
|
|
29446
29447
|
*
|
|
29447
29448
|
*
|
|
29448
29449
|
*/
|
|
29449
|
-
export interface
|
|
29450
|
+
export interface ToggleButtonControl1 {
|
|
29451
|
+
macroParameterValue: string;
|
|
29450
29452
|
label: I18NProperty85;
|
|
29451
|
-
type: '
|
|
29453
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29452
29454
|
key: string;
|
|
29453
29455
|
[k: string]: unknown;
|
|
29454
29456
|
}
|