@forge/manifest 3.3.1-next.0 → 3.3.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 +18 -0
- package/out/schema/manifest-schema.json +174 -174
- package/out/schema/manifest.d.ts +153 -153
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 3.3.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a8a4bb: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 3.3.1-next.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8b4fede: Update manifest definitions
|
|
14
|
+
|
|
15
|
+
## 3.3.1-next.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 24846832: Update manifest definitions
|
|
20
|
+
|
|
3
21
|
## 3.3.1-next.0
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -7501,10 +7501,10 @@
|
|
|
7501
7501
|
"type": "object",
|
|
7502
7502
|
"anyOf": [
|
|
7503
7503
|
{
|
|
7504
|
-
"$ref": "#/definitions/
|
|
7504
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7505
7505
|
},
|
|
7506
7506
|
{
|
|
7507
|
-
"$ref": "#/definitions/
|
|
7507
|
+
"$ref": "#/definitions/singleCondition"
|
|
7508
7508
|
}
|
|
7509
7509
|
]
|
|
7510
7510
|
},
|
|
@@ -7749,10 +7749,10 @@
|
|
|
7749
7749
|
"type": "object",
|
|
7750
7750
|
"anyOf": [
|
|
7751
7751
|
{
|
|
7752
|
-
"$ref": "#/definitions/
|
|
7752
|
+
"$ref": "#/definitions/singleCondition"
|
|
7753
7753
|
},
|
|
7754
7754
|
{
|
|
7755
|
-
"$ref": "#/definitions/
|
|
7755
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7756
7756
|
}
|
|
7757
7757
|
]
|
|
7758
7758
|
},
|
|
@@ -7880,6 +7880,22 @@
|
|
|
7880
7880
|
"type": "object",
|
|
7881
7881
|
"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",
|
|
7882
7882
|
"anyOf": [
|
|
7883
|
+
{
|
|
7884
|
+
"properties": {
|
|
7885
|
+
"key": {
|
|
7886
|
+
"maxLength": 100,
|
|
7887
|
+
"type": "string",
|
|
7888
|
+
"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"
|
|
7889
|
+
}
|
|
7890
|
+
},
|
|
7891
|
+
"required": [
|
|
7892
|
+
"key"
|
|
7893
|
+
],
|
|
7894
|
+
"shortClassName": "dialogModuleOptions",
|
|
7895
|
+
"type": "object",
|
|
7896
|
+
"title": "Dialog Module Options",
|
|
7897
|
+
"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"
|
|
7898
|
+
},
|
|
7883
7899
|
{
|
|
7884
7900
|
"properties": {
|
|
7885
7901
|
"size": {
|
|
@@ -7925,22 +7941,6 @@
|
|
|
7925
7941
|
"title": "Dialog Options",
|
|
7926
7942
|
"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"
|
|
7927
7943
|
},
|
|
7928
|
-
{
|
|
7929
|
-
"properties": {
|
|
7930
|
-
"key": {
|
|
7931
|
-
"maxLength": 100,
|
|
7932
|
-
"type": "string",
|
|
7933
|
-
"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"
|
|
7934
|
-
}
|
|
7935
|
-
},
|
|
7936
|
-
"required": [
|
|
7937
|
-
"key"
|
|
7938
|
-
],
|
|
7939
|
-
"shortClassName": "dialogModuleOptions",
|
|
7940
|
-
"type": "object",
|
|
7941
|
-
"title": "Dialog Module Options",
|
|
7942
|
-
"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"
|
|
7943
|
-
},
|
|
7944
7944
|
{
|
|
7945
7945
|
"properties": {
|
|
7946
7946
|
"offsetX": {
|
|
@@ -8155,10 +8155,10 @@
|
|
|
8155
8155
|
"type": "object",
|
|
8156
8156
|
"anyOf": [
|
|
8157
8157
|
{
|
|
8158
|
-
"$ref": "#/definitions/
|
|
8158
|
+
"$ref": "#/definitions/compositeCondition"
|
|
8159
8159
|
},
|
|
8160
8160
|
{
|
|
8161
|
-
"$ref": "#/definitions/
|
|
8161
|
+
"$ref": "#/definitions/singleCondition"
|
|
8162
8162
|
}
|
|
8163
8163
|
]
|
|
8164
8164
|
},
|
|
@@ -8638,38 +8638,6 @@
|
|
|
8638
8638
|
"items": {
|
|
8639
8639
|
"type": "object",
|
|
8640
8640
|
"anyOf": [
|
|
8641
|
-
{
|
|
8642
|
-
"properties": {
|
|
8643
|
-
"macroParameter": {
|
|
8644
|
-
"maxLength": 100,
|
|
8645
|
-
"type": "string",
|
|
8646
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8647
|
-
},
|
|
8648
|
-
"type": {
|
|
8649
|
-
"enum": [
|
|
8650
|
-
"text",
|
|
8651
|
-
"TEXT"
|
|
8652
|
-
],
|
|
8653
|
-
"type": "string",
|
|
8654
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8655
|
-
},
|
|
8656
|
-
"key": {
|
|
8657
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8658
|
-
"maxLength": 100,
|
|
8659
|
-
"type": "string",
|
|
8660
|
-
"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"
|
|
8661
|
-
}
|
|
8662
|
-
},
|
|
8663
|
-
"required": [
|
|
8664
|
-
"macroParameter",
|
|
8665
|
-
"type",
|
|
8666
|
-
"key"
|
|
8667
|
-
],
|
|
8668
|
-
"shortClassName": "textControlBean",
|
|
8669
|
-
"type": "object",
|
|
8670
|
-
"title": "TextControl",
|
|
8671
|
-
"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"
|
|
8672
|
-
},
|
|
8673
8641
|
{
|
|
8674
8642
|
"properties": {
|
|
8675
8643
|
"controls": {
|
|
@@ -8726,6 +8694,38 @@
|
|
|
8726
8694
|
"title": "ControlGroup",
|
|
8727
8695
|
"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"
|
|
8728
8696
|
},
|
|
8697
|
+
{
|
|
8698
|
+
"properties": {
|
|
8699
|
+
"macroParameter": {
|
|
8700
|
+
"maxLength": 100,
|
|
8701
|
+
"type": "string",
|
|
8702
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8703
|
+
},
|
|
8704
|
+
"type": {
|
|
8705
|
+
"enum": [
|
|
8706
|
+
"text",
|
|
8707
|
+
"TEXT"
|
|
8708
|
+
],
|
|
8709
|
+
"type": "string",
|
|
8710
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8711
|
+
},
|
|
8712
|
+
"key": {
|
|
8713
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8714
|
+
"maxLength": 100,
|
|
8715
|
+
"type": "string",
|
|
8716
|
+
"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"
|
|
8717
|
+
}
|
|
8718
|
+
},
|
|
8719
|
+
"required": [
|
|
8720
|
+
"macroParameter",
|
|
8721
|
+
"type",
|
|
8722
|
+
"key"
|
|
8723
|
+
],
|
|
8724
|
+
"shortClassName": "textControlBean",
|
|
8725
|
+
"type": "object",
|
|
8726
|
+
"title": "TextControl",
|
|
8727
|
+
"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"
|
|
8728
|
+
},
|
|
8729
8729
|
{
|
|
8730
8730
|
"properties": {
|
|
8731
8731
|
"label": {
|
|
@@ -9120,38 +9120,6 @@
|
|
|
9120
9120
|
"items": {
|
|
9121
9121
|
"type": "object",
|
|
9122
9122
|
"anyOf": [
|
|
9123
|
-
{
|
|
9124
|
-
"properties": {
|
|
9125
|
-
"label": {
|
|
9126
|
-
"$ref": "#/definitions/i18nProperty",
|
|
9127
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9128
|
-
},
|
|
9129
|
-
"type": {
|
|
9130
|
-
"enum": [
|
|
9131
|
-
"button",
|
|
9132
|
-
"BUTTON"
|
|
9133
|
-
],
|
|
9134
|
-
"type": "string",
|
|
9135
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
9136
|
-
},
|
|
9137
|
-
"key": {
|
|
9138
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9139
|
-
"maxLength": 100,
|
|
9140
|
-
"type": "string",
|
|
9141
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
9142
|
-
}
|
|
9143
|
-
},
|
|
9144
|
-
"required": [
|
|
9145
|
-
"label",
|
|
9146
|
-
"type",
|
|
9147
|
-
"key"
|
|
9148
|
-
],
|
|
9149
|
-
"additionalProperties": true,
|
|
9150
|
-
"shortClassName": "buttonControlBean",
|
|
9151
|
-
"type": "object",
|
|
9152
|
-
"title": "ButtonControl",
|
|
9153
|
-
"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"
|
|
9154
|
-
},
|
|
9155
9123
|
{
|
|
9156
9124
|
"properties": {
|
|
9157
9125
|
"macroParameter": {
|
|
@@ -9189,22 +9157,17 @@
|
|
|
9189
9157
|
"controls": {
|
|
9190
9158
|
"items": {
|
|
9191
9159
|
"properties": {
|
|
9192
|
-
"macroParameterValue": {
|
|
9193
|
-
"maxLength": 10000,
|
|
9194
|
-
"type": "string",
|
|
9195
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
9196
|
-
},
|
|
9197
9160
|
"label": {
|
|
9198
9161
|
"$ref": "#/definitions/i18nProperty",
|
|
9199
9162
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9200
9163
|
},
|
|
9201
9164
|
"type": {
|
|
9202
9165
|
"enum": [
|
|
9203
|
-
"
|
|
9204
|
-
"
|
|
9166
|
+
"button",
|
|
9167
|
+
"BUTTON"
|
|
9205
9168
|
],
|
|
9206
9169
|
"type": "string",
|
|
9207
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9170
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
9208
9171
|
},
|
|
9209
9172
|
"key": {
|
|
9210
9173
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -9214,61 +9177,90 @@
|
|
|
9214
9177
|
}
|
|
9215
9178
|
},
|
|
9216
9179
|
"required": [
|
|
9217
|
-
"macroParameterValue",
|
|
9218
9180
|
"label",
|
|
9219
9181
|
"type",
|
|
9220
9182
|
"key"
|
|
9221
9183
|
],
|
|
9222
9184
|
"additionalProperties": true,
|
|
9223
|
-
"shortClassName": "
|
|
9185
|
+
"shortClassName": "buttonControlBean",
|
|
9224
9186
|
"type": "object",
|
|
9225
|
-
"title": "
|
|
9226
|
-
"description": "\n\nDefines a
|
|
9187
|
+
"title": "ButtonControl",
|
|
9188
|
+
"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"
|
|
9227
9189
|
},
|
|
9228
9190
|
"type": "array",
|
|
9229
|
-
"fieldDescription": "\n\
|
|
9230
|
-
},
|
|
9231
|
-
"macroParameter": {
|
|
9232
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
9233
|
-
"maxLength": 100,
|
|
9234
|
-
"type": "string",
|
|
9235
|
-
"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"
|
|
9191
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
9236
9192
|
},
|
|
9237
9193
|
"type": {
|
|
9238
9194
|
"enum": [
|
|
9239
|
-
"
|
|
9240
|
-
"
|
|
9195
|
+
"group",
|
|
9196
|
+
"GROUP"
|
|
9241
9197
|
],
|
|
9242
9198
|
"type": "string",
|
|
9243
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9199
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
9244
9200
|
}
|
|
9245
9201
|
},
|
|
9246
9202
|
"required": [
|
|
9247
9203
|
"controls",
|
|
9248
|
-
"macroParameter",
|
|
9249
9204
|
"type"
|
|
9250
9205
|
],
|
|
9251
|
-
"shortClassName": "
|
|
9206
|
+
"shortClassName": "controlGroupBean",
|
|
9252
9207
|
"type": "object",
|
|
9253
|
-
"title": "
|
|
9254
|
-
"description": "\n\nDefines a
|
|
9208
|
+
"title": "ControlGroup",
|
|
9209
|
+
"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"
|
|
9210
|
+
},
|
|
9211
|
+
{
|
|
9212
|
+
"properties": {
|
|
9213
|
+
"label": {
|
|
9214
|
+
"$ref": "#/definitions/i18nProperty",
|
|
9215
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9216
|
+
},
|
|
9217
|
+
"type": {
|
|
9218
|
+
"enum": [
|
|
9219
|
+
"button",
|
|
9220
|
+
"BUTTON"
|
|
9221
|
+
],
|
|
9222
|
+
"type": "string",
|
|
9223
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
9224
|
+
},
|
|
9225
|
+
"key": {
|
|
9226
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9227
|
+
"maxLength": 100,
|
|
9228
|
+
"type": "string",
|
|
9229
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
9230
|
+
}
|
|
9231
|
+
},
|
|
9232
|
+
"required": [
|
|
9233
|
+
"label",
|
|
9234
|
+
"type",
|
|
9235
|
+
"key"
|
|
9236
|
+
],
|
|
9237
|
+
"additionalProperties": true,
|
|
9238
|
+
"shortClassName": "buttonControlBean",
|
|
9239
|
+
"type": "object",
|
|
9240
|
+
"title": "ButtonControl",
|
|
9241
|
+
"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"
|
|
9255
9242
|
},
|
|
9256
9243
|
{
|
|
9257
9244
|
"properties": {
|
|
9258
9245
|
"controls": {
|
|
9259
9246
|
"items": {
|
|
9260
9247
|
"properties": {
|
|
9248
|
+
"macroParameterValue": {
|
|
9249
|
+
"maxLength": 10000,
|
|
9250
|
+
"type": "string",
|
|
9251
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
9252
|
+
},
|
|
9261
9253
|
"label": {
|
|
9262
9254
|
"$ref": "#/definitions/i18nProperty",
|
|
9263
9255
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9264
9256
|
},
|
|
9265
9257
|
"type": {
|
|
9266
9258
|
"enum": [
|
|
9267
|
-
"
|
|
9268
|
-
"
|
|
9259
|
+
"togglebutton",
|
|
9260
|
+
"TOGGLEBUTTON"
|
|
9269
9261
|
],
|
|
9270
9262
|
"type": "string",
|
|
9271
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9263
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
9272
9264
|
},
|
|
9273
9265
|
"key": {
|
|
9274
9266
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -9278,36 +9270,44 @@
|
|
|
9278
9270
|
}
|
|
9279
9271
|
},
|
|
9280
9272
|
"required": [
|
|
9273
|
+
"macroParameterValue",
|
|
9281
9274
|
"label",
|
|
9282
9275
|
"type",
|
|
9283
9276
|
"key"
|
|
9284
9277
|
],
|
|
9285
9278
|
"additionalProperties": true,
|
|
9286
|
-
"shortClassName": "
|
|
9279
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
9287
9280
|
"type": "object",
|
|
9288
|
-
"title": "
|
|
9289
|
-
"description": "\n\nDefines a button which
|
|
9281
|
+
"title": "ToggleButtonControl",
|
|
9282
|
+
"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"
|
|
9290
9283
|
},
|
|
9291
9284
|
"type": "array",
|
|
9292
|
-
"fieldDescription": "\n\
|
|
9285
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
9286
|
+
},
|
|
9287
|
+
"macroParameter": {
|
|
9288
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
9289
|
+
"maxLength": 100,
|
|
9290
|
+
"type": "string",
|
|
9291
|
+
"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"
|
|
9293
9292
|
},
|
|
9294
9293
|
"type": {
|
|
9295
9294
|
"enum": [
|
|
9296
|
-
"
|
|
9297
|
-
"
|
|
9295
|
+
"togglegroup",
|
|
9296
|
+
"TOGGLEGROUP"
|
|
9298
9297
|
],
|
|
9299
9298
|
"type": "string",
|
|
9300
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9299
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
9301
9300
|
}
|
|
9302
9301
|
},
|
|
9303
9302
|
"required": [
|
|
9304
9303
|
"controls",
|
|
9304
|
+
"macroParameter",
|
|
9305
9305
|
"type"
|
|
9306
9306
|
],
|
|
9307
|
-
"shortClassName": "
|
|
9307
|
+
"shortClassName": "macroToggleGroupBean",
|
|
9308
9308
|
"type": "object",
|
|
9309
|
-
"title": "
|
|
9310
|
-
"description": "\n\nDefines a
|
|
9309
|
+
"title": "ToggleGroup",
|
|
9310
|
+
"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"
|
|
9311
9311
|
}
|
|
9312
9312
|
]
|
|
9313
9313
|
},
|
|
@@ -9545,50 +9545,19 @@
|
|
|
9545
9545
|
"anyOf": [
|
|
9546
9546
|
{
|
|
9547
9547
|
"properties": {
|
|
9548
|
-
"
|
|
9549
|
-
"maxLength":
|
|
9550
|
-
"type": "string",
|
|
9551
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
9552
|
-
},
|
|
9553
|
-
"offsetY": {
|
|
9554
|
-
"maxLength": 10,
|
|
9555
|
-
"type": "string",
|
|
9556
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
9557
|
-
},
|
|
9558
|
-
"width": {
|
|
9559
|
-
"maxLength": 10,
|
|
9548
|
+
"key": {
|
|
9549
|
+
"maxLength": 100,
|
|
9560
9550
|
"type": "string",
|
|
9561
|
-
"fieldDescription": "\n\
|
|
9562
|
-
},
|
|
9563
|
-
"onTop": {
|
|
9564
|
-
"type": "boolean",
|
|
9565
|
-
"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"
|
|
9566
|
-
},
|
|
9567
|
-
"showDelay": {
|
|
9568
|
-
"type": "integer",
|
|
9569
|
-
"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"
|
|
9570
|
-
},
|
|
9571
|
-
"closeOthers": {
|
|
9572
|
-
"type": "boolean",
|
|
9573
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
9574
|
-
},
|
|
9575
|
-
"persistent": {
|
|
9576
|
-
"type": "boolean",
|
|
9577
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
9578
|
-
},
|
|
9579
|
-
"onHover": {
|
|
9580
|
-
"type": "boolean",
|
|
9581
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
9582
|
-
},
|
|
9583
|
-
"isRelativeToMouse": {
|
|
9584
|
-
"type": "boolean",
|
|
9585
|
-
"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"
|
|
9551
|
+
"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"
|
|
9586
9552
|
}
|
|
9587
9553
|
},
|
|
9588
|
-
"
|
|
9554
|
+
"required": [
|
|
9555
|
+
"key"
|
|
9556
|
+
],
|
|
9557
|
+
"shortClassName": "dialogModuleOptions",
|
|
9589
9558
|
"type": "object",
|
|
9590
|
-
"title": "
|
|
9591
|
-
"description": "\n\nOptions for
|
|
9559
|
+
"title": "Dialog Module Options",
|
|
9560
|
+
"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"
|
|
9592
9561
|
},
|
|
9593
9562
|
{
|
|
9594
9563
|
"properties": {
|
|
@@ -9637,19 +9606,50 @@
|
|
|
9637
9606
|
},
|
|
9638
9607
|
{
|
|
9639
9608
|
"properties": {
|
|
9640
|
-
"
|
|
9641
|
-
"maxLength":
|
|
9609
|
+
"offsetX": {
|
|
9610
|
+
"maxLength": 10,
|
|
9642
9611
|
"type": "string",
|
|
9643
|
-
"fieldDescription": "\n\
|
|
9612
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
9613
|
+
},
|
|
9614
|
+
"offsetY": {
|
|
9615
|
+
"maxLength": 10,
|
|
9616
|
+
"type": "string",
|
|
9617
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
9618
|
+
},
|
|
9619
|
+
"width": {
|
|
9620
|
+
"maxLength": 10,
|
|
9621
|
+
"type": "string",
|
|
9622
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
9623
|
+
},
|
|
9624
|
+
"onTop": {
|
|
9625
|
+
"type": "boolean",
|
|
9626
|
+
"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"
|
|
9627
|
+
},
|
|
9628
|
+
"showDelay": {
|
|
9629
|
+
"type": "integer",
|
|
9630
|
+
"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"
|
|
9631
|
+
},
|
|
9632
|
+
"closeOthers": {
|
|
9633
|
+
"type": "boolean",
|
|
9634
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
9635
|
+
},
|
|
9636
|
+
"persistent": {
|
|
9637
|
+
"type": "boolean",
|
|
9638
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
9639
|
+
},
|
|
9640
|
+
"onHover": {
|
|
9641
|
+
"type": "boolean",
|
|
9642
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
9643
|
+
},
|
|
9644
|
+
"isRelativeToMouse": {
|
|
9645
|
+
"type": "boolean",
|
|
9646
|
+
"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"
|
|
9644
9647
|
}
|
|
9645
9648
|
},
|
|
9646
|
-
"
|
|
9647
|
-
"key"
|
|
9648
|
-
],
|
|
9649
|
-
"shortClassName": "dialogModuleOptions",
|
|
9649
|
+
"shortClassName": "inlineDialogOptions",
|
|
9650
9650
|
"type": "object",
|
|
9651
|
-
"title": "Dialog
|
|
9652
|
-
"description": "\n\nOptions for
|
|
9651
|
+
"title": "Inline Dialog Options",
|
|
9652
|
+
"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"
|
|
9653
9653
|
}
|
|
9654
9654
|
]
|
|
9655
9655
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3701,7 +3701,7 @@ export interface Modules {
|
|
|
3701
3701
|
fullPage?: boolean;
|
|
3702
3702
|
cacheable?: boolean;
|
|
3703
3703
|
location?: string;
|
|
3704
|
-
conditions?: (
|
|
3704
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3705
3705
|
params?: {
|
|
3706
3706
|
[k: string]: unknown;
|
|
3707
3707
|
};
|
|
@@ -3716,7 +3716,7 @@ export interface Modules {
|
|
|
3716
3716
|
fullPage?: boolean;
|
|
3717
3717
|
cacheable?: boolean;
|
|
3718
3718
|
location?: string;
|
|
3719
|
-
conditions?: (
|
|
3719
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3720
3720
|
params?: {
|
|
3721
3721
|
[k: string]: unknown;
|
|
3722
3722
|
};
|
|
@@ -3817,7 +3817,7 @@ export interface Modules {
|
|
|
3817
3817
|
name?: I18NProperty55;
|
|
3818
3818
|
weight?: number;
|
|
3819
3819
|
location?: string;
|
|
3820
|
-
conditions?: (
|
|
3820
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3821
3821
|
params?: {
|
|
3822
3822
|
[k: string]: unknown;
|
|
3823
3823
|
};
|
|
@@ -3829,7 +3829,7 @@ export interface Modules {
|
|
|
3829
3829
|
name?: I18NProperty55;
|
|
3830
3830
|
weight?: number;
|
|
3831
3831
|
location?: string;
|
|
3832
|
-
conditions?: (
|
|
3832
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3833
3833
|
params?: {
|
|
3834
3834
|
[k: string]: unknown;
|
|
3835
3835
|
};
|
|
@@ -3913,7 +3913,7 @@ export interface Modules {
|
|
|
3913
3913
|
fullPage?: boolean;
|
|
3914
3914
|
cacheable?: boolean;
|
|
3915
3915
|
location?: string;
|
|
3916
|
-
conditions?: (
|
|
3916
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3917
3917
|
params?: {
|
|
3918
3918
|
[k: string]: unknown;
|
|
3919
3919
|
};
|
|
@@ -3928,7 +3928,7 @@ export interface Modules {
|
|
|
3928
3928
|
fullPage?: boolean;
|
|
3929
3929
|
cacheable?: boolean;
|
|
3930
3930
|
location?: string;
|
|
3931
|
-
conditions?: (
|
|
3931
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3932
3932
|
params?: {
|
|
3933
3933
|
[k: string]: unknown;
|
|
3934
3934
|
};
|
|
@@ -7129,10 +7129,37 @@ export interface Icon10 {
|
|
|
7129
7129
|
*
|
|
7130
7130
|
*/
|
|
7131
7131
|
export interface WebItemTarget1 {
|
|
7132
|
-
options?:
|
|
7132
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
7133
7133
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7134
7134
|
[k: string]: unknown;
|
|
7135
7135
|
}
|
|
7136
|
+
/**
|
|
7137
|
+
*
|
|
7138
|
+
*
|
|
7139
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7140
|
+
*
|
|
7141
|
+
* <h3>Example</h3>
|
|
7142
|
+
*
|
|
7143
|
+
*
|
|
7144
|
+
*
|
|
7145
|
+
*
|
|
7146
|
+
*
|
|
7147
|
+
* {
|
|
7148
|
+
* "target": {
|
|
7149
|
+
* "type": "dialogmodule",
|
|
7150
|
+
* "options": {
|
|
7151
|
+
* "key": "dialog-module-key"
|
|
7152
|
+
* }
|
|
7153
|
+
* }
|
|
7154
|
+
* }
|
|
7155
|
+
*
|
|
7156
|
+
*
|
|
7157
|
+
*
|
|
7158
|
+
*/
|
|
7159
|
+
export interface DialogModuleOptions1 {
|
|
7160
|
+
key: string;
|
|
7161
|
+
[k: string]: unknown;
|
|
7162
|
+
}
|
|
7136
7163
|
/**
|
|
7137
7164
|
*
|
|
7138
7165
|
*
|
|
@@ -7231,33 +7258,6 @@ export interface I18NProperty58 {
|
|
|
7231
7258
|
i18n?: string;
|
|
7232
7259
|
[k: string]: unknown;
|
|
7233
7260
|
}
|
|
7234
|
-
/**
|
|
7235
|
-
*
|
|
7236
|
-
*
|
|
7237
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7238
|
-
*
|
|
7239
|
-
* <h3>Example</h3>
|
|
7240
|
-
*
|
|
7241
|
-
*
|
|
7242
|
-
*
|
|
7243
|
-
*
|
|
7244
|
-
*
|
|
7245
|
-
* {
|
|
7246
|
-
* "target": {
|
|
7247
|
-
* "type": "dialogmodule",
|
|
7248
|
-
* "options": {
|
|
7249
|
-
* "key": "dialog-module-key"
|
|
7250
|
-
* }
|
|
7251
|
-
* }
|
|
7252
|
-
* }
|
|
7253
|
-
*
|
|
7254
|
-
*
|
|
7255
|
-
*
|
|
7256
|
-
*/
|
|
7257
|
-
export interface DialogModuleOptions1 {
|
|
7258
|
-
key: string;
|
|
7259
|
-
[k: string]: unknown;
|
|
7260
|
-
}
|
|
7261
7261
|
/**
|
|
7262
7262
|
*
|
|
7263
7263
|
*
|
|
@@ -9236,39 +9236,11 @@ export interface I18NProperty74 {
|
|
|
9236
9236
|
*
|
|
9237
9237
|
*/
|
|
9238
9238
|
export interface MacroPropertyPanel {
|
|
9239
|
-
controls?: (
|
|
9239
|
+
controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
|
|
9240
9240
|
cacheable?: boolean;
|
|
9241
9241
|
url: string;
|
|
9242
9242
|
[k: string]: unknown;
|
|
9243
9243
|
}
|
|
9244
|
-
/**
|
|
9245
|
-
*
|
|
9246
|
-
*
|
|
9247
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
9248
|
-
*
|
|
9249
|
-
* <p><b>Example</b></p>
|
|
9250
|
-
*
|
|
9251
|
-
*
|
|
9252
|
-
*
|
|
9253
|
-
*
|
|
9254
|
-
*
|
|
9255
|
-
* {
|
|
9256
|
-
* "type": "button",
|
|
9257
|
-
* "label": {
|
|
9258
|
-
* "value": "My Custom Control 0"
|
|
9259
|
-
* },
|
|
9260
|
-
* "key": "my-custom-control-0"
|
|
9261
|
-
* }
|
|
9262
|
-
*
|
|
9263
|
-
*
|
|
9264
|
-
*
|
|
9265
|
-
*/
|
|
9266
|
-
export interface TextControl {
|
|
9267
|
-
macroParameter: string;
|
|
9268
|
-
type: 'text' | 'TEXT';
|
|
9269
|
-
key: string;
|
|
9270
|
-
[k: string]: unknown;
|
|
9271
|
-
}
|
|
9272
9244
|
/**
|
|
9273
9245
|
*
|
|
9274
9246
|
*
|
|
@@ -9362,6 +9334,34 @@ export interface I18NProperty75 {
|
|
|
9362
9334
|
i18n?: string;
|
|
9363
9335
|
[k: string]: unknown;
|
|
9364
9336
|
}
|
|
9337
|
+
/**
|
|
9338
|
+
*
|
|
9339
|
+
*
|
|
9340
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9341
|
+
*
|
|
9342
|
+
* <p><b>Example</b></p>
|
|
9343
|
+
*
|
|
9344
|
+
*
|
|
9345
|
+
*
|
|
9346
|
+
*
|
|
9347
|
+
*
|
|
9348
|
+
* {
|
|
9349
|
+
* "type": "button",
|
|
9350
|
+
* "label": {
|
|
9351
|
+
* "value": "My Custom Control 0"
|
|
9352
|
+
* },
|
|
9353
|
+
* "key": "my-custom-control-0"
|
|
9354
|
+
* }
|
|
9355
|
+
*
|
|
9356
|
+
*
|
|
9357
|
+
*
|
|
9358
|
+
*/
|
|
9359
|
+
export interface TextControl {
|
|
9360
|
+
macroParameter: string;
|
|
9361
|
+
type: 'text' | 'TEXT';
|
|
9362
|
+
key: string;
|
|
9363
|
+
[k: string]: unknown;
|
|
9364
|
+
}
|
|
9365
9365
|
/**
|
|
9366
9366
|
*
|
|
9367
9367
|
*
|
|
@@ -30481,7 +30481,7 @@ export interface I18NProperty83 {
|
|
|
30481
30481
|
*
|
|
30482
30482
|
*/
|
|
30483
30483
|
export interface MacroPropertyPanel1 {
|
|
30484
|
-
controls?: (
|
|
30484
|
+
controls?: (TextControl1 | ControlGroup1 | ButtonControl3 | ToggleGroup1)[];
|
|
30485
30485
|
cacheable?: boolean;
|
|
30486
30486
|
url: string;
|
|
30487
30487
|
[k: string]: unknown;
|
|
@@ -30489,7 +30489,7 @@ export interface MacroPropertyPanel1 {
|
|
|
30489
30489
|
/**
|
|
30490
30490
|
*
|
|
30491
30491
|
*
|
|
30492
|
-
* Defines a
|
|
30492
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30493
30493
|
*
|
|
30494
30494
|
* <p><b>Example</b></p>
|
|
30495
30495
|
*
|
|
@@ -30508,40 +30508,57 @@ export interface MacroPropertyPanel1 {
|
|
|
30508
30508
|
*
|
|
30509
30509
|
*
|
|
30510
30510
|
*/
|
|
30511
|
-
export interface
|
|
30512
|
-
|
|
30513
|
-
type: '
|
|
30511
|
+
export interface TextControl1 {
|
|
30512
|
+
macroParameter: string;
|
|
30513
|
+
type: 'text' | 'TEXT';
|
|
30514
30514
|
key: string;
|
|
30515
30515
|
[k: string]: unknown;
|
|
30516
30516
|
}
|
|
30517
30517
|
/**
|
|
30518
30518
|
*
|
|
30519
30519
|
*
|
|
30520
|
-
*
|
|
30521
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
30520
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30522
30521
|
*
|
|
30523
|
-
* <
|
|
30522
|
+
* <p><b>Example</b></p>
|
|
30524
30523
|
*
|
|
30525
30524
|
*
|
|
30526
30525
|
*
|
|
30527
30526
|
*
|
|
30528
30527
|
*
|
|
30529
|
-
*
|
|
30530
|
-
*
|
|
30531
|
-
*
|
|
30528
|
+
* [
|
|
30529
|
+
* {
|
|
30530
|
+
* "type": "group",
|
|
30531
|
+
* "controls": [
|
|
30532
|
+
* {
|
|
30533
|
+
* "type": "button",
|
|
30534
|
+
* "label": {
|
|
30535
|
+
* "value": "My Custom Control 0"
|
|
30536
|
+
* },
|
|
30537
|
+
* "key": "my-custom-control-0"
|
|
30538
|
+
* },
|
|
30539
|
+
* {
|
|
30540
|
+
* "type": "button",
|
|
30541
|
+
* "label": {
|
|
30542
|
+
* "value": "My Custom Control 1"
|
|
30543
|
+
* },
|
|
30544
|
+
* "key": "my-custom-control-1"
|
|
30545
|
+
* }
|
|
30546
|
+
* ]
|
|
30547
|
+
* }
|
|
30548
|
+
* ]
|
|
30532
30549
|
*
|
|
30533
30550
|
*
|
|
30534
30551
|
*
|
|
30535
30552
|
*/
|
|
30536
|
-
export interface
|
|
30537
|
-
|
|
30538
|
-
|
|
30553
|
+
export interface ControlGroup1 {
|
|
30554
|
+
controls: ButtonControl2[];
|
|
30555
|
+
type: 'group' | 'GROUP';
|
|
30539
30556
|
[k: string]: unknown;
|
|
30540
30557
|
}
|
|
30541
30558
|
/**
|
|
30542
30559
|
*
|
|
30543
30560
|
*
|
|
30544
|
-
* Defines a
|
|
30561
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30545
30562
|
*
|
|
30546
30563
|
* <p><b>Example</b></p>
|
|
30547
30564
|
*
|
|
@@ -30560,61 +30577,40 @@ export interface I18NProperty84 {
|
|
|
30560
30577
|
*
|
|
30561
30578
|
*
|
|
30562
30579
|
*/
|
|
30563
|
-
export interface
|
|
30564
|
-
|
|
30565
|
-
type: '
|
|
30580
|
+
export interface ButtonControl2 {
|
|
30581
|
+
label: I18NProperty84;
|
|
30582
|
+
type: 'button' | 'BUTTON';
|
|
30566
30583
|
key: string;
|
|
30567
30584
|
[k: string]: unknown;
|
|
30568
30585
|
}
|
|
30569
30586
|
/**
|
|
30570
30587
|
*
|
|
30571
30588
|
*
|
|
30572
|
-
*
|
|
30589
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
30590
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
30573
30591
|
*
|
|
30574
|
-
* <
|
|
30592
|
+
* <h3>Example</h3>
|
|
30575
30593
|
*
|
|
30576
30594
|
*
|
|
30577
30595
|
*
|
|
30578
30596
|
*
|
|
30579
30597
|
*
|
|
30580
|
-
*
|
|
30581
|
-
*
|
|
30582
|
-
*
|
|
30583
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
30584
|
-
* "controls": [
|
|
30585
|
-
* {
|
|
30586
|
-
* "type": "togglebutton",
|
|
30587
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30588
|
-
* "label": {
|
|
30589
|
-
* "value": "My Custom Control 0"
|
|
30590
|
-
* },
|
|
30591
|
-
* "key": "my-custom-toggle-button-0"
|
|
30592
|
-
* },
|
|
30593
|
-
* {
|
|
30594
|
-
* "type": "togglebutton",
|
|
30595
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30596
|
-
* "label": {
|
|
30597
|
-
* "value": "My Custom Control 1"
|
|
30598
|
-
* },
|
|
30599
|
-
* "key": "my-custom-toggle-button-1"
|
|
30600
|
-
* }
|
|
30601
|
-
* ]
|
|
30602
|
-
* }
|
|
30603
|
-
* ]
|
|
30598
|
+
* {
|
|
30599
|
+
* "value": "My text"
|
|
30600
|
+
* }
|
|
30604
30601
|
*
|
|
30605
30602
|
*
|
|
30606
30603
|
*
|
|
30607
30604
|
*/
|
|
30608
|
-
export interface
|
|
30609
|
-
|
|
30610
|
-
|
|
30611
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30605
|
+
export interface I18NProperty84 {
|
|
30606
|
+
value: string;
|
|
30607
|
+
i18n?: string;
|
|
30612
30608
|
[k: string]: unknown;
|
|
30613
30609
|
}
|
|
30614
30610
|
/**
|
|
30615
30611
|
*
|
|
30616
30612
|
*
|
|
30617
|
-
* Defines a
|
|
30613
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30618
30614
|
*
|
|
30619
30615
|
* <p><b>Example</b></p>
|
|
30620
30616
|
*
|
|
@@ -30623,21 +30619,19 @@ export interface ToggleGroup1 {
|
|
|
30623
30619
|
*
|
|
30624
30620
|
*
|
|
30625
30621
|
* {
|
|
30626
|
-
* "type": "
|
|
30627
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30622
|
+
* "type": "button",
|
|
30628
30623
|
* "label": {
|
|
30629
30624
|
* "value": "My Custom Control 0"
|
|
30630
30625
|
* },
|
|
30631
|
-
* "key": "my-custom-
|
|
30626
|
+
* "key": "my-custom-control-0"
|
|
30632
30627
|
* }
|
|
30633
30628
|
*
|
|
30634
30629
|
*
|
|
30635
30630
|
*
|
|
30636
30631
|
*/
|
|
30637
|
-
export interface
|
|
30638
|
-
macroParameterValue: string;
|
|
30632
|
+
export interface ButtonControl3 {
|
|
30639
30633
|
label: I18NProperty85;
|
|
30640
|
-
type: '
|
|
30634
|
+
type: 'button' | 'BUTTON';
|
|
30641
30635
|
key: string;
|
|
30642
30636
|
[k: string]: unknown;
|
|
30643
30637
|
}
|
|
@@ -30668,7 +30662,7 @@ export interface I18NProperty85 {
|
|
|
30668
30662
|
/**
|
|
30669
30663
|
*
|
|
30670
30664
|
*
|
|
30671
|
-
* Defines a
|
|
30665
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30672
30666
|
*
|
|
30673
30667
|
* <p><b>Example</b></p>
|
|
30674
30668
|
*
|
|
@@ -30678,21 +30672,24 @@ export interface I18NProperty85 {
|
|
|
30678
30672
|
*
|
|
30679
30673
|
* [
|
|
30680
30674
|
* {
|
|
30681
|
-
* "type": "
|
|
30675
|
+
* "type": "togglegroup",
|
|
30676
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30682
30677
|
* "controls": [
|
|
30683
30678
|
* {
|
|
30684
|
-
* "type": "
|
|
30679
|
+
* "type": "togglebutton",
|
|
30680
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30685
30681
|
* "label": {
|
|
30686
30682
|
* "value": "My Custom Control 0"
|
|
30687
30683
|
* },
|
|
30688
|
-
* "key": "my-custom-
|
|
30684
|
+
* "key": "my-custom-toggle-button-0"
|
|
30689
30685
|
* },
|
|
30690
30686
|
* {
|
|
30691
|
-
* "type": "
|
|
30687
|
+
* "type": "togglebutton",
|
|
30688
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30692
30689
|
* "label": {
|
|
30693
30690
|
* "value": "My Custom Control 1"
|
|
30694
30691
|
* },
|
|
30695
|
-
* "key": "my-custom-
|
|
30692
|
+
* "key": "my-custom-toggle-button-1"
|
|
30696
30693
|
* }
|
|
30697
30694
|
* ]
|
|
30698
30695
|
* }
|
|
@@ -30701,15 +30698,16 @@ export interface I18NProperty85 {
|
|
|
30701
30698
|
*
|
|
30702
30699
|
*
|
|
30703
30700
|
*/
|
|
30704
|
-
export interface
|
|
30705
|
-
controls:
|
|
30706
|
-
|
|
30701
|
+
export interface ToggleGroup1 {
|
|
30702
|
+
controls: ToggleButtonControl1[];
|
|
30703
|
+
macroParameter: string;
|
|
30704
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30707
30705
|
[k: string]: unknown;
|
|
30708
30706
|
}
|
|
30709
30707
|
/**
|
|
30710
30708
|
*
|
|
30711
30709
|
*
|
|
30712
|
-
* Defines a button which
|
|
30710
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30713
30711
|
*
|
|
30714
30712
|
* <p><b>Example</b></p>
|
|
30715
30713
|
*
|
|
@@ -30718,19 +30716,21 @@ export interface ControlGroup1 {
|
|
|
30718
30716
|
*
|
|
30719
30717
|
*
|
|
30720
30718
|
* {
|
|
30721
|
-
* "type": "
|
|
30719
|
+
* "type": "togglebutton",
|
|
30720
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30722
30721
|
* "label": {
|
|
30723
30722
|
* "value": "My Custom Control 0"
|
|
30724
30723
|
* },
|
|
30725
|
-
* "key": "my-custom-
|
|
30724
|
+
* "key": "my-custom-toggle-button-0"
|
|
30726
30725
|
* }
|
|
30727
30726
|
*
|
|
30728
30727
|
*
|
|
30729
30728
|
*
|
|
30730
30729
|
*/
|
|
30731
|
-
export interface
|
|
30730
|
+
export interface ToggleButtonControl1 {
|
|
30731
|
+
macroParameterValue: string;
|
|
30732
30732
|
label: I18NProperty86;
|
|
30733
|
-
type: '
|
|
30733
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30734
30734
|
key: string;
|
|
30735
30735
|
[k: string]: unknown;
|
|
30736
30736
|
}
|
|
@@ -51607,14 +51607,14 @@ export interface I18NProperty91 {
|
|
|
51607
51607
|
*
|
|
51608
51608
|
*/
|
|
51609
51609
|
export interface WebItemTarget2 {
|
|
51610
|
-
options?:
|
|
51610
|
+
options?: DialogModuleOptions2 | DialogOptions4 | InlineDialogOptions2;
|
|
51611
51611
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51612
51612
|
[k: string]: unknown;
|
|
51613
51613
|
}
|
|
51614
51614
|
/**
|
|
51615
51615
|
*
|
|
51616
51616
|
*
|
|
51617
|
-
* Options for
|
|
51617
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51618
51618
|
*
|
|
51619
51619
|
* <h3>Example</h3>
|
|
51620
51620
|
*
|
|
@@ -51624,11 +51624,9 @@ export interface WebItemTarget2 {
|
|
|
51624
51624
|
*
|
|
51625
51625
|
* {
|
|
51626
51626
|
* "target": {
|
|
51627
|
-
* "type": "
|
|
51627
|
+
* "type": "dialogmodule",
|
|
51628
51628
|
* "options": {
|
|
51629
|
-
* "
|
|
51630
|
-
* "offsetX": "30px",
|
|
51631
|
-
* "offsetY": "20px"
|
|
51629
|
+
* "key": "dialog-module-key"
|
|
51632
51630
|
* }
|
|
51633
51631
|
* }
|
|
51634
51632
|
* }
|
|
@@ -51636,16 +51634,8 @@ export interface WebItemTarget2 {
|
|
|
51636
51634
|
*
|
|
51637
51635
|
*
|
|
51638
51636
|
*/
|
|
51639
|
-
export interface
|
|
51640
|
-
|
|
51641
|
-
offsetY?: string;
|
|
51642
|
-
width?: string;
|
|
51643
|
-
onTop?: boolean;
|
|
51644
|
-
showDelay?: number;
|
|
51645
|
-
closeOthers?: boolean;
|
|
51646
|
-
persistent?: boolean;
|
|
51647
|
-
onHover?: boolean;
|
|
51648
|
-
isRelativeToMouse?: boolean;
|
|
51637
|
+
export interface DialogModuleOptions2 {
|
|
51638
|
+
key: string;
|
|
51649
51639
|
[k: string]: unknown;
|
|
51650
51640
|
}
|
|
51651
51641
|
/**
|
|
@@ -51749,7 +51739,7 @@ export interface I18NProperty92 {
|
|
|
51749
51739
|
/**
|
|
51750
51740
|
*
|
|
51751
51741
|
*
|
|
51752
|
-
* Options for
|
|
51742
|
+
* Options for an inline dialog target
|
|
51753
51743
|
*
|
|
51754
51744
|
* <h3>Example</h3>
|
|
51755
51745
|
*
|
|
@@ -51759,9 +51749,11 @@ export interface I18NProperty92 {
|
|
|
51759
51749
|
*
|
|
51760
51750
|
* {
|
|
51761
51751
|
* "target": {
|
|
51762
|
-
* "type": "
|
|
51752
|
+
* "type": "inlinedialog",
|
|
51763
51753
|
* "options": {
|
|
51764
|
-
* "
|
|
51754
|
+
* "onHover": true,
|
|
51755
|
+
* "offsetX": "30px",
|
|
51756
|
+
* "offsetY": "20px"
|
|
51765
51757
|
* }
|
|
51766
51758
|
* }
|
|
51767
51759
|
* }
|
|
@@ -51769,8 +51761,16 @@ export interface I18NProperty92 {
|
|
|
51769
51761
|
*
|
|
51770
51762
|
*
|
|
51771
51763
|
*/
|
|
51772
|
-
export interface
|
|
51773
|
-
|
|
51764
|
+
export interface InlineDialogOptions2 {
|
|
51765
|
+
offsetX?: string;
|
|
51766
|
+
offsetY?: string;
|
|
51767
|
+
width?: string;
|
|
51768
|
+
onTop?: boolean;
|
|
51769
|
+
showDelay?: number;
|
|
51770
|
+
closeOthers?: boolean;
|
|
51771
|
+
persistent?: boolean;
|
|
51772
|
+
onHover?: boolean;
|
|
51773
|
+
isRelativeToMouse?: boolean;
|
|
51774
51774
|
[k: string]: unknown;
|
|
51775
51775
|
}
|
|
51776
51776
|
/**
|